SlideShare uma empresa Scribd logo
1 de 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?

Mais conteúdo relacionado

Mais procurados

Mongo db admin_20110329
Mongo db admin_20110329Mongo db admin_20110329
Mongo db admin_20110329radiocats
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBNodeXperts
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDBRadenko Zec
 
Использование MongoDB как основной метабазы в UGC-сервисах
Использование MongoDB как основной метабазы в UGC-сервисахИспользование MongoDB как основной метабазы в UGC-сервисах
Использование MongoDB как основной метабазы в UGC-сервисахYandex
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBRavi Teja
 
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 WayMongoDB
 
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...Athens Big Data
 
Introduction to mongo db
Introduction to mongo dbIntroduction to mongo db
Introduction to mongo dbRohit Bishnoi
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBMike Dirolf
 
Tms training
Tms trainingTms training
Tms trainingChi Lee
 

Mais procurados (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
 

Destaque

Meditation-The way to success
Meditation-The way to successMeditation-The way to success
Meditation-The way to successbhanu9269
 
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 magentoTuyến Trần
 
Designers guide to_magento
Designers guide to_magentoDesigners guide to_magento
Designers guide to_magentoTuyến Trần
 
Magento designers guide
Magento designers guideMagento designers guide
Magento designers guideTuyế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 1Zekë 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 xiirezapratamaa
 
Inchoo s magento posts
Inchoo s magento postsInchoo s magento posts
Inchoo s magento postsTuyến Trần
 
Ct213 processor design_pipelinehazard
Ct213 processor design_pipelinehazardCt213 processor design_pipelinehazard
Ct213 processor design_pipelinehazardrakeshrakesh2020
 
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 drejtorZekë Muqkurtaj
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Zekë Muqkurtaj
 
Quorum sensing in bacterial populations
Quorum sensing in bacterial populationsQuorum sensing in bacterial populations
Quorum sensing in bacterial populationsKhaled Touny
 
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 prezentimZekë Muqkurtaj
 
Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Shkolla smajl hajdaraj detyra 2
Shkolla smajl hajdaraj detyra 2Zekë Muqkurtaj
 
Performance appraisal presentation
Performance appraisal presentationPerformance appraisal presentation
Performance appraisal presentationKhaled Touny
 

Destaque (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
 

Semelhante a MongoDB

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 CassasdraBrian Enochson
 
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 NoSQLMayur Patil
 
9. Document Oriented Databases
9. Document Oriented Databases9. Document Oriented Databases
9. Document Oriented DatabasesFabio Fumarola
 
MongoDB: What, why, when
MongoDB: What, why, whenMongoDB: What, why, when
MongoDB: What, why, whenEugenio Minardi
 
NoSQL and MongoDB Introdction
NoSQL and MongoDB IntrodctionNoSQL and MongoDB Introdction
NoSQL and MongoDB IntrodctionBrian Enochson
 
MongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewMongoDB: a gentle, friendly overview
MongoDB: a gentle, friendly overviewAntonio Pintus
 
When to Use MongoDB
When to Use MongoDBWhen to Use MongoDB
When to Use MongoDBMongoDB
 
MongoDB presentation
MongoDB presentationMongoDB presentation
MongoDB presentationHyphen Call
 
NoSQL on the move
NoSQL on the moveNoSQL on the move
NoSQL on the moveCodemotion
 
Agility and Scalability with MongoDB
Agility and Scalability with MongoDBAgility and Scalability with MongoDB
Agility and Scalability with MongoDBMongoDB
 
Introduction to MongoDB and CRUD operations
Introduction to MongoDB and CRUD operationsIntroduction to MongoDB and CRUD operations
Introduction to MongoDB and CRUD operationsAnand Kumar
 
Large scale computing with mapreduce
Large scale computing with mapreduceLarge scale computing with mapreduce
Large scale computing with mapreducehansen3032
 
Big data and hadoop
Big data and hadoopBig data and hadoop
Big data and hadoopMohit Tare
 

Semelhante a 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
 

Último

Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramMoniSankarHazra
 
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 Researchmichael115558
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...only4webmaster01
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...amitlee9823
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Pooja Nehwal
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
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...Valters Lauzums
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
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
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 

Último (20)

Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
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
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
 
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...
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
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...
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 

MongoDB