1 / 20

Open source, high performance database

Open source, high performance database. Presentation by: Chris Scheich Phone: 703-282-1636 Email: chris@10gen.com Website: www.10gen.com. Agenda. Introduction to 10gen Comparison between Mumps & MongoDB MongoDB built for Electronic Records Introduction to MongoDB MongoDB Security

elisha
Download Presentation

Open source, high performance database

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Open source, high performance database Presentation by: Chris Scheich Phone: 703-282-1636 Email: chris@10gen.com Website: www.10gen.com

  2. Agenda • Introduction to 10gen • Comparison between Mumps & MongoDB • MongoDB built for Electronic Records • Introduction to MongoDB • MongoDB Security • OSEHRA / 10gen Collaboration Effort

  3. 10gen is the company behind MongoDB. • Founded in 2007 • Dwight Merriman, Eliot Horowitz • Doubleclick, Oracle, Marklogic, HP • $73M+ in Funding • Flybridge, Sequoia, NEA, Union Square • Worldwide Expanding Team • 140+ employees • NY, Palo Alto, London, Dublin, Sydney Set the direction & contribute code to MongoDB Foster community & ecosystem Provide commercial services Provide MongoDB management services

  4. The MongoDB community and ecosystem are expanding. Community • 9,000 people participated in 23 MongoDB Days in 2011 • 42 MongoDB User Groups • Global reach with events in London, Munich, Paris, Tokyo, and Beijing Ecosystem • IaaS and PaaS partners offer Cloud hosting solutions • MongoDB Database-as-a-Service offerings available • Business Intelligence, Security, and Hadoop integration solutionsoffered by partners • Customized hardware and storage Set the direction & contribute code to MongoDB Foster community & ecosystem Provide commercial services Provide MongoDB management services

  5. 10gen provides commercial services for MongoDB. Subscriptionsdeveloper and production support, commercial license and MongoDB Subscriber Edition Set the direction & contribute code to MongoDB Foster community & ecosystem Consultingexpertise on a project basis Foster community & ecosystem Trainingfor developers and administrators Provide commercial services “MediaMathis growing fast and our data volume throughput requirements are going up very quickly. MongoDB and 10gen have been extremely helpful partners for us in scaling our data infrastructure.” Provide MongoDB management services Vince Li

  6. MongoDB is the leading NoSQL solution #2 on Indeed’s Fastest Growing Jobs JaspersoftBigData Index Demand for MongoDB, the document-oriented NoSQL database, saw the biggest spike with over 200% growth in 2011. 451 Group “MongoDB increasing its dominance” Google Searches

  7. Comparison between Mumps & MongoDB • MongoDB • Created 2009 • Document Oriented Database • Designed with latest NoSQL theory • Open Source Technology • Massive Community • Drives innovation • Cost effective • Hot technology, lots of buzz, attracts sharpest and brightest minds, large user base • Easy to find resources with MongoDB skill sets • Build from ground up for Cloud Computing Architecture • MUMPS • Created 1960 • Document / Object oriented database • Predates C and has a very different syntax and terminology • Difficult to hire people that know this technology • Expensive to maintain • Time consuming to change / adapt to new requirements • Difficult to integrate with new solutions / technologies

  8. Why MongoDB for Electronic Records • Examples: HL7, EDI, MARC, MODS, DDMS • Electronic records typically document oriented in nature: XML, JSON, Free text, or even binary • Massive variation in used fields • Sparse data problem in RBMS • Constantly evolving to support all the business cases • Volume and velocity often in Big Data scale

  9. Example HL7 in JSON {"ClinicalDocument": { "recordTarget": { "patientRole": { "patient": { "name": { "given": "Henry", "family": "Levin", "suffix": "the 7th” }, "birthTime": {"value": 19320924} }, "providerOrganization": {"name": "Good Health Clinic"} } }, "author": { "time": 20000407130000+0500, "assignedAuthor": { "assignedPerson": {"name": { "given": "Robert", "family": "Dolin", "prefix": "Dr.” } }, "representedOrganization": { "name": "Good Health Clinic” } } } }

  10. MongoDB was created to make it easy to code, scale, and manage databases. Agile and Scalable

  11. Different Assumptions • Scale horizontally over commodity hardware • RDBMSs great so keep what works • Ad hoc queries • Fully featured indexes • Secondary indexes • What doesn’t distribute well? • Long running multi-row transactions • Joins • Both artifacts of the relational data model • Do not homogenize programming interfaces • Local storage first class citizen for DB storage

  12. MongoDB is : General Purpose Rich data model Full featured indexes Sophisticated query language Easy to Use Easy mapping to object oriented code Native language drivers in all popular languages Simple to setup and manage Fast & Scalable Operates at in-memory speed wherever possible Auto-sharding built in Dynamically add / remove capacity with no downtime

  13. MongoDB is Easy to Use { title: ‘MongoDB’, contributors: [ { name: ‘Eliot Horowitz’, email: ‘eliot@10gen.com’ }, { name: ‘Dwight Merriman’, email: ‘dwight@10gen.com’ } ], model: { relational: false, awesome: true } }

  14. MongoDB is easy to use MySQL MongoDB db.contacts.save( { userName: “joeblow”, emailAddresses: [ “joe@blow.com”, “joseph@blow.com” ] } ); START TRANSACTION; INSERT INTO contacts VALUES (NULL, ‘joeblow’); INSERT INTO contact_emails VALUES ( NULL, ”joe@blow.com”, LAST_INSERT_ID() ), ( NULL, “joseph@blow.com”, LAST_INSERT_ID() ); COMMIT;

  15. MongoDB increases developer productivity

  16. Schema Free • MongoDB does not need any pre-defined data schema • Every document could have different data! {name:“will”, eyes:“blue”, birthplace:“NY”, aliases: [“bill”, “la ciacco”], loc: [32.7, 63.4], boss: ”ben”} {name:“brendan”, aliases: [“el diablo”]} {name: “jeff”, eyes: “blue”, loc: [40.7, 73.4], boss: “ben”} {name:“ben”, hat:”yes”} {name: “matt”, pizza:“DiGiorno”, height: 72, loc: [44.6, 71.3]}

  17. MongoDB is fast and scalable In-Memory Caching Better data locality Distributed Architecture Replication /HA Horizontal Scaling Relational MongoDB We just can't get any faster than the way MongoDB handles our data. Tony TamCTO, Wordnik

  18. MongoDB Security • SSL • between client and server • Intra-cluster communication • Authorization at the database level • Read Only/Read+Write/Administrator • Security Roadmap (tentative) • Pluggable authentication (PAM) 2.4 • Auditing 2.4 • Cell level security 2.6 • Common Criteria certification

  19. NoSQL is popular for development & deployment of data-centric applications. MongoDB makes it easy to code, scale, and operate NoSQL. 10gen is the company behind MongoDB

  20. Next Step • MongoDB is open source and there is no cost to download and use it • 10gen are experts in database technology • OSEHRA are experts in Healthcare solutions • Combine 10gen and OSEHRA expertise to build a working prototype that will directly benefit our Veterans Healthcare

More Related