THIS LIBRARY IS DEPRECATED IN FAVOR OF ACTIVE DEVELOPMENT AT mnesiac LIBRARY(Github).
Mnesiam makes clustering easy for Mnesia database.
The module docs can be found at https://hexdocs.pm/mnesiam.
The package can be installed by adding mnesiam
to your list of dependencies in mix.exs
:
def deps do
[{:mnesiam, "~> 0.1.1"}]
end
Ensure mnesiam
is started before your application.
Elixir Version >= 1.4 with libcluster
def application do
[extra_applications: [:libcluster, :mnesiam]]
end
Elixir Version >= 1.4 without libcluster
def application do
[extra_applications: [:mnesiam]]
end
Edit your app's config.exs
to add list of mnesia stores:
config :mnesiam,
stores: [Mnesiam.Support.SampleStore, ...],
table_load_timeout: 600_000 # milliseconds
Create a table store and add it to your app's config.exs. Note: All stores MUST implement its own init_store/0
to create table and copy_store/0
to copy table:
defmodule Mnesiam.Support.SampleStore do
@moduledoc """
Sample store implementation
"""
alias :mnesia, as: Mnesia
@table :sample_store
@doc """
Mnesiam will call this method to init table
"""
def init_store do
Mnesia.create_table(@table,
[ram_copies: [Node.self()], attributes: [:id, :topic_id, :event]])
# Sample index
Mnesia.add_table_index(@table, :topic_id)
# Add table subscriptions to here
# ...
end
@doc """
Mnesiam will call this method to copy table
"""
def copy_store do
Mnesia.add_table_copy(@table, Node.self(), :ram_copies)
end
end
If you are using libcluster
or another clustering library just ensure that clustering library starts earlier than mneasiam
. That's all, you do not need to do rest.
If you are not using libcluster
or similar clustering library then:
- When a node joins to an erlang/elixir cluster, run
Mnesiam.init_mnesia()
function on the new node; this will init and copy table contents from other online nodes.
Enjoy!
For any issues, bugs, documentation, enhancements:
-
Fork the project
-
Make your improvements and write your tests.
-
Make a pull request.
Apache License 2.0
Copyright (c) 2018 Mustafa Turan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.