Tagged Questions

Apache Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. Cassandra brings together the distributed systems technologies from Dynamo and the data model from Google's BigTable. Like Dynamo, Cassandra is eventually consistent. Like BigTable, Cassandra ...

learn more… | top users | synonyms (1)

76
votes
5answers
31k views

MongoDB vs. Cassandra

I am evaluating what might be the best migration option. Currently, I am on a sharded MySQL (horizontal partition), with most of my data stored in JSON blobs. I do not have any complex SQL queries ...
37
votes
4answers
12k views

What's The Best Practice In Designing A Cassandra Data Model?

And what are the pitfalls to avoid? Are there any deal breaks for you? E.g., I've heard that exporting/importing the Cassandra data is very difficult, making me wonder if that's going to hinder ...
33
votes
9answers
9k views

What should I choose: MongoDB/Cassandra/Redis/CouchDB?

We're developing a really big project and I was wondering if anyone can give me some advice about what DB backend should we pick. Our system is compound by 1100 electronic devices that send a signal ...
33
votes
3answers
12k views

what is the difference between Cassandra and CouchDB?

I'm looking both projects and I can't really see the difference from Cassandra Site: Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store...Cassandra is ...
28
votes
4answers
12k views

Switching from MySQL to Cassandra - Pros/Cons?

For a bit of background - this question deals with a project running on a single small EC2 instance, and is about to migrate to a medium one. The main components are Django, MySQL and a large number ...
23
votes
5answers
8k views

Is Cassandra production ready for Ruby on Rails?

I'm working on a project that is considering using Cassandra as a database. We would like to eventually migrate to Cassandra even if we use MySQL to start with, given its scalability. I know that ...
22
votes
6answers
4k views

When NOT to use Cassandra?

There has been a lot of talk related to Cassandra lately. Twitter, Digg, Facebook, etc all use it. When does it make sense to: use Cassandra, not use Cassandra, and use a RDMS instead of ...
20
votes
5answers
6k views

How to use Cassandra in Django framework

Is there any robust way of implementing Cassandra back end to a web application developed using Django web framework. Thanks
16
votes
3answers
4k views

Sorted String Table (SSTable) or B+ Tree for a Database Index?

Using two databases to illustrate this example: CouchDB and Cassandra. CouchDB CouchDB uses a B+ Tree for document indexes (using a clever modification to work in their append-only environment) - ...
15
votes
2answers
3k views

What are the best uses of document stores?

I have been hearing a lot about document oriented data stores like CouchDB. I understand the uses of BigTable like stores such as Cassandra. After reading this question, I was wondering what the ...
15
votes
2answers
10k views

bigtable vs cassandra vs simpledb vs dynamo vs couchdb vs hypertable vs riak vs hbase, what do they have in common?

Sorry if this question is somewhat subjective. I am new to 'could store', 'distributed store' or some concepts like this. I really wonder what do they have in common and want to get an overview on all ...
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 ...
13
votes
8answers
11k views

MongoDB vs. Redis vs. Cassandra for a fast-write, temporary row storage solution

I'm building a system that tracks and verifies ad impressions and clicks. This means that there are a lot of insert commands (about 90/second average, peaking at 250) and some read operations, but the ...
13
votes
4answers
4k views

storing massive ordered time series data in bigtable derivatives

I am trying to figure out exactly what these new fangled data stores such as bigtable, hbase and cassandra really are. I work with massive amounts of stock market data, billions of rows of ...
12
votes
3answers
2k views

Large scale data processing Hbase vs Cassandra

I am nearly landed at Cassandra after my research on large scale data storage solutions. But its generally said that Hbase is better solution for large scale data processing and analysis. While both ...
12
votes
2answers
4k views

Is there a Thrift or Cassandra client for Node.js/JavaScript

I would like to start using Cassandra with a node.js deployment, but I can't find a Thrift or Cassandra client for Node.js and/or JavaScript. Is there one? Is there a simple means of generating ...
12
votes
4answers
5k views

Row count of a column family in Cassandra

Is there a way to get a row count (key count) of a single column family in Cassandra? get_count can only be used to get the column count. For instance, if I have a column family containing users and ...
11
votes
1answer
1k views

Difference between Document-based and Key/Value-based databases?

I know there are three different, popular types of non-sql databases. Key/Value: Redis, Tokyo Cabinet, Memcached ColumnFamily: Cassandra, HBase Document: MongoDB, CouchDB I have read long blogs ...
11
votes
2answers
3k views

Cassandra, mongodb or couchdb for Ruby on Rails

I think these three are the most popular non-relational db:s out there at this moment. I want to give them a try, but I wonder which one of these are most suitable for Rails when it comes to Gem, ...
11
votes
2answers
836 views

What does “Document-oriented” vs. Key-Value mean when talking about MongoDB vs Cassandra?

What does going with a document based NoSQL option buy you over a KV store, and vice-versa?
11
votes
3answers
4k views

How to use Cassandra's Map Reduce with or w/o Pig?

Can someone explain how MapReduce works with Cassandra .6? I've read through the word count example, but I don't quite follow what's happening on the Cassandra end vs. the "client" end. ...
11
votes
2answers
3k views

Cassandra Vs Amazon SimpleDB

I'm working on an application where data size and SQL queries are going to be heavy. I am thinking between Cassandra or Amazon SimpleDB. Can you please suggest which is more suitable in this kind of ...
10
votes
3answers
10k views

Cassandra PHP module

Anyone out there using Cassandra (http://cassandra.apache.org/) with PHP? What PHP module would you guys recommend to communicate between PHP and Cassandra?
10
votes
1answer
2k views

Cassandra time series data

We are looking at using Cassandra to store a stream of information coming from various sources. One issue we are facing is the best way to query between two dates. For example we will need to ...
9
votes
4answers
2k views

MySQL, NoSQL: help me to choose the right one! (on a )

Ok, i've a bit of experience with mysql+php. In fact, i'm not a full time developer and that's the only stuff i really do know. Here is what i have to do. There is a big database, 1G of records ...
9
votes
5answers
686 views

What database systems should an startup company consider?

Right now I'm developing the prototype of a web application that aggregates large number of text entries from a large number of users. This data must be frequently displayed back and often updated. At ...
9
votes
1answer
3k views

Cassandra port usage - how are the ports used?

When experimenting with Cassandra I've observed that Cassandra listens to the following ports: TCP *:8080 TCP *:8888 TCP *:57311 TCP *:57312 TCP 127.0.0.1:7000 TCP 127.0.0.1:9160 UDP 127.0.0.1:700 ...
9
votes
2answers
2k views

Cassandra vs Riak

I am looking for an eventually consistent data store and it looks like it may be coming down to Riak or Cassandra. Has anyone got expereinces of a view on this?
8
votes
3answers
251 views

Dealing with duplication in a message queue

I've been arguing with my programmer about the best way of going about this. We have data that comes in at a rate of about 10000 objects per second. This needs to be processed asynchronously, but ...
8
votes
3answers
2k views

id autoincrement/sequence emulation with CassandraDB/MongoDB etc

I'm trying to build small web-system (url shortcutting) using nonsql Cassandra DB, the problem I stack is id auto generation. Did someone already stack with this problem? Thanks. P.S. UUID not ...
8
votes
1answer
862 views

Fetching Cassandra row keys

Assume a Cassandra datastore with 20 rows, with row keys named "r1" .. "r20". Questions: How do I fetch the row keys of the first ten rows (r1 to r10)? How do I fetch the row keys of the next ten ...
8
votes
1answer
1k views

Suggest Cassandra data model for an existing schema

I hope there's someone who can help me suggest a suitable data model to be implemented using nosql database Apache Cassandra. More of than I need it to work under high loads and large amounts of data. ...
8
votes
4answers
2k views

Are there any examples/tutorials of using Spring 3.0 with Cassandra as a backend?

As I had written in title, I am trying to learn Spring 3.0 (I already know Django, Pylons and few simpler MVC frameworks) and try to use Cassandra as a backend for my web application. Are there any ...
8
votes
2answers
933 views

List of resources to learn cassandra

Lately I have been reading a lot of blog topics about big sites(facebook, twitter, digg, reddit to name a few) using cassandra as their datastore instead of MysqL. I would like to gather a list of ...
7
votes
0answers
108 views

Scalable distributed file system for blobs like images and other documents [closed]

Cassandra & HBase both do not efficiently support storage of blobs like images. Storing directly on HDFS stresses the Namenode. Facebook's Haystack is not open source. So is Lustre a good choice ...
7
votes
1answer
487 views

Cassandra and Secondary-Indexes, how do they work internally?

How does a Cassandra Secondary-Index work internally? The docs state it is some kind of Hash Index: Given i have the colum username="foobar" (Column username will be scondary index) in a CF User with ...
7
votes
1answer
363 views

Needed: “Good” MongoDB and/or Cassandra example application

I'm investigating both Cassandra and MongoDB for a new project because they share some good qualities that I will need to take advantage of for this project. I've seen plenty of shallow examples ...
7
votes
5answers
2k views

High Level Java Client selection for Apache Cassandra

I got interested in geospatial applications last time and understood their need for flexible data storage solutions regarding partition tolerance. As I found a job advertisement as java developer ...
7
votes
4answers
3k views

Mapping Cassandra Super Columns

I guess everybody that played with Cassandra already read this article. I trying to create my schema on CassandraCli, but I am having a lot of problems, can someone guide me to the right way? I am ...
7
votes
3answers
4k views

HBase cassandra couchdb mongodb..any fundamental difference?

I just wanted to know if there is a fundamental difference between hbase, cassandra, couchdb and monogodb ? In other words, are they all competing in the exact same market and trying to solve the ...
7
votes
5answers
275 views

Database that consumes less disk space

I'm looking at solutions to store a massive quantity of information consuming the less possible disk space. The information structure is very simple and the queries will also be very simple. I've ...
7
votes
3answers
2k views

In Cassandra terminology, what is TimeUUID?

In Cassandra terminology, what is TimeUUID and when is it used?
7
votes
4answers
3k views

Cassandra instead of MySQL for social networking app

I am in the middle of building a new app which will have very similar features to Facebook and although obviously it wont ever have to deal with the likes of 400,000,000 million users it will still be ...
7
votes
2answers
1k views

Is Cassandra suitable to use as a primary data store?

I'm evaluating a storage platform for an upcoming project and keep coming back to Cassandra. For this project loosing any amount of data is unacceptable. So far we've used a relational database ...
7
votes
2answers
3k views

Atomic transactions in key-value stores

Please excuse any mistakes in terminology. In particular, I am using relational database terms. There are a number of persistent key-value stores, including CouchDB and Cassandra, along with plenty ...
6
votes
1answer
158 views

Cassandra Client API Most Similar to App Engine Datastore API?

With the announcement of the Google App Engine's new pricing model, I've realized my application will not be able to sustain itself due to the extremely high price of Google Datastore interactions. ...
6
votes
5answers
237 views

NoSql Referential Data

Disclaimer: by referential Data, i do not mean referential integrity I am learning nosql and would like to understand how data should by modeled. In a typical relational database for an CMS ...
6
votes
3answers
3k views

MongoDB vs. Cassandra vs. MySQL for real-time advertising platform

I'm working on a real-time advertising platform with a heavy emphasis on performance. I've always developed with MySQL, but I'm open to trying something new like MongoDB or Cassandra if significant ...
6
votes
2answers
302 views

NoSQL Injection? (PHP->phpcassa->Cassandra)

Anyone familiar enough with the Cassandra engine (via PHP using phpcassa lib) to know offhand whether there's a corollary to the sql-injection attack vector? If so, has anyone taken a stab at ...
6
votes
2answers
406 views

Large Data Sets - NoSQL, NewSQL, SQL..? Brain Fried

I'm in need of some advice. I working on a new start-up in the data mining field. This is basically the spin off of a research project. Any way we have a large about of data that is unstructured, we ...

1 2 3 4 5 18