Tagged Questions
A distributed DataBase Management System.
19
votes
1answer
622 views
remove not_exist_already node from mnesia cluster(scheme)
I have a bad node (it doesn't exist) in the mnesia cluster data when I get:
> mnesia:system_info(db_nodes)
[bad@node, ...]
How do I remove it from the cluster?
I tried:
> ...
12
votes
2answers
1k views
In a mnesia cluster, which node is queried?
Let's say you have a mnesia table replicated on nodes A and B. If on node C, which does not contain a copy of the table, I do mnesia:change_config(extra_db_nodes, [NodeA, NodeB]), and then on node C I ...
11
votes
2answers
440 views
Help me understand mnesia (NoSQL) modeling
In my Quest to understanding Mnesia, I still struggle with thinking in relational terms. So I will put my struggles up here and ask for the best way to solve them.
one-to-many-relations
Say I have a ...
11
votes
2answers
2k views
What is the storage capacity of a Mnesia database?
Some places state 2GB period. Some places state it depends up the number of nodes.
10
votes
1answer
369 views
how to backup/restore only single table from/to mnesia?
I have some big tables with disc_only_copies type.
Now I need change short node name to long but cannot do it with RAM limitation...
Can I use backup/restore database partly (table by table)?
10
votes
3answers
1k views
Online mnesia recovery from network partition
Is it possible to recover from a network partition in an mnesia cluster without restarting any of the nodes involved? If so, how does one go about it?
I'm interested specifically in knowing:
How ...
8
votes
3answers
382 views
Profiling Mnesia Queries
Our Mnesia DB is running slowly and we think it should be somewhat faster.
So we need to profile it and work out what is happening.
There are a number of options that suggest themselves:
run ...
7
votes
2answers
2k views
How to add a node to an mnesia cluster?
I'm an erlang and mnesia newbie..
How do I add a new disc_only_copies node to an mnesia database that already has a schema?
Thanks
7
votes
2answers
1k views
Preserving relational integrity with Mnesia
I've been diving into Erlang recently, and I decided to use Mnesia to do my database work given it can store any kind of Erlang data structure without a problem, scale with ease, be used with list ...
6
votes
2answers
178 views
Mnesia: reading remote node data in {local_content, true} mode
Is there a way to do local writes and and global reads ( without replication ) using mnesia. Eg: node A writes to its local DB and node B reads from node A's DB.
Node B does not have any data of its ...
6
votes
2answers
247 views
How far should I take referential transparency?
I am building a website using erlang, mnesia, and webmachine. Most of the documentation I have read praises the virtues of having referentially transparent functions.
The problem is, all database ...
6
votes
2answers
366 views
In Erlang, what is the best way to upgrade a distributed system?
If I have multiple web server written in Erlang running (load balanced) and Mnesia is used for the backend database, what is the best way to upgrade the whole system to a newer version?
5
votes
1answer
313 views
mnesia: intensive usage table
When I receive such message, like this
** WARNING ** Mnesia is overloaded: {dump_log, write_threshold}
what is approach to known WHICH TABLE USED MORE INTENSIVE?
What kind of debug I need to do?
...
5
votes
1answer
341 views
What is the significance of a Mnesia Master Node in a cluster
Iam running two erlang nodes with a replicated mnesia database. Whenever i tried to start one of them while mnesia ISNOT Running on the other one, mnesia:wait_for_tables(?TABS,?TIMEOUT), would hang on ...
5
votes
2answers
156 views
Stopping of Erlang app hangs when mnesia stopped from within the program
I've run into a problem where I cannot stop mnesia within my program without causing the app to hang.
I'm presently doing prototyping of mnesia within my erlang app.
In my jaus_app.erl file the ...
5
votes
1answer
302 views
Where are tables in Mnesia located?
I try to compare Mnesia with more traditional databases.
As I understand it tables in Mnesia can be located to (see Memory consumption in Mnesia):
ram_copies - tables are stored in ets, so no ...
5
votes
2answers
1k views
How to rename the Node running a mnesia Database
I created a Mnesia database / Schema on machine1. The node was named mypl@machine1. I then moved all files to machine2, because machine1 broke down. Everything runs fine as long as the code is running ...
4
votes
1answer
319 views
Very Large Mnesia Tables in Production
We are using Mnesia as a primary Database for a very large system. Mnesia Fragmented Tables have behaved so well over the testing period. System has got about 15 tables, each replicated across 2 sites ...
4
votes
3answers
270 views
erlang mnesia - illegal record info
I am trying to have a function that ensures the table I need is already created and if not to create it. Here's the sample:
ensure_table_exists(Table, MnesiaTables, Nodes) ->
case ...
4
votes
3answers
918 views
4
votes
1answer
211 views
Monitoring and Prevention Of Systems Limit Crashes For Mnesia In An Erlang System
We have a number of cloud servers and I am building a new one to test provision of resources on.
I am getting a fatal crash way before I think I ought to, as some sort of system resource is running ...
4
votes
2answers
264 views
Using gen_server to encapsulate an mnesia table?
I have a server application made in Erlang. In it I have an mnesia table
that store some information on photos. In the spirit of "everything is a
process" I decided to wrap that table in a ...
4
votes
2answers
285 views
How to define a foreign key in Mnesia
Is there an equivalent to this SQL statement in Mnesia?
alter table TABLE
add foreign key (FIELD)
references TABLE2 (FIELD2)
4
votes
3answers
805 views
Unique constraint in Mnesia
I am developing an Erlang application which requires a LOT of DB writes. My schema has, in addition to the primary key, another attribute with a unique constraint enforced.
Say I have an ID, an ...
4
votes
4answers
910 views
how do I remove an extra node
I have a group of erlang nodes that are replicating their data through Mnesia's "extra_db_nodes"... I need to upgrade hardware and software so I have to detach some nodes as I make my way from node to ...
4
votes
4answers
711 views
How to ensure fast startup times of mnesia
Erlang with mnesia/dets is famous for it slow startup times after a crash. Basically the same issue as with fsck on older filesystems.
But I also experience slow startup times after regular ...
4
votes
5answers
1k views
Suitable data storage backend for Erlang application when data doesn't fit memory
I'm researching possible options how to organize data storage for an Erlang application. The data it supposed to use is basically a huge collection of binary blobs indexed by short string ids. Each ...
4
votes
3answers
935 views
Mnesia write fails
I defined a record named log. I want to create an mnesia table with name log_table. When I try to write a record to table, I get bad_type error as follows:
(node1@kitt)4> ...
3
votes
1answer
99 views
Erlang - Mnesia - equivalent to “select distinct id from Table”
Hi is there a possibility to make a distinct select request to mnesia ?
I could copy the content of one table to ets and since ets is a hash table it could work. But i thought there is maybe a more ...
3
votes
2answers
71 views
what is the idiomatic way of limiting the number of records under a certain key in mnesia?
I use mnesia to store data for users, and the record is a bag structured like
{ username, field1, filed2, timestamp }
In order not to let the database explode, I want to set a limit for the number ...
3
votes
3answers
170 views
Mnesia: How to lock multiple rows simultaneously so that I can write/read a “consistent” set of of records
HOW I WISH I HAD PHRASED MY QUESTION TO BEGIN WITH
Take a table with 26 keys, a-z and let them have integer values.
Create a process, Ouch, that does two things over and over again
In one ...
3
votes
2answers
170 views
Does MNesia support synchronization after disconnected operation?
I'm starting to architect a project with the following requirements:
The overall system will be distributed across multiple physical nodes on a WAN
Each node will be using and manipulating a common ...
3
votes
1answer
199 views
Structure of mail box
I write simple pop3 server in erlang. Now i want to write mail box store with mnesia or something else databse. What's the most optimal structure of the tables and data-scheme for mail box?
Second ...
3
votes
2answers
242 views
How do I create and use (or simulate) multi-column indexes in Erlang Mnesia
I have looked through the Mnesia documentation and the 3 popular Erlang books. It seems only single column primary and secondary indexes can be created and used. Or maybe it is just what the examples ...
3
votes
3answers
408 views
Ejabberd: inspect Mnesia tables?
I'm digging into Ejabberd but I can't find a way to inspect its Mnesia tables.
Is there something like the mysql shell to inspect tables?
3
votes
2answers
237 views
Erlang - Standard location of mnesia database
Is there a standard place to put the mnesia database within erlang? At the moment I am putting it in the priv directory.
3
votes
2answers
161 views
How to handle mnesia schemas the standard way?
Suppose i have an application A which depends on mnesia with disk-enabled schema being present.
What i'd like to do is ensure that mnesia is running and allowing disc_copiestables
from within A. I'm ...
3
votes
1answer
266 views
Accessing a Mnesia node from another Erlang shell while it is running
What is the best practice to accessing a single running mnesia node from another Erlang shell to only view data in the tables?
I tried opening two shells and pointing them to the same mnesia ...
3
votes
2answers
195 views
How to implement dynamic queries for MNesia?
I'm trying to implement a function that generates dynamic queries for MNesia.
For example, when function is called with these arguments;
dyn_query(list, person, [name, age], ["jack", 21])
I want ...
3
votes
3answers
695 views
Erlang Mnesia Equivalent of SQL Select FROM WHERE Field IN (value1, value2, value3, …)
I have an mnesia table with fields say f1, f2, f3. Now if I were to select all the rows with the field value as V1, I would use mnesia:select and match specifications or a simple mnesia:match_object. ...
3
votes
3answers
201 views
How measure Web App performance?
I have developed 3 simple blogging system in PHP/Apache/Mysql, Python/Ngix/Postgresql and in Erlang/Yaws/Mnesia.
How can I measure performance on my server for this 3 different configuration ?
3
votes
3answers
311 views
Mnesia asynchronous transaction
I would like to have a master-slave setup of Erlang nodes, where read and write operations happen on the master node only. Slave nodes are only kept as hot-standbys.
As I understand the default ...
3
votes
4answers
877 views
Erlang : Mnesia : Lookup and update based on fields other than the key
I have a table in mnesia and I need to update individual fields in the records in it. According to http://stackoverflow.com/questions/1820996/erlang-mnesia-updating-a-single-field-value-in-a-row if I ...
3
votes
2answers
780 views
Erlang : Mnesia : Updating a single field value in a row
I have an mnesia table with three fields, i, a and b, created using the record
-record(rec, {i, a,b}).
Now I insert a row into the table as:
mnesia:transaction( fun() -> mnesia:write("T", ...
3
votes
2answers
592 views
Records in Erl (Erlang question)
Is there a way to use records directly in erl? No matter what I try, it always says it canno find the record. I am trying to do mnesia transactions and I cannot go too far without my records. Any ...
3
votes
3answers
684 views
Eventually consistent mnesia database with erlang. Best practices anyone?
I'm writing a bittorrent tracker in erlang. Given the nature of the service,
I won't need absolute consistency (ie. a client can be perfectly happy with a slightly outdated list of peers or torrent ...
3
votes
2answers
344 views
erlang - how can I match tuple contents with qlc and mnesia?
I have a mnesia table for this record.
-record(peer, {
peer_key, %% key is the tuple {FileId, PeerId}
last_seen,
last_event,
uploaded = 0,
downloaded = 0,
left = 0,
...
3
votes
2answers
329 views
Differences between set and ordered_set in Mnesia?
What are the differences between a table of type set, and a table of type ordered_set? I'm interested in the differences in read/write performance, what the ordering is based on, the effects across ...
3
votes
1answer
177 views
What's the best way to prevent adding a record whose primary key is already present in mnesia?
Suppose I've got a simple record definition:
-record(data, {primary_key = '_', more_stuff = '_'}).
I want a simple function that adds one of these records to a mnesia database. But I want it to ...
3
votes
4answers
350 views
How do you design a schema to efficiently query nested items in a key-value database?
I'm using Mnesia with Erlang, but this question applies to any key-value db like couchdb, etc.
I'm trying to break free of the RDBMS thought process, but I can't
wrap my head around how to ...