SlideShare a Scribd company logo
1 of 37
1
Open source, High performance, Document oriented
Albin John
S5 MCA
NO:04
NIELIT Calicut
2
Need of MongoDB
Relational vs. NoSQL Comparison
 What is MongoDB?
MongoDB Key Features
3
• To understand we need to look at
• BigData
• NoSQL
4
• Massive volume of both structured and
unstructured data , which is difficult to process
using traditional database and software
techniques.
5
• Approximately 90 percent of all the real-time
information being created today is unstructured data.
• Every day 2.5 quintillion (1018) bytes of data are being
generated.
• 90 percent of world's present day data has been
created in the two previous years alone.
6
• High Volume – amount of data
– Facebook take 500 terabytes of new data every day
• High Variety – range of data types and sources
– geospatial data, audio and video etc..
• High Velocity – speed of data in and out
– on-line gaming systems support millions of
concurrent users, each producing multiple inputs
per second
7
• Relational databases can scale and handle Big
Data but the effort is huge.
8
What is NoSQL
• Non-relational next generation databases
• Different data models (Not relational)
• A collection of very different products
• Most are not using SQL for queries
• No predefined schema
9
• Relational
• Divide into tables, relate into foreign keys, DB
constraints, normalized data, the Interface is SQL
• NoSQL
• Store in schemaless format, redundancy
encouraged,Interface varies and is optimized for the
implementation, no forced DB constraints.
10
Document DB
MongoDB, CouchDB
Wide Column– Column Family
Cassandra, HBASE, Amazon SimpleDB
Key Value
DynamoDB, Voldemort, MemcacheDB
Graph
Neo4J, OrientDB
Many many many, many more! (http://nosql-database.org/)
11
And now
let’s look at MongoDB
12
• MongoDB is an open-source NoSQL-Database developed by
10gen in C++.
• Developed in 2009
• It consists of set of databases
• In which each database contains multiple collections.
• Every collection can contain different types of objects
called document
• Every document is represented as a JSON structure: a list of
key-value pairs.
13
14
RDBMS MongoDB
Database Database
Table Collection
Row Document
15
16
Horizontally Scalable
-Sharding
Agile
Flexible
High Performance
Application
Highly
Available
-Replica Sets
{ author: “Albin John”,
date: new Date(),
text: “MongoDB”,
tags: [“database”,
“flexible”, “JSON”]}
17
• Data stored as documents (BSON)
• Schema free
• Dynamic Queries
• Capped collections
• Sharding (sometimes called partitioning) for
scalability
• Replication
18
• MongoDB does not need any defined data schema.
• Every document could have different data!
name: “jeff”,
eyes: “blue”,
height: 72,
boss: “ben”}
{name: “brendan”,
aliases: [“el diablo”]}
name: “ben”,
hat: ”yes”}
{name: “matt”,
pizza: “DiGiorno”,
height: 72,
boss: 555.555.1212}
{name: “will”,
eyes: “blue”,
birthplace: “NY”,
aliases: [“bill”, “la
ciacco”],
gender: ”???”,
boss: ”ben”}
19
• JSON (Java Script Object Notation)-exchange and store data
• schemaless
• Excellent performance
• MongoDB actually use BSON (Binary JSON).
20
• Work with data in BSON is same as in JSON.
• It is serialized into a special binary encoded format
21
• Run a query without planning for it in advance
• Like SQL queries in an RDBMS
• Wonder why listed as a feature?
• Not all NoSQL databases support dynamic queries
(CouchDB biggest “competitor”)
22
• Fixed-size collections called capped collections
• Use the db.createCollection command and marked it as
capped
//limit our capped collection to 2 megabyte
db.createCollection(’logs’, {capped: true, size: 2097152})
• When it reaches 2MB limit, old documents are
automatically removed
23
• Scale up, vertical scaling
Increasing server capacity (more CPU, RAM)
Managing is hard, possible down times
• Scale out, horizontal scaling
Adding servers
No single point of failure cause whole system (servers fail often, thus
replication)
24
• MongoDB provides horizontal scale-out for
databases using a technique called sharding
• MongoDB distributes data across multiple physical
partitions called shards(mongod).
25
Manual sharding :
application maintains connections to several completely
independent database servers
storing different data on different servers
querying against the appropriate server to get data back
Autosharding:
 which eliminates some of the administrative headaches of
manual sharding.
• It handles splitting up data and rebalancing automatically.
26
• Collections  smaller chunks
• Chunks distributed across shards
• Each shard is responsible for a subset of the total data
set
• Application don’t want to know what shard has what
data
• So run a routing process called mongos in front of the
shards
• It knows where all of the data is located, so applications
can connect to it
• It connected to a normal mongod
27
28
• Replication via replica set
• Replica sets distribute data across machines for
– redundancy
– automate failover
29
• It consist of
• exactly one primary node
• one or more secondary nodes
• It primary node can accept both reads and writes
• The secondary nodes are read-only
30
Replication
Read
Write
Read
Read
Driver
Primary
Priority 1
Secondary
Priority 1
Secondary
Priority 1
Secondary
Priority 0Read
31
Read
Write
Read
Read
Driver
Primary
Priority 1
Secondary
Priority 1
Secondary
Priority 1
Secondary
Priority 0Read
32
Read
Write
Read
Read
Driver
Primary
Priority 1
Secondary
Priority 1
Secondary
Priority 1
Secondary
Priority 0Read
I last synced
1 seconds ago
I last synced
3 seconds ago
33
Write
Read
Read
Driver
Primary
Priority 1
Primary
Priority 1
Secondary
Priority 1
Secondary
Priority 0Read
Automatic
Leader Election
34
Write
Read
Read
Driver
Secondary
Priority 1
Primary
Priority 1
Secondary
Priority 1
Secondary
Priority 0Read
Read
35
Primary
Secondary
Secondary
Primary
Secondary
Secondary
Primary
Secondary
Secondary
Primary
Secondary
Secondary
Key Range
0..30
Key Range
31..60
Key Range
61..90
Key Range
91.. 100
MongoS MongoS MongoS Config
Config
Config
Clients
36
• MongoDB is the database for today's applications:
– innovative
– fast time-to-market
– globally scalable
– inexpensive to operate
37
THANK YOU
FOR YOUR
ATTENTION
ANY
QUESTIONS?

More Related Content

What's hot

What's hot (20)

Mongo db admin_20110329
Mongo db admin_20110329Mongo db admin_20110329
Mongo db admin_20110329
 
Mongo db intro.pptx
Mongo db intro.pptxMongo db intro.pptx
Mongo db intro.pptx
 
Mongodb @ vrt
Mongodb @ vrtMongodb @ vrt
Mongodb @ vrt
 
NoSQL
NoSQLNoSQL
NoSQL
 
Mongo db
Mongo dbMongo db
Mongo db
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
MongoDb - Details on the POC
MongoDb - Details on the POCMongoDb - Details on the POC
MongoDb - Details on the POC
 
NoSQL
NoSQLNoSQL
NoSQL
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDB
 
Redis IU
Redis IURedis IU
Redis IU
 
CSCi226PPT1
CSCi226PPT1CSCi226PPT1
CSCi226PPT1
 
MongoDB
MongoDBMongoDB
MongoDB
 
Mongo db
Mongo dbMongo db
Mongo db
 
Использование MongoDB как основной метабазы в UGC-сервисах
Использование MongoDB как основной метабазы в UGC-сервисахИспользование MongoDB как основной метабазы в UGC-сервисах
Использование MongoDB как основной метабазы в UGC-сервисах
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Accelerating Delivery of Data Products - The EBSCO Way
Accelerating Delivery of Data Products - The EBSCO WayAccelerating Delivery of Data Products - The EBSCO Way
Accelerating Delivery of Data Products - The EBSCO Way
 
21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...
21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...
21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...
 
Introduction to mongo db
Introduction to mongo dbIntroduction to mongo db
Introduction to mongo db
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Tms training
Tms trainingTms training
Tms training
 

Viewers also liked

Khaled touny (planning presentation)
Khaled touny (planning presentation)Khaled touny (planning presentation)
Khaled touny (planning presentation)
Khaled Touny
 
Designers guide to magento
Designers guide to magentoDesigners guide to magento
Designers guide to magento
Tuyến Trần
 
Designers guide to_magento
Designers guide to_magentoDesigners guide to_magento
Designers guide to_magento
Tuyến Trần
 
Magento designers guide
Magento designers guideMagento designers guide
Magento designers guide
Tuyến Trần
 
Shkolla e mesme e ulët detyra 1
Shkolla e mesme e ulët detyra 1Shkolla e mesme e ulët detyra 1
Shkolla e mesme e ulët detyra 1
Zekë Muqkurtaj
 
Kumpulan soal ipa smk kelas x xii
Kumpulan soal ipa smk kelas x xiiKumpulan soal ipa smk kelas x xii
Kumpulan soal ipa smk kelas x xii
rezapratamaa
 
Inchoo s magento posts
Inchoo s magento postsInchoo s magento posts
Inchoo s magento posts
Tuyến Trần
 
Ct213 processor design_pipelinehazard
Ct213 processor design_pipelinehazardCt213 processor design_pipelinehazard
Ct213 processor design_pipelinehazard
rakeshrakesh2020
 
Prezentimi i punimit për kompetencat t per drejtor
Prezentimi i punimit për kompetencat t per drejtorPrezentimi i punimit për kompetencat t per drejtor
Prezentimi i punimit për kompetencat t per drejtor
Zekë Muqkurtaj
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2
Zekë Muqkurtaj
 
Planifiimi dhe prograni kete e kemi per prezentim
Planifiimi dhe prograni kete e kemi per prezentimPlanifiimi dhe prograni kete e kemi per prezentim
Planifiimi dhe prograni kete e kemi per prezentim
Zekë Muqkurtaj
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2
Zekë Muqkurtaj
 
Performance appraisal presentation
Performance appraisal presentationPerformance appraisal presentation
Performance appraisal presentation
Khaled Touny
 

Viewers also liked (17)

Meditation-The way to success
Meditation-The way to successMeditation-The way to success
Meditation-The way to success
 
Khaled touny (planning presentation)
Khaled touny (planning presentation)Khaled touny (planning presentation)
Khaled touny (planning presentation)
 
Designers guide to magento
Designers guide to magentoDesigners guide to magento
Designers guide to magento
 
Designers guide to_magento
Designers guide to_magentoDesigners guide to_magento
Designers guide to_magento
 
Magento designers guide
Magento designers guideMagento designers guide
Magento designers guide
 
Shkolla e mesme e ulët detyra 1
Shkolla e mesme e ulët detyra 1Shkolla e mesme e ulët detyra 1
Shkolla e mesme e ulët detyra 1
 
Kumpulan soal ipa smk kelas x xii
Kumpulan soal ipa smk kelas x xiiKumpulan soal ipa smk kelas x xii
Kumpulan soal ipa smk kelas x xii
 
Inchoo s magento posts
Inchoo s magento postsInchoo s magento posts
Inchoo s magento posts
 
Ct213 processor design_pipelinehazard
Ct213 processor design_pipelinehazardCt213 processor design_pipelinehazard
Ct213 processor design_pipelinehazard
 
Comp archch06l01pipeline
Comp archch06l01pipelineComp archch06l01pipeline
Comp archch06l01pipeline
 
Prezentimi i punimit për kompetencat t per drejtor
Prezentimi i punimit për kompetencat t per drejtorPrezentimi i punimit për kompetencat t per drejtor
Prezentimi i punimit për kompetencat t per drejtor
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2
 
Quorum sensing in bacterial populations
Quorum sensing in bacterial populationsQuorum sensing in bacterial populations
Quorum sensing in bacterial populations
 
Detyra 3 per pzhsh
Detyra 3 per pzhshDetyra 3 per pzhsh
Detyra 3 per pzhsh
 
Planifiimi dhe prograni kete e kemi per prezentim
Planifiimi dhe prograni kete e kemi per prezentimPlanifiimi dhe prograni kete e kemi per prezentim
Planifiimi dhe prograni kete e kemi per prezentim
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2
 
Performance appraisal presentation
Performance appraisal presentationPerformance appraisal presentation
Performance appraisal presentation
 

Similar to MongoDB

Big data and hadoop
Big data and hadoopBig data and hadoop
Big data and hadoop
Mohit Tare
 

Similar to MongoDB (20)

Big Data, NoSQL with MongoDB and Cassasdra
Big Data, NoSQL with MongoDB and CassasdraBig Data, NoSQL with MongoDB and Cassasdra
Big Data, NoSQL with MongoDB and Cassasdra
 
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
 
9. Document Oriented Databases
9. Document Oriented Databases9. Document Oriented Databases
9. Document Oriented Databases
 
Wmware NoSQL
Wmware NoSQLWmware NoSQL
Wmware NoSQL
 
No sq lv1_0
No sq lv1_0No sq lv1_0
No sq lv1_0
 
MongoDB: What, why, when
MongoDB: What, why, whenMongoDB: What, why, when
MongoDB: What, why, when
 
Mongodb
MongodbMongodb
Mongodb
 
NoSQL and MongoDB Introdction
NoSQL and MongoDB IntrodctionNoSQL and MongoDB Introdction
NoSQL and MongoDB Introdction
 
Mongo DB
Mongo DB Mongo DB
Mongo DB
 
MongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewMongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overview
 
MongoDB_ppt.pptx
MongoDB_ppt.pptxMongoDB_ppt.pptx
MongoDB_ppt.pptx
 
When to Use MongoDB
When to Use MongoDBWhen to Use MongoDB
When to Use MongoDB
 
MongoDB presentation
MongoDB presentationMongoDB presentation
MongoDB presentation
 
NoSQL on the move
NoSQL on the moveNoSQL on the move
NoSQL on the move
 
Agility and Scalability with MongoDB
Agility and Scalability with MongoDBAgility and Scalability with MongoDB
Agility and Scalability with MongoDB
 
Introduction to MongoDB and CRUD operations
Introduction to MongoDB and CRUD operationsIntroduction to MongoDB and CRUD operations
Introduction to MongoDB and CRUD operations
 
Mongo db
Mongo dbMongo db
Mongo db
 
Mongo db basics
Mongo db basicsMongo db basics
Mongo db basics
 
Large scale computing with mapreduce
Large scale computing with mapreduceLarge scale computing with mapreduce
Large scale computing with mapreduce
 
Big data and hadoop
Big data and hadoopBig data and hadoop
Big data and hadoop
 

Recently uploaded

Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
vexqp
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
nirzagarg
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
vexqp
 
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
 
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit RiyadhCytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Abortion pills in Riyadh +966572737505 get cytotec
 
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
vexqp
 
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
Health
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
wsppdmt
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
q6pzkpark
 

Recently uploaded (20)

Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
 
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
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
 
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
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
怎样办理旧金山城市学院毕业证(CCSF毕业证书)成绩单学校原版复制
 
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...
 
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit RiyadhCytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
Cytotec in Jeddah+966572737505) get unwanted pregnancy kit Riyadh
 
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
怎样办理伦敦大学城市学院毕业证(CITY毕业证书)成绩单学校原版复制
 
Digital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham WareDigital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham Ware
 
Harnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptxHarnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptx
 
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
 
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
+97470301568>>weed for sale in qatar ,weed for sale in dubai,weed for sale in...
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
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
 
Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...
 

MongoDB