nosql and mongodb
play

NoSQL and MongoDB 1 2 Introduction to NoSQL Based on a - PowerPoint PPT Presentation

NoSQL and MongoDB 1 2 Introduction to NoSQL Based on a presentation by Traversy Media 3 What is NoSQL? Not only SQL SQL means Relational model Strong typing ACID compliance Normalization NoSQL means more freedom or flexibility 4


  1. NoSQL and MongoDB 1

  2. 2

  3. Introduction to NoSQL Based on a presentation by Traversy Media 3

  4. What is NoSQL? Not only SQL SQL means Relational model Strong typing ACID compliance Normalization … NoSQL means more freedom or flexibility 4

  5. Relevance to Big Data Data gets bigger Traditional RDBMS cannot scale well RDBMS is tied to its data and query processing models NoSQL relaxes some of the restrictions of RDBMS to provide a better performance 5

  6. Advantages of NoSQL Handles Big Data Data Models – No predefined schema Data Structure – NoSQL handles semi- structured data Cheaper to manage Scaling – Scale out / horizonal scaling 6

  7. Advantages of RDBMS Better for relational data Data normalization Well-established query language (SQL) Data Integrity ACID Compliance 7

  8. Types of NoSQL Databases Document Databases [MongoDB, CouchDB] Column Databases [Apache Cassandra] Key-Value Stores [Redis, Couchbase Server] Cache Systems [Redis, Memcached] Graph Databases [Neo4J] Streaming Systems [FlinkDB, Storm] 8

  9. Structured/Semi-structured ID Name Email … 1 Jack jack@example.com 2 Jill jill@example.net 3 Alex alex@example.org Document 1 { “id”: 1, “name”:”Jack”, “email”: Document 2 “jack@example.com”, “address”: {“street”: “900 university ave”, “city”: “Riverside”, state: { “id”: 2, “name”: “Jill”, “email”: “CA”}, “friend_ids”: [3, 55, 123]} “jill@example.net”, “hobbies”: [“hiking”, “cooking”]} 9

  10. Columnar Data Store ID Name Email … 1 Jack jack@example.com 2 Jill jill@example.net 3 Alex alex@example.org Email ID Name … 1 Jack … 2 Jill … 3 Alex 10

  11. Key-value Stores ID Name Email … 1 Jack jack@example.com 2 Jill jill@example.net 3 Alex alex@example.org 1 à Jack jack@example.com … à 2 Jill jill@example.net … à 3 Alex alex@example.org … 11

  12. Document Database MongoDB 12

  13. Document Data Model Relational model (RDBMS) Database Relation (Table) : Schema Document 1 Record (Tuple) : Data { “id”: 1, “name”:”Jack”, “email”: “jack@example.com”, “address”: {“street”: Document Model “900 university ave”, “city”: “Riverside”, state: “CA”}, “friend_ids”: [3, 55, 123]} Database Collection : No predefined schema Document : Schema+data No need to define/update schema No need to create collections 13

  14. Document Format MongoDB natively works with JSON documents For efficiency, documents are stored in a binary format called BSON (i.e., binary JSON) Like JSON, both schema and data are stored in each document 14

  15. How to Use MongoDB Install: Check the MongoDB website https://docs.mongodb.com/manual/installation/ Create collection and insert a document db.users.insert({name: “Jack”, email: “jack@example.com”}); Retrieve all/some documents db.users.find(); db.users.find({name: “Jack”}); Update db.users.update({name: "Jack"}, {$set: {hobby: "cooking"}}); updateOne, updateMany, replaceOne Delete db.users.remove({name: "Alex"}); deleteOne, deleteMany 15 https://docs.mongodb.com/manual/crud/

  16. Schema Validation You can still explicitly create collections and enforce schema validation db.createCollection("students", { validator: { $jsonSchema: { bsonType: "object", required: [ "name", "year", "major", "address" ], properties: { name: { bsonType: "string", description: "must be a string and is required" }, … } }} } 16 https://docs.mongodb.com/manual/core/schema-validation/

  17. Storage Layer Prior to MongoDB 3.2, only B-tree was available in the storage layer To increase its scalability, MongoDB added LSM Tree in later versions after it acquired WiredTiger Override default configuration mongod --wiredTigerIndexConfigString "type=lsm,block_compressor=zlib" 17

  18. LSM Vs B-tree https://github.com/wiredtiger/wiredtiger/wiki/Btree-vs-LSM 18

  19. Indexing Like RDBMS, document databases use indexes to speed up some queries MongoDB uses B-tree as an index structure 19 https://docs.mongodb.com/manual/indexes/

  20. Index Types Default unique _id index Single field index db.collection.createIndex({name: -1}); Compound index (multiple fields) db.collection.createIndex( { name: 1, score: -1}); Multikey indexes (for array fields) Creates an index entry for each value 20 https://docs.mongodb.com/manual/indexes/

  21. Index Types Geospatial index (for geospatial points) Uses geohash to convert two dimensions to one dimension 2d indexes: For Euclidean spaces 2d sphere: spherical (earth) geometry Works with multikey indexes for multiple locations (e.g., pickup and dropoff locations for taxis) Text Indexes (for string fields) Automatically removes stop words Stems the works to store the root only Hashed Indexes (for point lookups) 21

  22. Geohashes 22

  23. Additional Index Features Unique indexes: Rejects duplicate keys Sparse Indexes: Skips documents without the index field In contrast, non-sparse indexes assume a null value if the index field does not exist Partial indexes: Indexes only a subset of records based on a filter. db.restaurants.createIndex( { cuisine: 1, name: 1 }, { partialFilterExpression: { rating: { $gt: 5 } } } ) 23

  24. Comparison of data types Min key (internal type) Null Numbers (32-bit integer, 64-bit integer, double) Symbol, String Object Array Binary data Object ID Boolean Date, timestamp Regular expression Max key (internal type) 24 https://docs.mongodb.com/v3.6/reference/bson-type-comparison-order/

  25. Comparison of data types Numbers: All converted to a common type Strings Alphabetically (default) Collation (i.e., locale and language) Arrays <: Smallest value of the array >: Largest value of the array Empty arrays are treated as null Object Compare fields in the order of appearance Compare <name,value> for each field 25

  26. Distributed Processing Two methods for distributed processing Replication (Similar to MySQL) Sharding (True horizontal scaling) Replication Sharding https://docs.mongodb.com/manual/replication/ https://docs.mongodb.com/manual/sharding/ 26

  27. Distributed Index Structure Log-structured Merge Tree (LSM) 27

  28. Big Data Indexing Hadoop and Spark are good in scanning large files We would like to speed up point and range queries on big data for some queries HDFS limitation: Random updates are not allowed Log-structured Merge Tree (LSM-Tree) is adopted to address this problem. 28

  29. RDBMS Indexing New record Index Log 29

  30. Index Update Randomly updated disk page(s) New record Append a disk page 30

  31. LSM Tree Key idea: Use the log as the index Regularly: Merge the logs to consolidate the index (i.e., remove redundant entries) Flush Merge New Log records Log Bigger log Log Log Log 31 O’Neil, Patrick, Edward Cheng, Dieter Gawlick, and Elizabeth O’Neil. "The log-structured merge-tree (LSM-tree)." Acta Informatica 33, no. 4 (1996): 351-385.

  32. LSM in Big Data First major application: BigTable (Google) Citations 120 100 80 BigTable paper 60 40 20 0 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 9 9 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 Citations First report from Google mentioning LSM 32

  33. LSM in Big Data Buffer data in memory (memory component) Flush records to disk into an LSM as a disk component (sequential write) Disk components are sorted by key Compact (merge) disk components in the background (sequential read/write) 33

  34. Conclusion MongoDB is a document database that is geared towards high update rates and transactional queries It adopts JSON as a data model It provides the flexibility to insert any kind of data without schema definition LSM Tree is used for indexing Weak types are handled using a special comparison method for all types 34

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend