Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
Databases Software Programming IT Technology

"Slacker DBs" vs. Old-Guard DBs 267

snydeq writes "Non-relational upstarts — tools that tack the letters 'db' onto a 'pile of code that breaks with the traditional relational model' — have grabbed attention in large part because they willfully ignore many of the rules that codify the hard lessons learned by the old database masters. Doing away with JOINs and introducing phrases like 'eventual consistency,' these 'slacker DBs' offer greater simplicity and improved means of storing data for Web apps, yet remain toys in the eyes of old guard DB admins. 'This distinction between immediate and eventual consistency is deeply philosophical and depends on how important the data happens to be,' writes InfoWorld's Peter Wayner, who let down his old-guard leanings and tested slacker DBs — Amazon SimpleDB, Apache CouchDB, Google App Engine, and Persevere — to see how they are affecting the evolution of modern IT."
This discussion has been archived. No new comments can be posted.

"Slacker DBs" vs. Old-Guard DBs

Comments Filter:
  • by qoncept ( 599709 ) on Tuesday March 24, 2009 @02:42PM (#27315719) Homepage
    "CHAR(50)"

    Oracle doesn't have a "string" datatype.
  • Ah, my apologies. Really, it should be an indexed enum (or whatever Oracle equivalent there is... it's been a while since I used it) if there's no additional data to go along with the status code... or another table if there is additional data.

  • by thanasakis ( 225405 ) on Tuesday March 24, 2009 @02:52PM (#27315851)

    The problem of distributed consistency has kept researchers occupied for quite a while. For example, see project Scalaris [onscale.de]. They are using a distributed hash table to distribute data among many nodes. This should be relatively easy, at least once you have a good hashing function on your hands. But a lot of research has been done on P2P networks during the last decade, so there is quite a lot of stuff to read and take ideas from.
    The interesting part is that it can maintain consistency and support ACID properties. From the site it appears that they accomplish that by using a modified Paxos Algorithm [wikipedia.org] which basically is a way to maintain consensus among many different peers in a non-Byzantine system (this means that there are no malevolent peers in the system -- peers can break down and cease working but not sabotage the system). Leslie Lamport [lamport.org] of Microsoft Research has done a lot of work on this, anyone interested may take a look at his papers, very advanced stuff there.

  • I've never understood the UNIX world's fascination with relational databases.

    Speaking as a programmer in mainframe online transaction environments for the past 20+ years, I've become very familiar with very fast and simple database systems like the "freespace" files we use on the Unisys mainframe platform.

    We don't need relations for real-time processing. Most programs just need a place to keep data, and a simple key to retrieve that data. Some efficiency in disk usage is nice, but the primary design factor is performance.

    A freespace file is a collection of pre-allocated fixed-length records of various sizes (e.g. 256 bytes, 512 bytes, 1024 bytes, 2048 bytes, 4096 bytes, and 8192 bytes). Each record size is a assigned a type number (e.g., 1 through 6 in the above case), and a given file is created and pre-allocated with a mix of various records depending on the usage pater for that particular file. If you know all you need is tiny records, create a file containing a few hundred or thousand type 1 and maybe 2 records.

    Records not allocated are filled with a deallocated fill pattern.

    A program uses a record by performing a Write New operation. That tells the database manager to find a record in that file closest and >= to the size required, stick the presented buffer in the record, save it, and return a key to that record to the calling program. Typical key format is where Record Number is a number from 1 ... n. If your file has 1000 Type 3 records, it'd be from 1...1000 or 0...999.

    To read a record, use a key from a previous Write New (stored away somewhere), perhaps in another file) to read that record from a file. Length is not required.

    Programs use a very simple read-and-lock mechanism when modifying existing records. If one program has a record locked, another program must wait. Not a problem with intelligent coding.

    We've used this system in airline systems for 40+ years. It works well. Sometimes an environment has robust commit and rollback/recovery features to allow for an entire series of changes to be rolled back on error, sometimes not. It doesn't seem to matter that much, especially for transient data like weather, flight schedule data, etc.

    I would LOVE to see a freespace database ported to Solaris, personally. We'd use it heavily. :-)

  • Re:Laziness Rules (Score:5, Informative)

    by metalhed77 ( 250273 ) <andrewvc&gmail,com> on Tuesday March 24, 2009 @03:02PM (#27316003) Homepage

    Damien Katz, CouchDB's creator, worked at MySQL prior to writing CouchDB, and worked on Lotus Notes prior to that...

  • I feel old (Score:2, Informative)

    by a2wflc ( 705508 ) on Tuesday March 24, 2009 @03:12PM (#27316167)

    When I saw the title I thought "I'm old-guard". Then I read the article and JOINs are a key concept to the old-guard.

    My first few DB apps involved using a b-tree or ISAM library (or writing our own). Then the "new guys" started wanting to pay for a server that did JOINs. We did JOINs, just at the app layer and without the guaranteed consitency that a good relational design gives you. And getting a server that does it was expensive.

    I wouldn't want to go back to pre-relational server days, but am also very thankful that I did write my own DBs from the ground up. I will probably never need to use the entire experience, but can often use bits and pieces of it, and I appreciate a good key/value store.

  • Re:Laziness Rules (Score:3, Informative)

    by sl0ppy ( 454532 ) on Tuesday March 24, 2009 @03:21PM (#27316321)

    first some context. i architect data warehouses for a living. i also live in a world of building fairly specialized frameworks to deal with data warehouses architected as star and snowflake schemas. i tend spend quite a lot of time in pseudo-relational databases [wikipedia.org] that don't fully implement codd's rules [wikipedia.org].

    for fun, i like to spend some time toying with couchdb, using it for loose data warehousing, extending it, and generally enjoying the application development freedom it gives me.

    that said, let me respond to some of your points:

    Slacker DBs like CouchDB and SimpleDB, have taken off for the simple reason that most developers have absolutely mediocre database knowledge or skills, and rather than learning it's just as easy to just wave it all off as obsolete.

    map/reduce solves a specific problem in data warehousing - column based lookups given specific rules, able to be broken down into atomics and performed in massive parallel. this allows for very cheap horizontal scaling over a large dataset.

    It's no surprise that the creator of CouchDB, for instance, hadn't a clue about databases when he began his project.

    this just shows ignorance. even just a cursory scan of damien's resume [209.85.173.132] says otherwise.

  • by qoncept ( 599709 ) on Tuesday March 24, 2009 @03:25PM (#27316379) Homepage
    Right, and, boss, which one is right?

    People that haven't done it don't realize how easy it is to end up in that situation. Say, I write reports about people, and Robin writes reports about assets, whose owners are people, and puts a person's name in her table to make it faster. Someone gets married, their name changes, and now Robin's reports are wrong.
  • Re:Laziness Rules (Score:2, Informative)

    by Anonymous Coward on Tuesday March 24, 2009 @03:52PM (#27316781)

    Damien Katz, CouchDB's creator, worked at MySQL prior to writing CouchDB, and worked on Lotus Notes prior to that...

    He started work on CouchDB in 2005. Prior to that he was a Notes grunt of little significance.

    He started at MySQL in 2007.

    The point holds.

  • by Foresto ( 127767 ) on Tuesday March 24, 2009 @04:57PM (#27318271) Homepage

    For others who are interested in Berkeley-style key-value stores, check out Tokyo Cabinet [sourceforge.net].

  • by PseudoIdiot ( 1513789 ) on Tuesday March 24, 2009 @05:29PM (#27319045)
    Why in the world would you allow access to a line in a database while simultaneously allowing access to another DB with the same line of data? This is easily disallowed by properly using reference ID's, which should have been implemented during the conceptualization of the DB at the very beginning but could still easily be attached to the entire DB. Don't allow data edits without first locking that line in the database, cross-referencing the reference ID, and preventing that same reference ID, regardless of which other DB is exists on) to be modified. If you don't know how to accomplish this with Oracle, or even SQL, you do not have any business touching the database to begin with. Based on your answers, and how ridiculously they've been modded, goncept you barely understand databasing at all.
  • Re:Laziness Rules (Score:1, Informative)

    by Anonymous Coward on Tuesday March 24, 2009 @05:41PM (#27319369)

    I presume he said that because SQLite doesn't actually keep track of a column's data type. So there's nothing in the database that explicitly keeps you from writing addresses and blog posts in a column titled "Date of Birth" (which in another DB would explicitly be a date type). At least, that's the only explanation I can think of.

  • by Tupper ( 1211 ) on Wednesday March 25, 2009 @12:26AM (#27324913) Homepage
    I'll buy that: the name on a mailing label or shipment may be a different concept than the primary name associated with the account. If so, its wrong to conflate them.

Radioactive cats have 18 half-lives.

Working...