Tagged Questions

2
votes
2answers
74 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 …
0
votes
3answers
76 views

Ejabberd Memory Consumption (or Leak?)

I'm using ejabberd + mochiweb on our server. The longer I keep ejabberd and mochiweb running, the more memory is consumed (last night it was consuming 35% of memory. right now it's a bit above 50%). …
7
votes
3answers
135 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 …
0
votes
3answers
41 views

Erlang: side effect(s) to calling mnesia:create_schema more than once?

Is there a side effect to calling mnesia:create_schema() on each application start? From what I keep reading, this function should only be called once per database instance. Is it a big issue to …
1
vote
2answers
31 views

Erlang: specifying a working directory for mnesia?

How do I specify a working directory for mnesia without resorting to passing the "dir" parameter on the command-line? In other words, can I specify a "working directory" for mnesia just before …
2
votes
3answers
95 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 …
2
votes
2answers
71 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", …
1
vote
2answers
74 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 the code at all. I …
3
votes
2answers
126 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 …
1
vote
3answers
94 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 they work fine. I am …
3
votes
2answers
110 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 …
3
votes
2answers
194 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 …
2
votes
3answers
243 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 list of peers or …
3
votes
2answers
165 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)
6
votes
2answers
199 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?

1 2 3 next
15 30 50 per page