1 / 35

NoSQL Part 1: Basic Queries

MIS2502: Data Analytics. NoSQL Part 1: Basic Queries. Siddharth Bhattacharya Siddharth.bhattacharya@temple.edu https://community.mis.temple.edu/sbhattacharya. Where we are…. Now we’re here…. Data entry. Transactional Database. Data extraction. Analytical Data Store. Data analysis.

ffleming
Download Presentation

NoSQL Part 1: Basic Queries

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. MIS2502: Data Analytics NoSQL Part 1: Basic Queries Siddharth BhattacharyaSiddharth.bhattacharya@temple.eduhttps://community.mis.temple.edu/sbhattacharya

  2. Where we are… Now we’re here… Data entry Transactional Database Data extraction Analytical Data Store Data analysis Stores real-time transactional data in a relational or NoSQL database Stores historical transactional and summary data

  3. What is NoSQL? • Stands for “Not Only SQL” • Non-relational data storage systems • Supports unstructured format (no fixed schema)

  4. Why RDBMS? • Relational Databases – popular and commonly used • Low Cost RDBMS alternatives (PostgreSQL, MySQL, SQLLite) • Supports Joins • across multiple tables allowing for normalized • forms of data to be stored once

  5. How does Big Data affect DBMS • Developers begin to front RDBMS with memcache or integrate other caching mechanisms within the application (ie. Ehcache) • Vertical Scaling • Scaling up implies a centralized approach that relies on bigger and bigger servers. • Horizontal Scaling • Scaling out implies a distributed approach that leverages many standard, commodity physical or virtual servers.

  6. Scaling RDBMS - Sharding • Partition or sharding • Scales well for both reads and writes • Not transparent, application needs to be partition-aware • Can no longer have relationships/joins across partitions • Loss of referential integrity across shards

  7. The Perfect Storm • Large datasets, acceptance of alternatives, and dynamically-typed data has come together in a perfect storm • Not a backlash/rebellion against RDBMS • NOSQL is a response to growing scale of databases and falling hardware prices

  8. Why NoSQL? • Supports semi-structured (unstructured) data • Unique data type extensions can be easilyintegrated into existing collections • Handling “Big” data with better performance • RDBMS normalization and joins are powerful, but add up in cost • Operational issues (scale, performance and availability)

  9. Should I be using NoSQL Databases? NoSQL Data storage systems makes sense for applications that need to deal with very very large semi-structured data Log Analysis Social Networking Feeds Most of us work on organizational databases, which are not that large and have low update/query rates regular relational databases are the correct solution for such applications

  10. Flexible Data Model ColumnFamily: Rockets Key Value Name Value 1 name Rocket-Powered Roller Skates toon Ready, Set, Zoom inventoryQty 5 brakes false 2 Name Value name Little Giant Do-It-Yourself Rocket-Sled Kit toon Beep Prepared inventoryQty 4 brakes false Name Value 3 name Acme Jet Propelled Unicycle toon Hot Rod and Reel inventoryQty 1 wheels 1

  11. RDBMS vs NoSQL

  12. CAP Theorem • Three properties of a system: consistency, availability and partitions • You can have at most two of these three properties for any shared-data system • To scale out, you have to partition. That leaves either consistency or availability to choose from • In almost all cases, you would choose availability over consistency

  13. Eventual Consistency • When no updates occur for a long period of time, eventually all updates will propagate through the system and all the nodes will be consistent • For a given accepted update and a given node, eventually either the update reaches the node or the node is removed from service • Known as BASE (Basically Available, Soft state, Eventual consistency), as opposed to ACID in relational databases (Atomicity, Consistency, Isolation Durability)

  14. Categories of NoSQL • Key-Value Data Store • Stores data in unique key-value pairs • Example: Amazon DynamoDB • Document Store • Stores data using JSON, XML, or BSON documents • Example: MongoDB, Couchbase • Column Database • Uses flat structure, but with keys stored in columns rather than rows • Example: Hbase • Graph Database • Uses edges and nodes to represent and store data • Example: Neo4j, JanusGraph

  15. NoSQL vs RDBMS – How to pick? • Nature of data • Row/column (structured) • Unstructured, complex which needs nesting • Schema • Static: RDBMS, Dynamic: NoSQL • Self contained: NoSQL, Joins: RDBMS • Flexibility of query • RDBMS: Joins allow for flexibility • NoSQL: Duplication of data, implement joins in middle-ware

  16. Summary Comparison Relational Database NOSQL Unstructured and unpredictable data No declarative query language Data represented by objects Each object can contain rows from several tables Key-Value pair storage, Column Store, Document Store, Graph databases Lot of duplication Flat structure / fast read write Schemaless Scale out Eventual Consistency • Structured and organized data • Structured query language (SQL) • Interrelated tables • Information stored in rows and columns • Tables reference each other through keys • Minimizes storage space • Complexity in data lookups • Rigid schemas • Scale up • ACID

  17. What is MongoDB? • MongoDB is • Created by 10gen (term coined from humongous) • an open source, document-oriented database designed • stores BSON (JSON-like) documents • Schema-less

  18. MongoDB Database Database Collection Collection Document Document Document Document Document

  19. Connecting to a MongoDB Server Before you open the compass, copy the connection string below: mongodb+srv://<username>:<password>@db1-8csg8.mongodb.net/test Click yes and type in your username and password. You can use the same username and password you used to connect MySQL.

  20. Dataset salesdb.sales JSON array JSON object

  21. Aggregation Tab Aggregation tap allows us to create pipeline stages, which specifies multiple stages of queries, to return a subset of documents from collection. Select a type of stage Add a new stage

  22. Return the Specified Fields • Select $project stage and copy the following expression into the panel: { items: 1, storeLocation: 1, customer: 1 } • The operation corresponds to the following SQL statement: SELECT items, storeLocation, customer FROM salesdb.sales; The _id field is, by default, included in the output documents. You can remove by setting the field to 0. Ref: https://docs.atlas.mongodb.com/data-explorer/cloud-agg-pipeline

  23. Specify Equality Condition • $match stage filters the documents to pass only the • documents that match the specified condition(s) • Syntax : $match: { <field1>: <value1>, ... } • The below code corresponds to the following SQL statement: { storeLocation: "Seattle"} SELECT items, storeLocation, customer FROM salesdb.sales WHERE storeLocation = “Seattle”; $match work as WHERE statement in a SQL query.

  24. Compass vs MongoDB • Compass $project: { items: 1, storeLocation: 1, customer: 1 } $match: { storeLocation: "Seattle"} • MongoDB Click Export To Language to see the code. db.sales.aggregate{ [{ $project: {items: 1,storeLocation:1,customer:1}}, { $match: {storeLocation: "Seattle"}}] }

  25. Specify Conditions Using Operators • Syntax : $match: { <field1>: { <operator1>: <value1> }, ... } For example, $match: { price: { $gt: 200 } } corresponds to the following SQL statement: SELECT * FROM MIS2502.sales WHERE price > 200;

  26. Does order matter? • What happens when we type in the following code? What happens when we switch the order of $project and $match? $ project: { items: 1, storeLocation: 1, customer: 1 } $ match: { price: { $gt: 200 } } Unlike SQL, in the aggregation pipeline, each stage transforms the documents as they pass through the pipeline. Therefore, order matters!!!

  27. AND and OR Conditions • Syntax : $match: { $and(or) : [ { <condition1> }, { <condition2> } , …} ] } $andand$or operator performs a logical operation on an array of two or more <conditions>. $match: { $and: [ { price: { $gt: 180} } , { storeLocation: "Seattle"} ]} The operation corresponds to the following SQL statement: SELECT * FROM salesDB.sales WHERE price > 180 AND storeLocation = “Seattle”;

  28. Sort Results Using $sort stage, we can specify the sort order of the returned documents. $sort: { price: 1 } The operation corresponds to the following SQL statement: SELECT * FROM salesDB.sales ORDER By price ASC; We can set the field to 1 (-1), to specify ascending (descending) order for a field,.

  29. Limit Results Using $limit stage, we can specify the number of the returned documents. $limit: 3 The operation corresponds to the following SQL statement: SELECT * FROM salesDB.sales LIMIT 3; So, what may happen if we put $limit on the first stage?

  30. Aggregation $group documents by some specified expression and outputs to the next stage a document for each distinct grouping • Syntax : $group: { _id: <expression>, <field1>: { <accumulator1> : <expression1> }, ... } $group: { _id: "$purchaseMethod", totalprice: { $sum: "$price"} } corresponds to the following SQL statement: SELECT purchaseMethod, sum(price) as totalprice FROM salesDB.sales Group by purchaseMethod;

  31. Aggregation Similar to GROUP BY in SQL, the output documents can contain computed filed $group: { _id: "$purchaseMethod", totalprice: { $sum: "$price"}, avgprice: { $avg: "$price"}, maxprice: { $max: "$price"}, number: { $sum:1} } corresponds to the following SQL statement: SELECT purchaseMethod, sum(price) as totalprice, avg(price) as avgprice, max(price) as maxprice, count(price) as number FROM salesDB.sales Group by purchaseMethod; In $group, we use $sum: 1 to count the number of documents.

  32. Group by null Grouping _id with null will calculate the total price and the average quantity as well as counts for all documents in the collection. $group: { _id: null, totalprice: { $sum: "$price"}, avgprice: { $avg: "$price"}, maxprice: { $max: "$price"}, number: { $sum:1} } corresponds to the following SQL statement: SELECT sum(price) as totalprice, avg(price) as avgprice, max(price) as maxprice, count(price) as number FROM salesDB.sales;

  33. MySQL vs MongoDB Query • Example.. SELECTpurchaseMethod, sum(price) as totalprice FROMsalesDB.sales WHEREcouponUsed = FALSE GROUP BYpurchaseMethod ORDER BY sum(price) ASC LIMIT 2; db.sales.aggregate( [ { $match: { couponUsed: FALSE }}, { $group: { _id: "$purchaseMethod", totalprice: { $sum: "$price" }}}, { $sort: { totalprice: 1 }}, { $limit: 2 } ])

  34. Summary • Given a semi structured database, we now should be able to create a NoSQL statement to answer a question • Understand how each stage in aggregation tap works and the relationship with SQL keywords • $project • $match • $sort • $limit • $group

  35. In Class Activity #7

More Related