NoSQL (sometimes expanded to "not only SQL") is a broad class of database management systems that differ from the classic model of the relational database management system (RDBMS) in some significant ways.
295
votes
14answers
57k views
What NoSQL solutions are out there for .NET? [closed]
What NoSQL solutions are out there for .NET?
Which have the best integration with C#?
Which integrate with LINQ?
Also which would be easiest to integrate into an application?
147
votes
12answers
10k views
What scalability problems have you encountered using a NoSQL data store?
NoSQL refers to non-relational data stores that break with the history of relational databases and ACID guarantees. Popular open source NoSQL data stores include:
Cassandra (tabular, written in ...
111
votes
21answers
11k views
Good reasons NOT to use a relational database?
Can you please point to alternative data storage tools and give good reasons to use them instead of good-old relational databases? In my opinion, most applications rarely use the full power of SQL--it ...
95
votes
6answers
16k views
NoSQL (MongoDB) vs Lucene (or Solr) as your database
With the NoSQL movement growing based on document-based databases, I've looked at MongoDB lately. I have noticed a striking similarity with how to treat items as "Documents", just like Lucene does ...
89
votes
5answers
11k views
Non-Relational Database Design
I'm interested in hearing about design strategies you have used with non-relational "nosql" databases - that is, the (mostly new) class of data stores that don't use traditional relational design or ...
71
votes
6answers
21k views
What is NoSQL, how does it work, and what benefits does it provide?
I've been hearing things about NoSQL and that it may eventually become the replacement for SQL DB storage methods due to the fact that DB interaction is often a bottle neck for speed on the web.
So I ...
66
votes
2answers
13k views
Difference between CouchDB and Couchbase
Are there any essential differences between CouchDB and Couchbase which makes one or the other preferable to use?
65
votes
6answers
8k views
Use cases for NoSQL
NoSQL has been getting a lot of attention in our industry recently. I'm really interested in what peoples thoughts are on the best use-cases for its use over relational database storage. What should ...
53
votes
9answers
15k views
Is there any NoSql database as simple as SQLite?
Is there any NoSql database as simple as SQLite? I'm looking for a lightweight database to persist a small set of data for a simple desktop application. I still can use SQLite but prefer a more OO ...
52
votes
7answers
6k views
When shouldn't you use a relational database?
Apart from the google/bigtable scenario, when shouldn't you use a relational database? Why not, and what should you use? (did you learn 'the hard way'?)
52
votes
7answers
2k views
Life without JOINs… understanding, and common practices
Lots of "BAW"s (big ass-websites) are using data storage and retrieval techniques that rely on huge tables with indexes, and using queries that won't/can't use JOINs in their queries (BigTable, HQL, ...
52
votes
5answers
18k 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 ...
51
votes
5answers
11k views
Can I do transactions and locks in CouchDB?
I need to do transactions (begin, commit or rollback), locks (select for update).
How can I do it in a document model db?
Edit:
The case is this:
I want to run an auctions site.
And I think how to ...
51
votes
9answers
25k views
NoSql Crash Course/Tutorial
I've seen NoSQL pop up quite a bit on SO and I have a solid understanding of why you would use it (from here, Wikipedia, etc). This could be due to the lack of concrete and uniform definition of what ...
50
votes
3answers
13k views
NoSQL - MongoDB vs CouchDB
I am a complete noob when it comes to the NoSQL movement. I have heard lots about MongoDB and CouchDB. I know there are differences between the two. Which do you recommend learning as a first step ...
46
votes
8answers
6k views
The Next-gen Databases
I'm learning traditional Relational Databases (with PostgreSQL) and doing some research I've come across some new types of databases. CouchDB, Drizzle, and Scalaris to name a few, what is going to be ...
46
votes
8answers
12k views
Are there any e-commerce websites that use NoSQL databases [closed]
I have read a lot lately about 'NoSQL' databases such as CouchDB, MongoDB etc. Most of the websites I have seen using this are mainly text based websites such as The New York Times and Source forge.
...
46
votes
7answers
20k views
Suggest a simple NoSQL database for java project [closed]
I am developing a simple internal use application with an intended user base of around 100 people. The application does a lot of reads and very few writes. The dataset size is fairly small and we do ...
44
votes
2answers
5k views
NoSQL best practices [closed]
What are the best practices for NoSQL Databases, OODBs or whatever other acronyms may exist for them?
For example, I've often seen a field "type" being used for deciding how the DB document (in ...
43
votes
3answers
17k views
Large scale data processing Hbase vs Cassandra [closed]
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 ...
43
votes
4answers
19k views
When to use CouchDB over MongoDB and vice versa [closed]
I am stuck between these two NoSQL databases. In my project i will be creating a database within a database. For example, I need a solution to create dynamic tables. So users can create tables with ...
43
votes
3answers
19k 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 ...
40
votes
5answers
6k views
What does MongoDB not being ACID compliant really mean?
I am not a database expert and have no formal computer science background, so bear with me. I want to know the kinds of real world negative things that can happen if you use MongoDB, which is not ...
39
votes
7answers
8k views
Best data store for billions of rows
I need to be able to store small bits of data (approximately 50-75 bytes) for billions of records (~3 billion/month for a year).
The only requirement is fast inserts and fast lookups for all records ...
37
votes
1answer
11k views
Amazon SimpleDB vs Amazon DynamoDB
I have some basic understanding what Amazon SimpleDB is, but according to the Amazon DynamoDB description it seems to be almost the same: a NoSQL Key-value store service.
Can someone simply explain ...
36
votes
6answers
17k views
Pros/cons of document-based databases vs. relational databases
I've been trying to see if I can accomplish some requirements with a document based database, in this case CouchDB. Two generic requirements:
CRUD of entities with some fields which have unique ...
35
votes
8answers
3k views
So… this NoSQL thing
I've been looking at MongoDB and I'm fascinated. It appears (although I have to be suspicious) that in exchange for organizing my database in a slightly different way, I get as much performance as I ...
32
votes
1answer
6k views
MongoDB with redis
Can anyone give example use cases of when you would benefit from using Redis and MongoDB in conjunction with each other?
32
votes
7answers
9k 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 ...
31
votes
8answers
5k views
What exactly is NoSQL?
What exactly is NoSQL? Is it database systems that only work with {key:value} pairs?
As far as I know MemCache is one of such database systems, am I right?
What other popular NoSQL databases are ...
30
votes
2answers
14k views
Dumping all key/value pairs in a Redis db
I'm using an ORM called Ohm in Ruby that works on top of Redis and am curious to find out how the data is actually stored. I was wondering if there is way to list all the keys/values in a Redis db.
...
30
votes
4answers
970 views
How to search over huge non-text based data sets?
In a project I am working, the client has a an old and massive(terabyte range) RDBMS. Queries of all kinds are slow and there is no time to fix/refactor the schema. I've identified the sets of common ...
29
votes
2answers
7k views
How to empty a redis database?
I've been playing with redis (and add some fun with it) during the last fews days and I'd like to know if there is a way to empty the db (remove the sets, the existing key....) easily.
During my ...
29
votes
4answers
5k views
Why are document stores like Lucene / Solr not included in NoSQL conversations?
All of us have come across the recent hype of no-SQL solutions lately. MongoDB, CouchDB, BigTable, Cassandra, and others have been listed as no-SQL options. Here's an example:
...
28
votes
16answers
12k views
Is there any NoSQL that is ACID compliant?
Is there any NoSQL that is ACID compliant?
(Or is that even possible with NoSQL given it's just a bunch of loosely coupled key-value pairs.)
28
votes
3answers
17k views
NoSql vs Relational database
Recently NoSQL get popular. I want to know what's the edge of the NoSQL over traditional RDBMS.
28
votes
5answers
5k views
Reasons for and against moving from SQL server to MongoDB
I know this is a big question and it's not a yes or no answer but we develop web apps and are looking into using MongoDB for our persistence solution. Combining MongoDB with NoRM for object storage.
...
28
votes
7answers
11k views
Storing time-series data, relational or non?
I am creating a system which polls devices for data on varying metrics such as CPU utilisation, disk utilisation, temperature etc. at (probably) 5 minute intervals using SNMP. The ultimate goal is to ...
28
votes
2answers
3k 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?
28
votes
4answers
10k views
Choosing MongoDb/CouchDb/Raven Db - performance and scalability advice [closed]
We are looking at a document db storage solution with fail over clustering, for some read/write intensive application.
We will be having an average of 40K concurrent writes per second written to the ...
26
votes
7answers
8k views
What are the pros and cons of DynamoDB with respect to other NoSQL databases?
We use MongoDB database add-on on Heroku for our SaaS product. Now that Amazon launched DynamoDB, a cloud database service, I was wondering how that changes the NoSQL offerings landscape?
...
26
votes
2answers
5k views
MongoDB/NoSQL: Keeping Document Change History
A fairly common requirement in database applications is to track changes to one or more specific entities in a database. I've heard this called row versioning, a log table or a history table (I'm ...
25
votes
4answers
5k views
What does Redis do when it runs out of memory?
This might be easy question but I am having a hard time finding the answer. How does Redis 2.0 handle running out of maximum allocated memory? How does it decide which data to remove or which data to ...
25
votes
4answers
7k views
NoSQL and spatial data
Has any of you had any experience with using NoSQL (non-relational) databases to store spatial data? Are there any potential benefits (speed, space, ...) of using such databases to hold data for, say, ...
24
votes
1answer
5k views
Explain Merkle Trees for use in Eventual Consistency
Merkle Trees are used as an anti-entropy mechanism in several distributed, replicated key/value stores:
Dynamo
Riak
Cassandra
No doubt an anti-entropy mechanism is A Good Thing - transient ...
24
votes
2answers
4k views
When to Redis ? when to MongoDB?
What I want is not a comparison between redis and mongodb. I knows they are different, the performance and the API is totally different.
Redis is very fast but the API is very 'atomic'.
MongoDB will ...
23
votes
8answers
10k views
How to run MongoDB as windows service?
How to setup MongoDB so it can run as windows service?
Thanks
23
votes
9answers
4k views
Is MongoDB reliable? [closed]
I am developing a dating website and I am thinking of using a NoSQL database to store the profiles etc. I am currenly looking into the MongoDB and so far I am very pleased. The only worry is that I ...
23
votes
3answers
14k views
SQL (MySQL) vs NoSQL (CouchDB)
I am in the middle of designing a highly-scalable application which must store a lot of data. Just for example it will store lots about users and then things like a lot of their messages, comments ...
23
votes
4answers
13k views
PHP-friendly NoSQL solutions [closed]
I'm looking to use a NoSQL solution for my next project, which will be written in PHP. What choices do I have in terms of NoSQL solutions that can easily interfaced via PHP? I haven't done much ...
