MongoDB - Ruby document store that doesn't rhyme with ouch

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    Notes on slide 1

























    High volume, lower value. No transactions. Drivers for several languages. All network based for speed (instead of REST).
    Uses BSON for storage of objects and for building queries. Binary-encoded serialization like JSON. Allows for some representations that JSON does not.
    BSON seems “blob-like” but mongo speaks BSON and can “reach in” to documents.
    Powerful query language, with query optimizer. You can drop down to javascript also.
    Supports master/slave.

    Talk about harmony and how we are abusing mysql for key/value meta data on pages.
    Talk about capped collections and how they work like memcache. Also, how they are used for replication even.





    _id’s can be any type, just have to be unique in collection



    find always returns a cursor that you can keep iterating through





    Don’t have to typecast with mongo as it “knows” types but form submissions are always strings so typecasting has its benefits.
    * note required
    * note length
    * note numeric
    * note index

    multikey - automatically index arrays of object values
    ensure index on tags or _keywords



    23 Favorites

    MongoDB - Ruby document store that doesn't rhyme with ouch - Presentation Transcript

    1. MongoDB Ruby friendly document storage that doesn’t rhyme with ouch. Dallas.rb
    2. Wynn Netherland @pengwynn http://squeejee.com http://locomotivation.com
    3. Not every data problem looks like this
    4. So why do so many databases look like this?
    5. and this?
    6. When are RDBMS less than ideal? Your data is stored and retrieved mainly by primary key, without complex joins. You have a non-trivial amount of data, and the thought of managing lots of RDBMS shards and replication failure scenarios gives you the fear. http://www.metabrew.com/article/anti-rdbms-a-list-of-distributed-key- value-stores/
    7. Enter key value stores
    8. Some of the players Project Voldemort Ringo Scalaris Kai Dynomite MemcacheDB ThruDB CouchDB Cassandra HBase Hypertable Tokyo Cabinet/Tyrant http://www.metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/
    9. Tokyo Cabinet: Popular with Rubyists, Big in Japan
    10. Go kick the tires • Lightning fast • Works best for at objects • Tokyo Tyrant for network access http://www.igvita.com/2009/02/13/tokyo-cabinet-beyond-key-value- store/
    11. More document-oriented solutions
    12. CouchDB Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database accessible via a RESTful HTTP/JSON API. http://couchdb.apache.org/
    13. Erlang + Javascript
    14. Map + reduce
    15. Very cool
    16. Plenty o’ Ruby to go around
    17. Ruby libraries for CouchDB • CouchRest • Basic model • RelaxDB • CouchPotato • CouchFoo • ActiveCouch http://www.slideshare.net/brianthecoder/couchdb
    18. Throw out everything you learned about DB design
    19. SQL CouchDB Prede ned, explicit schema Dynamic, implicit schema Collection of named documents with varying Uniform tables of data structure Normalized. Objects spread across tables. Denormalized. Docs usually self contained. Data Duplication reduced. often duplicated. Must know schema to read/write a complete Must know only document name object Dynamic queries of static schemas Static queries of dynamic schemas http://damienkatz.net/files/What is CouchDB.pdf
    20. SQL CouchDB Prede ned, explicit schema Dynamic, implicit schema Collection of named documents with varying Uniform tables of data structure Normalized. Objects spread across tables. Denormalized. Docs usually self contained. Data Duplication reduced. often duplicated. Must know schema to read/write a complete Must know only document name object Dynamic queries of static schemas Static queries of dynamic schemas
    21. In walks Mongo
    22. INTRO
    23. INTRO • Built For Speed • Document/Collection Oriented • Dynamic Queries and Indexes • Replication and Failover
    24. GREAT FOR • Websites • Caching • High volume, low value • High scalability • Storage of program objects and json
    25. NOT AS GREAT FOR • Highly transactional • Ad-hoc business intelligence • Problems requiring SQL
    26. INSTALLATION • mkdir -p /data/db • download pre-built for OSX and unzip to /usr/local/ • cp -R /usr/local/pathtomongo/bin /usr/local/bin
    27. DATABASE • same concept as mysql • made up of collections
    28. COLLECTION • Think table, but with no schema • For grouping documents into smaller query sets (speed) • Eachtop level entity in your app would have its own collection (users, articles, etc.) • Indexable by one or more key
    29. DOCUMENT • Stored in a collection, think record or row • Can have _id key that works like primary keys in MySQL • Two options for relationships: subdocument or db reference
    30. STORAGE (BSON) { author: 'joe', created: Date('03-28-2009'), title: 'Yet another blog post', text: 'Here is the text...', tags: [ 'example', 'joe' ], comments: [ { author: 'jim', comment: 'I disagree' }, { author: 'nancy', comment: 'Good post' } ] } http://www.mongodb.org/display/DOCS/BSON
    31. THAT LOOKS LIKE JSON Where’s the Ruby?
    32. QUERYING • db.collection.find({‘first_name’: ‘John’}) # finds all Johns • db.collection.find({‘first_name’: /^J/}) # regex • db.collection.find_first({‘_id’:1}) # finds first with _id of 1 • db.collection.find({‘age’: {‘$gt’: 21}}) # finds possible drinkers • db.collection.find({‘author.first_name’:‘John’}) # subdocument • db.collection.find({$where:‘this.age >= 6 && this.age <= 18’})
    33. MORE QUERYING • $in, $nin, $all, $ne, $gt, $gte, $lt, $lte, $size, $where • :fields (like :select in active record) • :limit, :offset for pagination • :sort ascending or descending [[‘foo’, 1], [‘bar’, -1]] • count and group (uses map/reduce)
    34. HOW DO YOU USE IT WITH RUBY • mongo-ruby-driver http://github.com/mongodb/mongo-ruby- driver • activerecord adapter http://github.com/mongodb/ activerecord-mongo-adapter • mongorecord http://github.com/mongodb/mongo- activerecord-ruby
    35. NUNEMAPPER (MONGOMAPPER) • Mongo is not MySQL • DSL for modeling domain should also teach you Mongo • It sounded fun • Almost finished and sitting in private GitHub repo
    36. FEATURES • Typecasting • Create and Update with single or multiple • Callbacks(ActiveSupport Callbacks) • Delete and Destroy and _all counterparts • Validations (using my fork of validatable) • Find: id, ids, :all, :first, :last • Connection and database • Associations (incomplete) can differ per document
    37. EXAMPLE class User include MongoMapper::Document key :name, String, :required => true, :length => 5..100 key :email, String, :required => true, :index => true key :age, Integer, :numeric => true key :active, Boolean, :default => true one :address many :articles end class Address include MongoMapper::Document key :street, String key :city, String key :state, String, :length => 2 key :zip, Integer, :numeric => true, :length => 5 end
    38. RANDOM AWESOMENESS • Capped collections (think memcache, actually used for replication) • Upserts db.collection.update({‘_id’:1}, {‘$inc’:{‘views’:1}}) • Multikeys (think tagging and full text search) • GridFS and auto-sharding
    39. John Nunemaker http://orderedlist.com http://railstips.org Links http://www.10gen.com http://mongodb.com
    40. Wynn Netherland @pengwynn http://squeejee.com http://locomotivation.com

    + Wynn NetherlandWynn Netherland, 5 months ago

    custom

    4251 views, 23 favs, 4 embeds more stats

    Overview of MongoDB at Dallas.rb Ruby group. Thanks more

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 4251
      • 3388 on SlideShare
      • 863 from embeds
    • Comments 0
    • Favorites 23
    • Downloads 130
    Most viewed embeds
    • 851 views on http://locomotivation.squeejee.com
    • 9 views on http://www.alexhoffman.us
    • 2 views on http://squeejee.com
    • 1 views on http://posterous.com

    more

    All embeds
    • 851 views on http://locomotivation.squeejee.com
    • 9 views on http://www.alexhoffman.us
    • 2 views on http://squeejee.com
    • 1 views on http://posterous.com

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories