Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
5k views

How does Voldemort compare to Cassandra?

How does Voldemort compare to Cassandra? I'm not talking about size of community and only want to hear from people who have actually used both. Especially I'm interested in: How they dynamically ...
5
votes
3answers
4k views

voldemort vs. couchdb

I am trying to decide whether to use voldemort or couchdb for an upcoming healthcare project. I want a storage system that has high availability , fault tolerance, and can scale for the massive ...
3
votes
1answer
383 views

JSON Serializer for arbitrary HashMaps in Voldemort

I am trying to set up the configuration for Voldemort key-value store. Now, I'd like to be able to store arbitrary hashmaps in it, but I haven't found the way to do so (or if it is possible). ...
3
votes
2answers
898 views

Correct usage of Voldemort as key-value pair?

I am trying to understand, how can Voldermort be used? Say, I have this scenario: Since, Voldemort is a key-value pair. I need to fetch a value (say some text) on the basis of 3 parameters. So, what ...
3
votes
3answers
575 views

Is anyone outside of LinkedIn using Voldemort?

I have been trying to find out more about Voldemort but it doesn't seem to be used outside of LinkedIn. Has anyone actually used it for a real system?
3
votes
2answers
429 views

Can anyone explain scenarios where Project Voldermort or similar key value stores are useful?

I can see myself using Project Voldermort to cache results from a Traditional RDBMS query. But in this case, it provides almost no major advantage over other (Java) caching system such as EHcache ...
2
votes
1answer
44 views

How to get all key-value pairs at once from a voldemort store?

int maxThreads = 300; ClientConfig clientConfig = new ClientConfig(); clientConfig.setMaxThreads(maxThreads); clientConfig.setMaxConnectionsPerNode(maxThreads); clientConfig.setConnectionTimeout(500, ...
2
votes
1answer
87 views

In Voldemort, why does the hash ring only extend to 2^31-1?

On the project voldemort design page: http://project-voldemort.com/design.php It is stated that the hash ring covers the interval [0, 2^31-1]. Now, the interval [0, 2^31-1] represents 2^31 total ...
2
votes
1answer
217 views

How to pass sting array in voldemort

Hi I am using Voldemort to store my data. My key is a word and values are number of occurrence of the word and the URL. For example: key :question value: 10, www.stackoverflow.com I am using ...
1
vote
0answers
51 views

Voldemort replication and failover details

I'm evaluating Voldemort and encountered some confusing stuff related to replication and failover. I tried to make a simple 2 nodes cluster configuration where each node is a backup for another one. ...
1
vote
3answers
360 views

CouchDB, Project Voldemort, Cassandra in a Java project

I am just evaluating some noSQL solutions for a current project. The different systems which caught my attention are currently Apache Cassandra, CouchDB and Project Voldemort The last one is more ...
1
vote
1answer
1k views

Oracle (RAC) vs NoSQL

I am curious if anybody did benchmarks for accessing of data in NoSQL databases vs Oracle (particularly I am talking about Oracle RAC)? The project requires to work with at least 10mil+ of records, ...
1
vote
1answer
458 views

Maven repository with Voldemort jars

I'm looking for a public Maven repository that has the Voldemort libraries. Anyone?
0
votes
1answer
14 views

how to design/create key for key/value storage?

I want to store serialized object (or whatever) in an indexed way, At now I do something like this : public string getValue(int param1, string param2, etc ) { string key = ...
0
votes
0answers
87 views

Voldemort Python Client problems

I'm having problems having Python clients connecting to multiple servers that I set up using voldemort. I'm using Python 2.6.1 and Voldemort 0.81. Specifically, if I have a two node cluster, I don't ...
0
votes
1answer
137 views

Guava / Voldemort / MySQL flushing to DB issue

Does anyone have experience when using Guava in front of voldemort (with the mysql storage option on the back-end) I have in-depth experience with MySQL but voldemort and guava are quite new to me. ...