SlideShare uma empresa Scribd logo
1 de 62
Document-Oriented
Databases in Depth
Dr. Fabio Fumarola
Outline
• Introduction
• What is a Document
• DocumentDBs
• MongoDB
– Data Model
– Indexes
– CRUD
– Scaling
– Pros and Cons
2
Document DB introduction
• Documents are the main concept.
• A Document-oriented database stores and retrieves
documents (XML, JSON, BSON and so on).
• Documents are:
– Self-describing
– Hierarchical tree data structures (maps, collection and
scalar values)
3
What is a Document DB?
• Document databases store documents in the value
part of the key-value store where:
– Documents are indexed using a BTree
– and queried using a JavaScript query engine
4
What is a Document DB?
• Documents have differences in their attributes
• But belongs to the same collection
• This is different from relational databases where columns:
– Stores the same type of values
– Or null
5
{
"name": "Phil",
"age": 26,
"status": "A"
}
{
"name": "Phil",
"age": 26,
"status": "A",
"citiesVisited" : ["Chicago", "LA", "San
Francisco"]
}
RDBMS vs Document DB:
Terminology
6
Document DBs
• MongoDB
• CouchDB
• RethinkDB
• RavenDB
7
Mongo DB
8
Documents: Data Model
9
Documents: Data Model
• Data has a flexible schema
• This helps in matching document to objects
– Each document can match the fields of a document also if
with different structure
• Data is represented as a map
• Relations can be represented as: references and
embedded documents
10
Documents: Structure
References
11
Documents: Structure Embedded
12
Documents: Write Operations
• Writes are atomic at the document level
– A Denormalized data model facilitates atomic write
operations.
– Normalizing the data over multiple collection would
require multiple write operation that are not atomic.
13
Documents: Growth
• Each time a document is updated the modification
are done changing affected attributes
• Each document has a maximum size of 16MB
• If the document size exceeds MongoDB relocates the
document on disk.
• In MongoDB 3.0 this problem is minimized using the
Power of 2 Sized Allocation
14
Documents: ObjectId
• ObjectId is a 12-byte BSON type, constructed using:
– a 4-byte value representing the seconds since the Unix
epoch,
– a 3-byte machine identifier,
– a 2-byte process id, and
– a 3-byte counter, starting with a random value.
• It is an interesting approach to generate keys
considering that documents are retrieved using
document queries
15
Documents: Indexing
16
Documents: Indexing
• Indexes allows efficient queries on MongoDB.
• They are used to limit the number of documents to
inspect
• Otherwise, it has to scan every document in a
collection.
• By default MongoDB create indexes only on the _id
field
17
Documents: Indexing
• Indexes are created using B-tree and stores data of
fields ordered by values.
• In addition MongoDB returns sorted results by using
the index.
18
Documents: Indexing
19
Documents: Index Types
• Single Field
20
Documents: Index Types
• Compound Index: indexed by attributes (left to right)
21
Documents: Index Types
Multikey Index:
•to index content in arrays
22
Documents: Index Types
• Geospatial Index: 2d and 2sphere indexes
• Text Indexes: performs tokenization, stopwords
removal and stemming.
• Hashed Indexes: used to provide an hash based
sharding
23
Documents: CRUD
24
Query a Collection
25
Queries
• Queries specify criteria, or condition that identify
documents
• A query may include projections to specify the fields
to return.
• It is possible to impose limits, skips and sort orders.
26
Query Interface
27
The same query in SQL
Query Behavior
• All queries in MongoDB address a single collection.
• We impose limits, skips, and sort orders.
• The order of documents returned by a query is not defined
unless you specify a sort().
• Operations that modify existing documents (i.e. updates) use
the same query syntax as queries to select documents to
update.
• In aggregation pipeline, the $match pipeline stage provides
access to MongoDB queries.
28
Query Statements
29
Projections
30
Cursors
• Each Query like db.collection.find() returns a cursor
• To access the documents, you need to iterate the
cursor.
• By default MongDB closes a cursor
– after 10 minutes of inactivity
– or if the client has exhausted the cursor
31
var myCursor = db.inventory.find().addOption(DBQuery.Option.noTimeout);
Data Modification
• Data modification refers to operations that create,
update, or delete data. In MongoDB.
• These operations modify the data of a single
collection.
• For the update and delete operations, it is possible
to specify the criteria to select the documents to
update or remove.
32
Insert
33
Which corresponds to the SQL query
Update
34
Update: Example
35
Update Behavior
• By default, the db.collection.update() method updates a
single document.
• However, with the multi option, update() can update all
documents in a collection.
• If the update() method includes upsert: true and no
documents match the query portion of the update operation,
then the update operation creates a new document.
36
Remove
37
Remove Behavior
• By default, db.collection.remove() method removes
all documents that match its query.
• However, the method can accept a flag to limit the
delete operation to a single document.
38
Write Concern
• There are different levels of guarantee for writes
• When inserts, updates and deletes have a weak write
concern, write operations return quickly.
• In some failure cases, write operations issued with weak write
concerns may not persist.
• With stronger write concerns, clients wait after sending a
write operation for MongoDB to confirm the write
operations.
39
Unacknowledged: Default Write
40
Acknowledged
• This is defined in the drivers
41
Journaled
• Operation are acknowledges only after operations are saved
to the journal.
42
Replica Acknowledged
43
Scaling
44
Scaling
• The idea of scaling is to add more node to the cluster
of nodes.
• There are two different context to consider:
– Heavy reads
– Heavy writes
45
Scaling: Heavy Reads
• Scaling here can be achieved by adding more read slaves
• All the reads can be directed to the slaves.
• When a node is added it will sync with the other nodes.
• The advantage of this setting is that we do not need to stop
the cluster.
46
rs.add(“mongo_address:27017”)
Data Replication
47
Automatic Failover
48
Scaling: Heavy Writes
• We can start using the Sharding feature.
• Sharding, or horizontal scaling divides the data set
and distributes the data over multiple servers.
• Each shard is an independent database, and
collectively, the shards make up a single logical
database.
49
Sharding
50
Sharding in MongoDB
• Shard: store the data
• Query Routers: interface to
client and direct queries
• Config Server: store
cluster’s metadata.
51
Range Based Sharding
• MongoDB divides the data set into ranges determined by the
shard key values to provide range based partitioning.
52
Hash Based Sharding
• MongoDB computes a hash of a field’s value, and then uses
these hashes to create chunks
53
Performance Comparison
• Range based partitioning supports more efficient range
queries.
• However, range based partitioning can result in an uneven
distribution of data.
• Hash based partitioning, by contrast, ensures an even
distribution of data at the expense of efficient range queries.
54
Other DocumentDBs
55
CouchDB
• Written in Erlang.
• Documents are stored using JSON.
• The query language is in Javascript and supports MapReduce
integration.
• One of its distinguishing features is multi-master replication.
• ACID: It implements a form of Multi-Version Concurrency
Control (MVCC) in order to avoid the need to lock the
database file during writes.
• CouchDB does not guarantees (eventual) consistency to be
able to provide both availability and partition tolerance.
56
CouchDB: Features
• Master-Master Replication - Because of the append-
only style of commits.
• Reliability of the actual data store backing the DB
(Log Files)
• Mobile platform support. CouchDB actually has
installs for iOS and Android.
• HTTP REST JSON interaction only. No binary protocol
57
RethinkDB
• The RethinkDB server is written in C++ and runs on
32-bit and 64-bit Linux systems.
• It is a JSON based database.
• It is characterized by push update queries.
• It supports a MapReduce style API, and geospatial
queries.
58
r.table('tv_shows').insert([{ name: 'Star Trek TNG', episodes: 178 },
{ name: 'Battlestar Galactica', episodes: 75 }])
RavenDB
• It is a DocumentDB written in C#
59
Document Store: Advantages
• Documents are independent units
• Application logic is easier to write. (JSON).
• Schema Free:
– Unstructured data can be stored easily, since a document
contains whatever keys and values the application logic
requires.
– In addition, costly migrations are avoided since the
database does not need to know its information schema in
advance.
60
Suitable Use Cases
• Event Logging: where we need to store different types of
event (order_processed, customer_logged).
• Content Management System: because the schema-free
approach is well suited
• Web analytics or Real-Time Analytics: useful to update
counters, page views and metrics in general.
61
When Not to Use
• Complex Transactions: when you need atomic cross-
document operations, but we can use RavenDB or RethinkDB
• Queries against Varying Aggregate Structure: that is when
the structure of your aggregates vary because of data
continuous data evolutions
62

Mais conteúdo relacionado

Mais procurados

Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
Derek Stainer
 
6 Data Modeling for NoSQL 2/2
6 Data Modeling for NoSQL 2/26 Data Modeling for NoSQL 2/2
6 Data Modeling for NoSQL 2/2
Fabio Fumarola
 

Mais procurados (20)

Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
 
Graph based data models
Graph based data modelsGraph based data models
Graph based data models
 
NoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and WhereNoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and Where
 
Introduction to NoSQL
Introduction to NoSQLIntroduction to NoSQL
Introduction to NoSQL
 
An Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDBAn Introduction To NoSQL & MongoDB
An Introduction To NoSQL & MongoDB
 
SQL vs. NoSQL Databases
SQL vs. NoSQL DatabasesSQL vs. NoSQL Databases
SQL vs. NoSQL Databases
 
NOSQL vs SQL
NOSQL vs SQLNOSQL vs SQL
NOSQL vs SQL
 
Non relational databases-no sql
Non relational databases-no sqlNon relational databases-no sql
Non relational databases-no sql
 
MongoDB
MongoDBMongoDB
MongoDB
 
Graph databases
Graph databasesGraph databases
Graph databases
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Introduction to Graph Databases
Introduction to Graph DatabasesIntroduction to Graph Databases
Introduction to Graph Databases
 
Mongo db intro.pptx
Mongo db intro.pptxMongo db intro.pptx
Mongo db intro.pptx
 
6 Data Modeling for NoSQL 2/2
6 Data Modeling for NoSQL 2/26 Data Modeling for NoSQL 2/2
6 Data Modeling for NoSQL 2/2
 
Mongo DB Presentation
Mongo DB PresentationMongo DB Presentation
Mongo DB Presentation
 
Basics of MongoDB
Basics of MongoDB Basics of MongoDB
Basics of MongoDB
 
Introduction to mongodb
Introduction to mongodbIntroduction to mongodb
Introduction to mongodb
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
introduction to NOSQL Database
introduction to NOSQL Databaseintroduction to NOSQL Database
introduction to NOSQL Database
 
Key-Value NoSQL Database
Key-Value NoSQL DatabaseKey-Value NoSQL Database
Key-Value NoSQL Database
 

Destaque

Types of databases
Types of databasesTypes of databases
Types of databases
PAQUIAAIZEL
 
Common MongoDB Use Cases
Common MongoDB Use Cases Common MongoDB Use Cases
Common MongoDB Use Cases
MongoDB
 
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
Peter O'Kelly
 
Mongo db – document oriented database
Mongo db – document oriented databaseMongo db – document oriented database
Mongo db – document oriented database
Wojciech Sznapka
 
3 Git
3 Git3 Git

Destaque (20)

NoSQL databases pros and cons
NoSQL databases pros and consNoSQL databases pros and cons
NoSQL databases pros and cons
 
Types of databases
Types of databasesTypes of databases
Types of databases
 
7. Key-Value Databases: In Depth
7. Key-Value Databases: In Depth7. Key-Value Databases: In Depth
7. Key-Value Databases: In Depth
 
Graph database Use Cases
Graph database Use CasesGraph database Use Cases
Graph database Use Cases
 
MongoDB Schema Design
MongoDB Schema DesignMongoDB Schema Design
MongoDB Schema Design
 
Common MongoDB Use Cases
Common MongoDB Use Cases Common MongoDB Use Cases
Common MongoDB Use Cases
 
MongoDB Schema Design: Four Real-World Examples
MongoDB Schema Design: Four Real-World ExamplesMongoDB Schema Design: Four Real-World Examples
MongoDB Schema Design: Four Real-World Examples
 
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
Revisiting Open Document Format and Office Open XML: The Quiet Revolution Con...
 
MapReduce and NoSQL
MapReduce and NoSQLMapReduce and NoSQL
MapReduce and NoSQL
 
NoSQL Matters 2013 - Introduction to Map Reduce with Couchbase 2.0
NoSQL Matters 2013 - Introduction to Map Reduce with Couchbase 2.0NoSQL Matters 2013 - Introduction to Map Reduce with Couchbase 2.0
NoSQL Matters 2013 - Introduction to Map Reduce with Couchbase 2.0
 
Nosql
NosqlNosql
Nosql
 
Mongo db – document oriented database
Mongo db – document oriented databaseMongo db – document oriented database
Mongo db – document oriented database
 
Hbase an introduction
Hbase an introductionHbase an introduction
Hbase an introduction
 
10b. Graph Databases Lab
10b. Graph Databases Lab10b. Graph Databases Lab
10b. Graph Databases Lab
 
8. column oriented databases
8. column oriented databases8. column oriented databases
8. column oriented databases
 
9b. Document-Oriented Databases lab
9b. Document-Oriented Databases lab9b. Document-Oriented Databases lab
9b. Document-Oriented Databases lab
 
8b. Column Oriented Databases Lab
8b. Column Oriented Databases Lab8b. Column Oriented Databases Lab
8b. Column Oriented Databases Lab
 
3 Git
3 Git3 Git
3 Git
 
8a. How To Setup HBase with Docker
8a. How To Setup HBase with Docker8a. How To Setup HBase with Docker
8a. How To Setup HBase with Docker
 
10. Graph Databases
10. Graph Databases10. Graph Databases
10. Graph Databases
 

Semelhante a 9. Document Oriented Databases

Semelhante a 9. Document Oriented Databases (20)

MongoDB_ppt.pptx
MongoDB_ppt.pptxMongoDB_ppt.pptx
MongoDB_ppt.pptx
 
No sql Database
No sql DatabaseNo sql Database
No sql Database
 
MongoDB
MongoDBMongoDB
MongoDB
 
MongoDB
MongoDBMongoDB
MongoDB
 
Mongo DB
Mongo DB Mongo DB
Mongo DB
 
TechEd AU 2014: Microsoft Azure DocumentDB Deep Dive
TechEd AU 2014: Microsoft Azure DocumentDB Deep DiveTechEd AU 2014: Microsoft Azure DocumentDB Deep Dive
TechEd AU 2014: Microsoft Azure DocumentDB Deep Dive
 
MongoDB using Grails plugin by puneet behl
MongoDB using Grails plugin by puneet behlMongoDB using Grails plugin by puneet behl
MongoDB using Grails plugin by puneet behl
 
Mongo db
Mongo dbMongo db
Mongo db
 
Introduction to MongoDB Basics from SQL to NoSQL
Introduction to MongoDB Basics from SQL to NoSQLIntroduction to MongoDB Basics from SQL to NoSQL
Introduction to MongoDB Basics from SQL to NoSQL
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
MongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewMongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overview
 
mongodb_DS.pptx
mongodb_DS.pptxmongodb_DS.pptx
mongodb_DS.pptx
 
Nosql part 2
Nosql part 2Nosql part 2
Nosql part 2
 
MongoDB Internals
MongoDB InternalsMongoDB Internals
MongoDB Internals
 
MongoDB
MongoDBMongoDB
MongoDB
 
2016 feb-23 pyugre-py_mongo
2016 feb-23 pyugre-py_mongo2016 feb-23 pyugre-py_mongo
2016 feb-23 pyugre-py_mongo
 
Using MongoDB and Python
Using MongoDB and PythonUsing MongoDB and Python
Using MongoDB and Python
 
No sq lv1_0
No sq lv1_0No sq lv1_0
No sq lv1_0
 
Mongo db 3.4 Overview
Mongo db 3.4 OverviewMongo db 3.4 Overview
Mongo db 3.4 Overview
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDB
 

Mais de Fabio Fumarola

5 Data Modeling for NoSQL 1/2
5 Data Modeling for NoSQL 1/25 Data Modeling for NoSQL 1/2
5 Data Modeling for NoSQL 1/2
Fabio Fumarola
 
2 Linux Container and Docker
2 Linux Container and Docker2 Linux Container and Docker
2 Linux Container and Docker
Fabio Fumarola
 
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
Fabio Fumarola
 
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
Fabio Fumarola
 

Mais de Fabio Fumarola (12)

11. From Hadoop to Spark 2/2
11. From Hadoop to Spark 2/211. From Hadoop to Spark 2/2
11. From Hadoop to Spark 2/2
 
11. From Hadoop to Spark 1:2
11. From Hadoop to Spark 1:211. From Hadoop to Spark 1:2
11. From Hadoop to Spark 1:2
 
8. key value databases laboratory
8. key value databases laboratory 8. key value databases laboratory
8. key value databases laboratory
 
5 Data Modeling for NoSQL 1/2
5 Data Modeling for NoSQL 1/25 Data Modeling for NoSQL 1/2
5 Data Modeling for NoSQL 1/2
 
2 Linux Container and Docker
2 Linux Container and Docker2 Linux Container and Docker
2 Linux Container and Docker
 
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
1. Introduction to the Course "Designing Data Bases with Advanced Data Models...
 
Scala and spark
Scala and sparkScala and spark
Scala and spark
 
An introduction to maven gradle and sbt
An introduction to maven gradle and sbtAn introduction to maven gradle and sbt
An introduction to maven gradle and sbt
 
Develop with linux containers and docker
Develop with linux containers and dockerDevelop with linux containers and docker
Develop with linux containers and docker
 
Linux containers and docker
Linux containers and dockerLinux containers and docker
Linux containers and docker
 
08 datasets
08 datasets08 datasets
08 datasets
 
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
A Parallel Algorithm for Approximate Frequent Itemset Mining using MapReduce
 

Último

Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
nirzagarg
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Klinik kandungan
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
ptikerjasaptiker
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
vexqp
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schs
cnajjemba
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Bertram Ludäscher
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
vexqp
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
wsppdmt
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
q6pzkpark
 

Último (20)

Aspirational Block Program Block Syaldey District - Almora
Aspirational Block Program Block Syaldey District - AlmoraAspirational Block Program Block Syaldey District - Almora
Aspirational Block Program Block Syaldey District - Almora
 
Dubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls DubaiDubai Call Girls Peeing O525547819 Call Girls Dubai
Dubai Call Girls Peeing O525547819 Call Girls Dubai
 
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Purnia [ 7014168258 ] Call Me For Genuine Models We...
 
Data Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdfData Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdf
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
 
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
 
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling ManjurJual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
Jual Cytotec Asli Obat Aborsi No. 1 Paling Manjur
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Digital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham WareDigital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham Ware
 
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book nowVadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
 
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
怎样办理圣路易斯大学毕业证(SLU毕业证书)成绩单学校原版复制
 
PLE-statistics document for primary schs
PLE-statistics document for primary schsPLE-statistics document for primary schs
PLE-statistics document for primary schs
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptxThe-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
The-boAt-Story-Navigating-the-Waves-of-Innovation.pptx
 
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATIONCapstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
SR-101-01012024-EN.docx Federal Constitution of the Swiss Confederation
SR-101-01012024-EN.docx  Federal Constitution  of the Swiss ConfederationSR-101-01012024-EN.docx  Federal Constitution  of the Swiss Confederation
SR-101-01012024-EN.docx Federal Constitution of the Swiss Confederation
 

9. Document Oriented Databases

  • 2. Outline • Introduction • What is a Document • DocumentDBs • MongoDB – Data Model – Indexes – CRUD – Scaling – Pros and Cons 2
  • 3. Document DB introduction • Documents are the main concept. • A Document-oriented database stores and retrieves documents (XML, JSON, BSON and so on). • Documents are: – Self-describing – Hierarchical tree data structures (maps, collection and scalar values) 3
  • 4. What is a Document DB? • Document databases store documents in the value part of the key-value store where: – Documents are indexed using a BTree – and queried using a JavaScript query engine 4
  • 5. What is a Document DB? • Documents have differences in their attributes • But belongs to the same collection • This is different from relational databases where columns: – Stores the same type of values – Or null 5 { "name": "Phil", "age": 26, "status": "A" } { "name": "Phil", "age": 26, "status": "A", "citiesVisited" : ["Chicago", "LA", "San Francisco"] }
  • 6. RDBMS vs Document DB: Terminology 6
  • 7. Document DBs • MongoDB • CouchDB • RethinkDB • RavenDB 7
  • 10. Documents: Data Model • Data has a flexible schema • This helps in matching document to objects – Each document can match the fields of a document also if with different structure • Data is represented as a map • Relations can be represented as: references and embedded documents 10
  • 13. Documents: Write Operations • Writes are atomic at the document level – A Denormalized data model facilitates atomic write operations. – Normalizing the data over multiple collection would require multiple write operation that are not atomic. 13
  • 14. Documents: Growth • Each time a document is updated the modification are done changing affected attributes • Each document has a maximum size of 16MB • If the document size exceeds MongoDB relocates the document on disk. • In MongoDB 3.0 this problem is minimized using the Power of 2 Sized Allocation 14
  • 15. Documents: ObjectId • ObjectId is a 12-byte BSON type, constructed using: – a 4-byte value representing the seconds since the Unix epoch, – a 3-byte machine identifier, – a 2-byte process id, and – a 3-byte counter, starting with a random value. • It is an interesting approach to generate keys considering that documents are retrieved using document queries 15
  • 17. Documents: Indexing • Indexes allows efficient queries on MongoDB. • They are used to limit the number of documents to inspect • Otherwise, it has to scan every document in a collection. • By default MongoDB create indexes only on the _id field 17
  • 18. Documents: Indexing • Indexes are created using B-tree and stores data of fields ordered by values. • In addition MongoDB returns sorted results by using the index. 18
  • 20. Documents: Index Types • Single Field 20
  • 21. Documents: Index Types • Compound Index: indexed by attributes (left to right) 21
  • 22. Documents: Index Types Multikey Index: •to index content in arrays 22
  • 23. Documents: Index Types • Geospatial Index: 2d and 2sphere indexes • Text Indexes: performs tokenization, stopwords removal and stemming. • Hashed Indexes: used to provide an hash based sharding 23
  • 26. Queries • Queries specify criteria, or condition that identify documents • A query may include projections to specify the fields to return. • It is possible to impose limits, skips and sort orders. 26
  • 28. Query Behavior • All queries in MongoDB address a single collection. • We impose limits, skips, and sort orders. • The order of documents returned by a query is not defined unless you specify a sort(). • Operations that modify existing documents (i.e. updates) use the same query syntax as queries to select documents to update. • In aggregation pipeline, the $match pipeline stage provides access to MongoDB queries. 28
  • 31. Cursors • Each Query like db.collection.find() returns a cursor • To access the documents, you need to iterate the cursor. • By default MongDB closes a cursor – after 10 minutes of inactivity – or if the client has exhausted the cursor 31 var myCursor = db.inventory.find().addOption(DBQuery.Option.noTimeout);
  • 32. Data Modification • Data modification refers to operations that create, update, or delete data. In MongoDB. • These operations modify the data of a single collection. • For the update and delete operations, it is possible to specify the criteria to select the documents to update or remove. 32
  • 36. Update Behavior • By default, the db.collection.update() method updates a single document. • However, with the multi option, update() can update all documents in a collection. • If the update() method includes upsert: true and no documents match the query portion of the update operation, then the update operation creates a new document. 36
  • 38. Remove Behavior • By default, db.collection.remove() method removes all documents that match its query. • However, the method can accept a flag to limit the delete operation to a single document. 38
  • 39. Write Concern • There are different levels of guarantee for writes • When inserts, updates and deletes have a weak write concern, write operations return quickly. • In some failure cases, write operations issued with weak write concerns may not persist. • With stronger write concerns, clients wait after sending a write operation for MongoDB to confirm the write operations. 39
  • 41. Acknowledged • This is defined in the drivers 41
  • 42. Journaled • Operation are acknowledges only after operations are saved to the journal. 42
  • 45. Scaling • The idea of scaling is to add more node to the cluster of nodes. • There are two different context to consider: – Heavy reads – Heavy writes 45
  • 46. Scaling: Heavy Reads • Scaling here can be achieved by adding more read slaves • All the reads can be directed to the slaves. • When a node is added it will sync with the other nodes. • The advantage of this setting is that we do not need to stop the cluster. 46 rs.add(“mongo_address:27017”)
  • 49. Scaling: Heavy Writes • We can start using the Sharding feature. • Sharding, or horizontal scaling divides the data set and distributes the data over multiple servers. • Each shard is an independent database, and collectively, the shards make up a single logical database. 49
  • 51. Sharding in MongoDB • Shard: store the data • Query Routers: interface to client and direct queries • Config Server: store cluster’s metadata. 51
  • 52. Range Based Sharding • MongoDB divides the data set into ranges determined by the shard key values to provide range based partitioning. 52
  • 53. Hash Based Sharding • MongoDB computes a hash of a field’s value, and then uses these hashes to create chunks 53
  • 54. Performance Comparison • Range based partitioning supports more efficient range queries. • However, range based partitioning can result in an uneven distribution of data. • Hash based partitioning, by contrast, ensures an even distribution of data at the expense of efficient range queries. 54
  • 56. CouchDB • Written in Erlang. • Documents are stored using JSON. • The query language is in Javascript and supports MapReduce integration. • One of its distinguishing features is multi-master replication. • ACID: It implements a form of Multi-Version Concurrency Control (MVCC) in order to avoid the need to lock the database file during writes. • CouchDB does not guarantees (eventual) consistency to be able to provide both availability and partition tolerance. 56
  • 57. CouchDB: Features • Master-Master Replication - Because of the append- only style of commits. • Reliability of the actual data store backing the DB (Log Files) • Mobile platform support. CouchDB actually has installs for iOS and Android. • HTTP REST JSON interaction only. No binary protocol 57
  • 58. RethinkDB • The RethinkDB server is written in C++ and runs on 32-bit and 64-bit Linux systems. • It is a JSON based database. • It is characterized by push update queries. • It supports a MapReduce style API, and geospatial queries. 58 r.table('tv_shows').insert([{ name: 'Star Trek TNG', episodes: 178 }, { name: 'Battlestar Galactica', episodes: 75 }])
  • 59. RavenDB • It is a DocumentDB written in C# 59
  • 60. Document Store: Advantages • Documents are independent units • Application logic is easier to write. (JSON). • Schema Free: – Unstructured data can be stored easily, since a document contains whatever keys and values the application logic requires. – In addition, costly migrations are avoided since the database does not need to know its information schema in advance. 60
  • 61. Suitable Use Cases • Event Logging: where we need to store different types of event (order_processed, customer_logged). • Content Management System: because the schema-free approach is well suited • Web analytics or Real-Time Analytics: useful to update counters, page views and metrics in general. 61
  • 62. When Not to Use • Complex Transactions: when you need atomic cross- document operations, but we can use RavenDB or RethinkDB • Queries against Varying Aggregate Structure: that is when the structure of your aggregates vary because of data continuous data evolutions 62

Notas do Editor

  1. Fundamentally, indexes in MongoDB are similar to indexes in other database systems. MongoDB defines indexes at the collection level and supports indexes on any field or sub-field of the documents in a MongoDB collection.
  2. Master-Master Couch does every modification to the DB is considered a revision making conflicts during replication much less likely and allowing for some awesome master-master replication or what Cassandra calls a "ring" of servers all bi-directionally replicating to each other. It can even look more like a fully connected graph of replication rules. Reliability: Because CouchDB records any changes as a "revision" to a document and appends them to the DB file on disk, the file can be copied or snapshotted at any time even while the DB is running and you don't have to worry about corruption. It is a really resilient method of storage.