I don't really care if it's NoSQL or SQL based - as long as it uses int indexes (and stores them in RAM for fast searching) so I can find my data with simple queries based on criteria like user_id, lat, status, or other common int fields. The actual records can be stored on disk.

My first guess would be SQLite - but it moves slowly when dealing with a lot of concurrent writes.

Second, it also needs to be able to run in very small amounts of RAM for VPS with limited resources. This excludes MongoDB since it spreads to fill all available RAM (well, the diskcache does really). I also can't use MySQL Innodb since it uses about 100MB of RAM just to load and MyIsam doesn't support ACID.

So are their any RDBMS or NoSQL databases that meet all four requirements?

Update: When I say small databases, I mean databases that only use 8-60MB of RAM. I understand that actual data will increase this but most of my datasets are usually under 1GB for the smaller sites with about 5MB of indexes that would need to be stored in RAM. So an ideal database would use about 30MB when running with a fully index dataset of about 1GB. Take this site for example, I doubt the whole stackoverflow site takes much more than 1GB to store.

Update: To clarify, a setup would ideally store all data on disk. However, it would also keep column indexes in RAM (just ints after all) which would contain the needed pointers to data on the disk. This would avoid two things 1) keeping unneeded rows in memory like redis and 2) keeping indexes on the hard drive slowing searches (SQLite).

An example is MySQL which can be configured to only keep primary and secondary indexed columns in memory and all other data on the hard drive. However, MySQL either uses 100MB extra RAM just to add InnoDB or you forgo ACID compliance and stick with Myisam which is not transaction safe.

Again, the target is systems that are limited in RAM and can't handle more than a couple Megabytes of cached indexes - but that still need to allow frequent writes/updates of normally small data sets in a safe manner.

Update: apparently finding something that meets all these requirements is a bit much. So, starting with the most important features let me list them in descending importance.

  1. Low memory usage
  2. Indexes (or something to mimic them)
  3. Handles concurrent writes
  4. ACID

Expanding on #1, it is more important that data can be written than that reads are fast. Which also means that the amount of RAM should not have any affect on the amount of data that can be stored.

Expanding on #2, ideally (given how small they are) indexes should be stored in RAM since indexes should be nothing more than int values that are compared to filter results before actually accessing the disk for the data.

link|improve this question

1GB for all of SO? The (anonymized) data is free (CC) to download, and it's 500MB when compressed. – Ken Oct 29 '10 at 16:33
@Ken, I couldn't remember off the top of my head how much was on stack overflow. odata.stackexchange.com – Xeoncross Oct 29 '10 at 16:45
If hash access suffices you woudn't need indexes at all. – Peter G. Oct 31 '10 at 10:10
feedback

13 Answers

up vote 5 down vote accepted
+150

I think PostgreSQL will work with your requirements:

  1. Low memory usage
    Postgres is very flexible — it has very tweekable limits for used memory — for example this configuration variables will make it use about 30MB of RAM:
    shared_buffers = 16MB # used for caching of indexes and data
    temp_buffers = 2MB # maximum temporary buffers used per open client session
    maintenance_work_mem = 8MB # used temporarily for maintenance
    
    It will also automatically use temporary files if limits will be too low for a complex query.
  2. Indexes (or something to mimic them)
    Postgres supports b-tree and hash indexes. Also indexes on multiple columns or partial or functional indexes. In my test it used 17MB b-tree index for 1000000 32bit integers.
  3. Handles concurrent writes
    Postgres is famous for scaling much better for concurrent reads and writes than for example MySQL. It supports transactions, savepoints (subtransactions), several transaction isolation levels, and also, as a bonus, transactional DDL.
  4. ACID
    PostgreSQL is ACID compliant by default. Supports transactions for atomicity, foreign keys, unique indexes and check contraints for consistency, transaction isolation levels and locking for isolation and write-ahead logs and synchronous commits for durability. It also supports replication for increased durability.

And it's fun, too.

link|improve this answer
feedback

I'd say no: you have somewhat contradictory requirements

  • In memory = data cache (which is data and indexes). Covering indexes will need more RAM. But you want small RAM footprint

  • Write volumes depend on underlying IO stack, really. Eg Write Ahead Logging, required for ACID in some implementations

What would be most important, and what is priority of the rest?

link|improve this answer
Sorry, I mean the smallest overhead RAM usage. – Xeoncross Oct 26 '10 at 20:16
3  
Agreed, these requirements seem completely contradictory. How are you going to have "high write volumes", but only use RAM that's 3% of the data size? Oh yeah and you want it to be ACID, so the data has to be safely committed to disk, but it can't have any RAM space? This whole thing seems like some kind of mythical database structure. Without a much more specific set of requirements, you're not going to find an answer here. – Gates VP Oct 27 '10 at 19:21
To my knowledge these requirements are not contradictorily. If a database needs to use RAM while writing data that is fine, they also need RAM to run anyway. Also, correct me if I'm wrong, but I believe there are methods that a single database file could be setup in append mode to allow multiple clients to pass all their writes to a single process which keeps the file open and constantly appends data. Data could even be split up among many files like MongoDB. – Xeoncross Oct 29 '10 at 15:32
feedback

For high-volume concurrent inserts and updates, a hashed table beats b-trees hands-down. The tradeoff is that with a hashed table you cannot store the data physically in a meaningful sorted order, e.g. sorted by zip, to make selecting and ordering by zipcode faster; rather the hashFunction( primaryKey ) determines the location where the record is placed in the file, and if you want to extract all records with a particular zipcode, those rows won't be physically contiguous. But you'll have to define what you mean by "a lot of concurrent writes".

EDIT: just wanted to underscore the fact that with a hashed table, you don't need to keep the Primary Keys in RAM because the hash-key function is fed the key value and it returns the record location to your seek routine.

So keys-in-RAM per se need not be one of your requirements. Speedy retrieval is the requirement.

link|improve this answer
Well, I don't have a hard number - but perhaps 5 or so every 100ms. – Xeoncross Oct 26 '10 at 20:20
A properly sized hash-table so that there are few records per page would be able to handle this kind of load. You don't need an index for the PK. If you have 50 inserts/updates per second, you'd want to keep the number of indexed columns to a minimum and/or use composite indexes, the goal being to avoid collisions when writing the indices. – Tim Oct 26 '10 at 22:38
Now if only I could build one... – Xeoncross Oct 27 '10 at 0:09
@Xeoncross -- there are open source hash-table libraries available. It might not be as difficult as you envision. en.wikipedia.org/wiki/Hash_table – Tim Oct 27 '10 at 11:22
Keys-in-RAM mean any of the INDEX keys that are needed to quickly find the correct values in the massive store of data. For example, finding things like "active" user accounts, "recent" comments, and lng/lat coordinates are all INT column values that should be stored in RAM to prevent searching through the entire database to find the right rows to fetch. MongoDB and MySQL are good examples of databases that can do this. SQLite and CouchDB are examples of ones that can't. – Xeoncross Oct 27 '10 at 19:18
show 3 more comments
feedback

You can take a look at Firebird

link|improve this answer
feedback

I'm amazed no one has yet mentioned TokyoCabinet; that thing is a monster! It basically has nonexistent memory overhead, it's monstrously fast at insertions, a bit slower at look-ups (depends on schema), it provides indexing, cache memory limit, and more importantly, different "schemas" of storage (Hash, B+ tree, "Table" DB).

It's NoSQL, but if you need SQL queries, you can also use the Table DB schema.

I have used TC several months ago for a mini web-server written in C that processed (look-ups mainly) ~5 million records, and I was amazed by its performance and memory usage. Part of the reason I tried it out was because I was a disbeliever of the benchmarks and the reviews I had read about it, but then I was proven wrong.

Note: the C API might look a bit cryptic and unintuitive, at least it did so to me, but it went smooth after the first few hours.

link|improve this answer
3  
TC is not ACID compliant IIRC, unless you do some trickery which simultaneously reduces the performance to BerkleyDB-vicinity (which defeats parts of the beauty of TC). That said, OP should probably clarify whether it's ACID or performance that is key - as they usually represents some sort of trade-off... – andy Nov 2 '10 at 18:21
feedback

Redis may be an option, as it store indexes (keys actually) in ram, is very compact on ram usage and with vm enabled values will go to disk. But it is a key value store, so modeling might be a bit different. It is also very fast on writes and reads.

CouchDB is also a option with low memory usage and it's a great database, but might not fill all your requirements (ACID and keys in RAM).

link|improve this answer
feedback

I'd try to squeeze the performance you need out of SQLite.

  • Write performance is good if you do many writes per transaction.
  • 3.7 introduces write-ahead logging (WAL) which, when enabled, can improve performance in many cases.
link|improve this answer
We need to know whether the OP's projected 50 writes per second will be from 50 separate clients or from only a couple of clients with batches that can be wrapped in a transaction. – Tim Oct 28 '10 at 10:48
separate clients which would not allow batch transactions at the application level. – Xeoncross Oct 28 '10 at 15:53
I'm not sure what you mean by "separate". – Tim Oct 29 '10 at 21:32
You said "separate clients" and so I was agreeing that yes they are "separate". In other words, there are many clients making requests. – Xeoncross Nov 1 '10 at 20:22
feedback

OrientDB: it's the faster in insert. On common hw insert 150,000 documents per second. Supports indexes, ACID transactions and even it's a NoSQL dbms supports the SQL with extensions to treat trees and graphs of documents. Open source and always free (Apache 2 license).

link|improve this answer
It only seems to support Java at this time - though they are working on documenting the protocols for other languages. Also, having something critical like a database built on Java scares me. I'd much rather stick with solid languages like c++. However, this database looks very promising in everything it's trying to accomplish. – Xeoncross Oct 28 '10 at 15:52
There are many external contributions to provide mapping in C, Javascript (from Web Browser and Node.js), Ruby and Scala. However it talks HTTP/REST and JSON natively so you can use it from any language. About the Java language choice it's to have great productivity, stability and performances. I can't find any DBMS faster than OrientDB even if written in the best C. And the JVM is present everywhere. – Lvca Nov 4 '10 at 0:06
feedback

I recommend BerkeleyDB. It doesn't use SQL at all, and you have to specify your lookup method explicitly (sequential records, btree, hash). However, using secondary databases, you do have support for indices, and you can set the shared memory consumption (cache size) per database - the default cache size is 256KB. It supports ACID transactions.

link|improve this answer
feedback

Have you investigated JetDB / ESENT. Vijay has already mentioned this and you should really check this out. JetDB / ESENT are the same and are a hidden gem in Windowss

link|improve this answer
feedback

Any particular reason to not use raw btrees?

link|improve this answer
Personal ignorance, though you could fix that for me. – Xeoncross Oct 26 '10 at 19:29
en.wikipedia.org/wiki/B-tree – Joshua Oct 27 '10 at 16:19
feedback

You didn't say which OS you're targeting.

If it's Windows, you might consider ESENT - an ISAM database that comes as part of the OS (not a lot of people know about it).

Here's a blog post with an intro in C++.

link|improve this answer
Linux, I can't imagine running a production server on Windows. It's bad enough trying to use it day-to-day. However, if the database works on both then that's even better! – Xeoncross Oct 29 '10 at 16:15
Kind of funny considering this site is run by it... – Xeoncross Oct 29 '10 at 16:46
feedback

I know this is now incredibly old, but for completeness:

Oracle have done a port of SQLite which uses Berkeley DB as a back end. This makes it vastly faster than stock SQLite when doing concurrent writes, as it gets to do page level locking. The downside is that it's about three times as much code --- which is still tiny.

Unfortunately Oracle in their infinite wisdom are publicising this as being BDB with SQL support, rather than a port of SQLite, so it's not getting a lot of press.

More information here:

http://www.oracle.com/technetwork/database/berkeleydb/db-faq-095848.html#SpecifictotheSQLAPI

I haven't used it myself, but it sounds like an excellent middle ground between traditional SQLite and PostgreSQL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.