1
vote
2answers
52 views
Erlang Ets tables between Nodes
I've got an ejabberd server with a good amount of custom modules running. I have several mnesia tables and I know these can be easily copied between nodes without any change to th …
3
votes
2answers
103 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 …
0
votes
1answer
48 views
How do I properly snapshot an EBS volume with a RabbitMQ instance running?
I'm using RabbitMQ on an EC2 instance and I have the Mnesia tables on an EBS volume, so when I snapshot it and try to launch another instance with the same data, it appears that th …
1
vote
3answers
73 views
Mochiweb mnesia requests
I'm trying to link Mochiweb with my ejabberd mnesia db and am unable to do any mnesia transactions in my controllers. I test my controllers without the mnesia transactions and the …
6
votes
3answers
681 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.
3
votes
2answers
100 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 …
3
votes
2answers
176 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 withou …
0
votes
3answers
176 views
Mnesia transactions
hello
accidentally some code that I'm writing is slowly turning into a DB system on its own, with incremental indexing, freeform "documents" (aka CouchDB kind) which can have arbit …
2
votes
3answers
222 views
Eventually consistent mnesia database with erlang. Best practices anyone?
Hi.
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 li …
3
votes
2answers
152 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)
3
votes
3answers
236 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 …
6
votes
2answers
183 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 ver …
4
votes
4answers
287 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 aft …
3
votes
2answers
116 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, t …
2
votes
2answers
155 views
erlang - how can I match tuple contents with qlc and mnesia ?
Hi.
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 = …
