[erlang-questions] Using Key/Value store with shared storage

Sean D seand-erlang@REDACTED
Mon Dec 10 12:30:28 CET 2012


Hi all,

We are currently running an application for a customer that stores a large
number of key/value pairs.  Performance is important for us as we need to
maintain a write rate of at least 10,000 keys/second on one server.  After
evaluating various key/value stores, we found Bitcask worked extremely well
for us and we went with this.

The solution currently has multiple servers working independently of each
and we would like to make the solution more resilient by using shared
storage. I.e.  If one of the servers goes down, the others can pick up the
work load and add to/read from the same store.

I am aware that Riak seems to be the standard solution for a resilient
key-value store in the Erlang world, however from my initial investigations,
this seems to work by duplicating the data between Riak nodes, and this is
something I want to avoid as the number of keys we are storing will be in
the range of 100s of GB and I would prefer that the shared storage is used
rather than data needing to be duplicated.  I am also concerned that the
overhead of Riak may prove a bottle-neck, however this isn't something that
I have tested.

If anyone here has used a key/value store with a SAN or similar in this way,
I'd be very keen to hear your experiences.

Many thanks in advance,
Sean



More information about the erlang-questions mailing list