A distributed DataBase Management System used in Erlang applications.

learn more… | top users | synonyms

0
votes
1answer
32 views

Mnesia - Check for a value in either of the keys in the table

I have a mnesia table "users" created with the following record -record(users,{username,nickname,age}) Let's say i have the mnesia table like the following records users | username | nickname | ...
1
vote
2answers
92 views

Select every second row in Mnesia?

I have a large table in Mnesia and because of various reasons (not important here, say that I am executing the select remotely and the result has to be send over network using some 3rd party ...
1
vote
2answers
62 views

Data Retrieval Throughput - ETS lookup vs inter-process Messaging

suppose we have an erlang application which involves thousands of processes. Suppose there is a single resource X which may be a tuple, a list, or any erlang term, which all these processes may need ...
1
vote
1answer
59 views

Mnesia fold over records, referencing a second table

I have a schema something like this: -record(sale, { id, price, tax, sku, datetime }) -record(refund, { id, sale_id, datetime }) There are about 600,000 records in the sale table ...
1
vote
2answers
117 views

Erlang and SOAP services - A rock and a hard place

My question may first of all seem to have a duplicate but i have hit something that has suprised me. Yaws Webserver comes with a complete set SOAP example, but when i tried running it as is, this is ...
3
votes
0answers
78 views

What's the simplest way to update mnesia schema?

For example, I saved {id, name} in mnesia and want to update to {id, name, age}, do I have to call transform_table every time I change schema?
1
vote
1answer
46 views

MatchHead in Mnesia select

I have some problems using mnesia:select/2 but I think they are related to MatchHead. In my code I have the following record: -record(pet_info, {name, id, type}). I put some values using this ...
3
votes
2answers
100 views

how does Ejabberd manage databases for clustering?

Does it replicate all the data to every node or does it store data fragments on each node and then fetches every needed fragment from different node at runtime? Or how does this work? Does clustering ...
-3
votes
2answers
70 views

return the two last record in erlang [closed]

I have this record : -record(person, {id, firstname, lastname}). and this table contains this kind of values : 1 anis hila 2 samir alagi 3 marwen fares 4 sana gabsi 5 safa sassi ...
0
votes
1answer
50 views

Mnesia, select and secondary indexes

I created indexes for table and have a question. Does mnesia:select use secondary indexes?
0
votes
0answers
95 views

Does Ejabberd support utf-8?

I'm now working with Ejabberd IM server. When I use my java code to execute XML/RPC command to add roster, ejabbered server seems not to support UTF-8. Below is my code snipet: XmlRpcClient client ...
-4
votes
2answers
93 views

call an undefined function in erlang

I want to export DATA fom table mnesia to the txt file I try with this code : exporttxt()-> F = fun(T) -> mensia:foldl(fun(X,Acc) -> [X|Acc] end, [],T) end, {atomic,L} = ...
-2
votes
2answers
156 views

export data from mnesia to excel

I have the table user -record(person, {id, firstname, lastname}). this table contains this values : 1 francoi mocci 2 test tes my goal is how can I export this data ...
0
votes
2answers
94 views

clear table in erlang

I have the table user -record(person, {id, firstname, lastname}). this table contains this values : 1 francoi mocci 2 test tes I want to clear the data from this ...
0
votes
1answer
44 views

creating mnesia from an erlang module

This should be simple, although I could not find a way or example yet... The Mnesia documentation shows how to initialize/create an Mnesia database from the erlang shell, which requires to start the ...
0
votes
1answer
57 views

display information of each records in erlang

I have this tables : -record(person, {id, firstname, lastname}). and it contains this values : 13 asma chabani 14 nawel jirard 15 ahme bahri I want to display the firstname and lastname ...
0
votes
1answer
80 views

Mnesia returns {aborted, no_transaction}

I have a Mnesia table called person, using the following record definition: -record(person, {id, firstname, lastname, phone}). The table contains these values: 12 alen dumas 97888888 ...
0
votes
2answers
75 views

transfer data from table to another table in erlang

I have in my database mnesia two table which have this syntax : -record(person, {firstname, lastname,adress}). -record(personBackup, {firstname, lastname,adress}). I want to transfer the data from ...
0
votes
1answer
52 views

Is it necessary to add a sequential column for insert order in mnesia?

I want to fetch records from mnesia by inserted order. At first, I want to add a timestamp column. But it is found for a group of nodes of different computers, the timestamp is created by different ...
0
votes
1answer
91 views

Records in mnesia

I have the following small table in Erlang mnesia database. When I use the dirty_select function as follows: mnesia:dirty_select(user, [{#user{id = '$1', name = martin}, [], ['$1']}]). I get the ...
4
votes
1answer
106 views

Drop pending Mnesia transactions

I have a Mnesia database and when I restart my application, I get an error (badarg) in the pending transactions. I think an invalid value was about to be inserted. How can I inspect the pending ...
0
votes
1answer
45 views

Handling “down” mnesia node if it contains most recent schema?

I have two nodes- 1 and 2, both running. Node 1 goes down. Node 2 carries on running- it is a remote node. The computer for Node 2 is turned off. When I start Node 1, it knows Node 2 has the most ...
1
vote
1answer
58 views

mnesia match_object vs complex index

After mnesia table has been established, more query requirements have been added. Some requirements needs more than one elements of table's records. From documents, it is known that second index can ...
2
votes
1answer
92 views

Loading disc node into ram node?

Something I not get, I have two mnesia nodes. One has ram and other has disc copy. My question is: You do create schema once? But schema is where you enter nodes. I confused and found not good ...
2
votes
1answer
63 views

What is the difference between “raw” dirty operations, and dirty operations within mnesia:async_transaction

What is the difference between a series of mnesia:dirty_ commands executed within a function passed to mnesia:async_dirty() and those very same transactions executed "raw"? I.e., is there any ...
4
votes
1answer
117 views

Better understanding how to work/balance mnesia's transactional/ACID capabilities

I am still trying to deeply understand what one can do with Mnesia, and answers to these two questions would greatly help. 1) What happens if one process does an atomic transaction with respect to ...
1
vote
1answer
82 views

Share erlang record declaration between two modules

I have a mnesia table callable from two modules- obviously both modules needing to refer to the records of the table. Is there any way to declare the record type in one module and use it in the other ...
0
votes
2answers
132 views

Making an Operating System Give More Memory Access to Erlang

I have always run erlang applications on powerful servers. However, sometimes, you cannot avoid such memory errors, especially when users are many Crash dump was written to: erl_crash.dump ...
2
votes
1answer
111 views

Mnesia: When querying an ordered_set table, are the records returned in a guaranteed order?

Will selects and reads (along with their dirty_ cousins) return records in sort-order of the primary key when the table is of *ordered_set*? In other words if my select matches more than one record is ...
1
vote
1answer
116 views

Mnesia Replication and Large Numbers of Dirty Operations

Some applications require really fast response, to meet their expectations to users. I am building one such application and i am using mnesia. Now, when we by-pass the mnesia transaction manager , we ...
3
votes
1answer
195 views

Mnesia: how to use indexed operations correctly when selecting rows based on criteria involving multiple, indexed columns

Problem: How to select records efficiently from a table where the select is based on criteria involving two indexed columns. Example I have a record, #rec{key, value, type, last_update, ...
-1
votes
1answer
478 views

WebServer Tolerance to High Client Poll Rate: Cowboy vs Yaws Web servers

I have been building a real-time notification system. Its part of a web application, but events have to be seen as soon as they occur. Long polling was not an option because it would be expensive for ...
2
votes
1answer
144 views

Official/Advised/Allowable maximum number of records (or RAM Table Size) in ETS / Mnesia RAM Table

Erlang has been a good application to many "New Age" (obscenely fast and fault tolerant ) Messaging Systems. Examples can be RabbitMQ, ejabberd, WhatsApp for Mobile e.t.c. Regardless of how a ...
0
votes
1answer
53 views

Should memory used be different on different, identical nodes when both nodes are participating in a mnesia cluster?

I have two nodes on two different, identical Virtual Machines -- both identical CentOS 64 bit, same amount of RAM, CPUs, etc. I have mnesia clustered on those two nodes -- very vinalla, ...
0
votes
0answers
98 views

Mnesia slow down system performance when table size reaches a certain value

I set up a web server with erlang and use mnesia to save the session. I test server, at beginning, system run well and cpu load were about 90%. Whe session table size reached a certain value, most web ...
3
votes
2answers
152 views

Find max/min value of column in Mnesia in constant time

How can I in constant time (or closest possible) find the maximum or minimum value on an indexed column in an Mnesia table?
6
votes
2answers
169 views

Erlang fault-tolerant application: PA or CA of CAP?

I have already asked a question regarding a simple fault-tolerant soft real-time web application for a pizza delivery shop. I have gotten really nice comments and answers there, but I disagree in ...
1
vote
1answer
332 views

Mnesia Query Cursors - Working with them in Practical applications

In most applications, its hard to avoid the need to query large amounts of information which a user wants to browse through. This is what led me to cursors. With mnesia, cursors are implemented using ...
2
votes
1answer
118 views

mnesia db query, multi key search at the same time

The table has only two column. One is key, the other is value. The key is like sequencial number from 1,2,3,...N. I want to search many values at the same time by providing the list of keys for saving ...
0
votes
1answer
316 views

Mnesia exception exit: {aborted,{bad_type, Record}}

I create a table whose name is NOT the same as its record name. Here below is the code snippet %% ---- record definition -------------------------------- -record(object,{key,value}). %% ---- create ...
1
vote
1answer
110 views

how to delete all records in two related table together in transaction?

Two tables are related and I want to write function to delete all records in these two tables, but the output indicates that I can't do that. Is the low efficient choice to delete record one by one is ...
0
votes
1answer
370 views

Is erlang mnesia db suitable to save millions or more records?

I wonder whether mnesia db is suitable to save million or more records or not? because mnesia's storage place has only 3, ram, disc_only, disc. It is not possible to save part of records in ram. I ...
2
votes
2answers
722 views

what is the proper way to backup/restore a mnesia database?

WARNING: the background info is pretty long. Skip to the bottom if you think you need the question before the background info. Appreciate the time this is gonna take! I've been all over the web (read ...
0
votes
2answers
282 views

erlang for loop for queries

I have this function: show_employee_table() -> do(qlc:q([B || B <- mnesia:table(employee)])). What it does is that it goes to a table called employee and prints the contents to the user. ...
0
votes
3answers
433 views

Spawn many processes erlang

I wanna measure the performance to my database by measuring the time taken to do something as the number of processes increase. The intention is to plot a graph of performance vs number of processes ...
1
vote
2answers
375 views

How to update a Mnesia table in Erlang

I have a little problem with my code. I have a table containing car details, name, price and quantity, so I am trying to create a function called buy which will be used to buy a specific car. When a ...
1
vote
1answer
250 views

access distributed mnesia database from different nodes

I have a mnesia database containning different tables, I want to be able to access the tables from different terminals on linux, i have a function called add_record, which takes a few parameters, say ...
3
votes
1answer
250 views

Mnesia equivalent of SQL NOT IN

I have two records: -record(foo, {timestamp, name}). -record(bar, {timestamp, name}). And I would like to execute a Mnesia query that mimics the following SQL query SELECT f.* FROM foo f WHERE ...
1
vote
1answer
918 views

How I connect to ejabberd's Mnesia database with a separate script?

I'm trying to insert affiliation data into ejabberd's Mnesia databse from a separate script. I'm an Erlang beginner, and while I can figure out how to create and use a separate Mnesia database, I ...
1
vote
1answer
83 views

Mnesia: when would you limit the number of transaction retries?

Mnesia lets you limit the number of times it retries a transaction: MyFun = fun() -> ... end, {atomic, ok} = mnesia:transaction(MyFun, [], 42) If you don't specify a number, it defaults to ...

1 2 3 4