Manual Basico Mongo DB
Manual Basico Mongo DB
This tutorial will give you great understanding on MongoDB concepts needed to create and deploy
a highly scalable and performance oriented database.
AUDIENCE
This tutorial is designed for Software Professionals who are willing to learn MongoDB Database in
simple and easy steps. This tutorial will give you great understanding on MongoDB concepts and
after completing this tutorial you will be at intermediate level of expertise from where you can
take yourself at higher level of expertise.
PREREQUISITES
Before proceeding with this tutorial you should have a basic understanding of database, text editor
and execution of programs etc. Because we are going to develop high performance database, so it
will be good if you have understanding on basic concepts of Database RDBMS.
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - OVERVIEW
http://www.tutorialspoint.com/mongodb/mongodb_overview.htm Copyright © tutorialspoint.com
MongoDB is a cross-platform, document oriented database that provides, high performance, high
availability, and easy scalability. MongoDB works on concept of collection and document.
Database
Database is a physical container for collections. Each database gets its own set of files on the file
system. A single MongoDB server typically has multiple databases.
Collection
Collection is a group of MongoDB documents. It is the equivalent of an RDBMS table. A collection
exists within a single database. Collections do not enforce a schema. Documents within a
collection can have different fields. Typically, all documents in a collection are of similar or related
purpose.
Document
A document is a set of key-value pairs. Documents have dynamic schema. Dynamic schema
means that documents in the same collection do not need to have the same set of fields or
structure, and common fields in a collection's documents may hold different types of data.
Below given table shows the relationship of RDBMS terminology with MongoDB
RDBMS MongoDB
Database Database
Table Collection
Tuple/Row Document
column Field
Mysqld/Oracle mongod
mysql/sqlplus mongo
Sample document
Below given example shows the document structure of a blog site which is simply a comma
separated key value pair.
{
_id: ObjectId(7df78ad8902c)
title: 'MongoDB Overview',
description: 'MongoDB is no sql database',
by: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2011,1,20,2,15),
like: 0
},
{
user:'user2',
message: 'My second comments',
dateCreated: new Date(2011,1,25,7,45),
like: 5
}
]
}
_id is a 12 bytes hexadecimal number which assures the uniqueness of every document. You can
provide _id while inserting the document. If you didn't provide then MongoDB provide a unique id
for every document. These 12 bytes first 4 bytes for the current timestamp, next 3 bytes for
machine id, next 2 bytes for process id of mongodb server and remaining 3 bytes are simple
incremental value.
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - ENVIRONMENT
http://www.tutorialspoint.com/mongodb/mongodb_environment.htm Copyright © tutorialspoint.com
32-bit versions of MongoDB only support databases smaller than 2GB and suitable only for testing
and evaluation purposes.
Now extract your downloaded file to c:\ drive or any other location. Make sure name of the
extracted folder is mongodb-win32-i386-[version] or mongodb-win32-x86_64-[version]. Here
[version] is the version of MongoDB download.
In case you have extracted the mondodb at different location, then go to that path by using
command cd FOOLDER/DIR and now run the above given process.
MongoDB requires a data folder to store its files. The default location for the MongoDB data
directory is c:\data\db. So you need to create this folder using the Command Prompt. Execute the
following command sequence
C:\>md data
C:\md data\db
If you have install the MongoDB at different location, then you need to specify any alternate path
for \data\db by setting the path dbpath in mongod.exe. For the same issue following commands
In command prompt navigate to the bin directory present into the mongodb installation folder.
Suppose my installation folder is D:\set up\mongodb
C:\Users\XYZ>d:
D:\>cd "set up"
D:\set up>cd mongodb
D:\set up\mongodb>cd bin
D:\set up\mongodb\bin>mongod.exe --dbpath "d:\set up\mongodb\data"
This will show waiting for connections message on the console output indicates that the
mongod.exe process is running successfully.
Now to run the mongodb you need to open another command prompt and issue the following
command
D:\set up\mongodb\bin>mongo.exe
MongoDB shell version: 2.4.6
connecting to: test
>db.test.save( { a: 1 } )
>db.test.find()
{ "_id" : ObjectId(5879b0f65a56a454), "a" : 1 }
>
This will show that mongodb is installed and run successfully. Next time when you run mongodb
you need to issue only commands
In the above installation 2.2.3 is currently released mongodb version. Make sure to install latest
version always. Now mongodb is installed successfully.
Start MongoDB
Stop MongoDB
Restart MongoDB
mongo
MongoDB Help
To get list of commands type db.help in mongodb client. This will give you list of commands as
follows:
MongoDB Statistics
To get stats about mongodb server type the command db.stats in mongodb client. This will show
the database name, number of collection and documents in the database. Output the command is
shown below:
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - DATA MODELLING
http://www.tutorialspoint.com/mongodb/mongodb_data_modeling.htm Copyright © tutorialspoint.com
Data in MongoDB has a flexible schema.documents in the same collection do not need to have the
same set of fields or structure, and common fields in a collection’s documents may hold different
types of data.
Combine objects into one document if you will use them together. Otherwise separate them
butmakesurethereshouldnotbeneedofjoins.
Duplicate the data butlimited because disk space is cheap as compare to compute time.
Example
Suppose a client needs a database design for his blog website and see the differences between
RDBMS and MongoDB schema design. Website has the following requirements.
Every post has the name of its publisher and total number of likes.
Every Post have comments given by users along with their name, message, data-time and
likes.
In RDBMS schema design for above requirements will have minimum three tables.
While in MongoDB schema design will have one collection post and has the following structure:
{
_id: POST_ID
title: TITLE_OF_POST,
description: POST_DESCRIPTION,
by: POST_BY,
url: URL_OF_POST,
tags: [TAG1, TAG2, TAG3],
likes: TOTAL_LIKES,
comments: [
{
user:'COMMENT_BY',
message: TEXT,
dateCreated: DATE_TIME,
like: LIKES
},
{
user:'COMMENT_BY',
message: TEXT,
dateCreated: DATE_TIME,
like: LIKES
}
]
}
So while showing the data, in RDBMS you need to join three tables and in mongodb data will be
shown from one collection only.
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - CREATE DATABASE
http://www.tutorialspoint.com/mongodb/mongodb_create_database.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of use DATABASE statement is as follows:
use DATABASE_NAME
Example:
If you want to create a database with name <mydb>, then use DATABASE statement would be
as follows:
>use mydb
switched to db mydb
>db
mydb
If you want to check your databases list, then use the command show dbs.
>show dbs
local 0.78125GB
test 0.23012GB
Your created database mydb is not present in list. To display database you need to insert atleast
one document into it.
>db.movie.insert({"name":"tutorials point"})
>show dbs
local 0.78125GB
mydb 0.23012GB
test 0.23012GB
In mongodb default database is test. If you didn't create any database then collections will be
stored in test database.
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - DROP DATABASE
http://www.tutorialspoint.com/mongodb/mongodb_drop_database.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of dropDatabase command is as follows:
db.dropDatabase()
This will delete the selected database. If you have not selected any database, then it will delete
default 'test' database
Example:
First, check the list available databases by using the command show dbs
>show dbs
local 0.78125GB
mydb 0.23012GB
test 0.23012GB
>
If you want to delete new database <mydb>, then dropDatabase command would be as follows:
>use mydb
switched to db mydb
>db.dropDatabase()
>{ "dropped" : "mydb", "ok" : 1 }
>
>show dbs
local 0.78125GB
test 0.23012GB
>
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - CREATE COLLECTION
http://www.tutorialspoint.com/mongodb/mongodb_create_collection.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of createCollection command is as follows
db.createCollection(name, options)
In the command, name is name of collection to be created. Options is a document and used to
specify configuration of collection
Options parameter is optional, so you need to specify only name of the collection. Following is the
list of options you can use:
autoIndexID Boolean Optional If true, automatically create index on _id field.s Default
value is false.
size number Optional Specifies a maximum size in bytes for a capped collection.
If If capped is true, then you need to specify this field also.
While inserting the document, MongoDB first checks size field of capped collection, then it checks
max field.
Examples:
Basic syntax of createCollection method without options is as follows
>use test
switched to db test
>db.createCollection("mycollection")
{ "ok" : 1 }
>
You can check the created collection by using the command show collections
>show collections
mycollection
system.indexes
Following example shows the syntax of createCollection method with few important options:
In mongodb you don't need to create collection. MongoDB creates collection automatically, when
you insert some document.
>db.tutorialspoint.insert({"name" : "tutorialspoint"})
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - DROP COLLECTION
http://www.tutorialspoint.com/mongodb/mongodb_drop_collection.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of drop command is as follows
db.COLLECTION_NAME.drop()
Example:
First, check the available collections into your database mydb
>use mydb
switched to db mydb
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>
>db.mycollection.drop()
true
>
>show collections
mycol
system.indexes
tutorialspoint
>
drop method will return true, if the selected collection is dropped successfully otherwise it will
return false
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - DATATYPES
http://www.tutorialspoint.com/mongodb/mongodb_datatype.htm Copyright © tutorialspoint.com
String : This is most commonly used datatype to store the data. String in mongodb must be
UTF-8 valid.
Integer : This type is used to store a numerical value. Integer can be 32 bit or 64 bit
depending upon your server.
Min/ Max keys : This type is used to compare a value against the lowest and highest BSON
elements.
Arrays : This type is used to store arrays or list or multiple values into one key.
Timestamp : ctimestamp. This can be handy for recording when a document has been
modified or added.
Symbol : This datatype is used identically to a string however, it's generally reserved for
languages that use a specific symbol type.
Date : This datatype is used to store the current date or time in UNIX time format. You can
specify your own date time by creating object of Date and passing day, month, year into it.
Syntax
Basic syntax of insert command is as follows:
>db.COLLECTION_NAME.insert(document)
Example
>db.mycol.insert({
_id: ObjectId(7df78ad8902c),
title: 'MongoDB Overview',
description: 'MongoDB is no sql database',
by: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100
})
Here mycol is our collection name, as created in previous tutorial. If the collection doesn't exist in
the database, then MongoDB will create this collection and then insert document into it.
In the inserted document if we don't specify the _id parameter, then MongoDB assigns an unique
ObjectId for this document.
_id is 12 bytes hexadecimal number unique for every document in a collection. 12 bytes are
divided as follows:
_id: ObjectId(4 bytes timestamp, 3 bytes machine id, 2 bytes process id, 3 bytes
incrementer)
To insert multiple documents in single query, you can pass an array of documents in insert
command.
Example
>db.post.insert([
{
title: 'MongoDB Overview',
description: 'MongoDB is no sql database',
by: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100
},
{
title: 'NoSQL Database',
description: 'NoSQL database doesn't have tables',
by: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 20,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2013,11,10,2,35),
like: 0
}
]
}
])
To insert the document you can use db.post.savedocument also. If you don't specify _id in the
document then save method will work same as insert method. If you specify _id then it will
replace whole data of document containing _id as specified in save method.
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - QUERY DOCUMENT
http://www.tutorialspoint.com/mongodb/mongodb_query_document.htm Copyright © tutorialspoint.com
Syntax
Basic syntax of find method is as follows
>db.COLLECTION_NAME.find()
find method will display all the documents in a non structured way.
Syntax:
>db.mycol.find().pretty()
Example
>db.mycol.find().pretty()
{
"_id": ObjectId(7df78ad8902c),
"title": "MongoDB Overview",
"description": "MongoDB is no sql database",
"by": "tutorials point",
"url": "http://www.tutorialspoint.com",
"tags": ["mongodb", "database", "NoSQL"],
"likes": "100"
}
>
Apart from find method there is findOne method, that reruns only one document.
AND in MongoDB
Syntax:
In the find method if you pass multiple keys by separating them by ',' then MongoDB treats it AND
condition. Basic syntax of AND is shown below:
>db.mycol.find({key1:value1, key2:value2}).pretty()
Example
Below given example will show all the tutorials written by 'tutorials point' and whose title is
'MongoDB Overview'
For the above given example equivalent where clause will be ' where by='tutorials point' AND
title='MongoDB Overview' '. You can pass any number of key, value pairs in find clause.
OR in MongoDB
Syntax:
To query documents based on the OR condition, you need to use $or keyword. Basic syntax of OR
is shown below:
>db.mycol.find(
{
$or: [
{key1: value1}, {key2:value2}
]
}
).pretty()
Example
Below given example will show all the tutorials written by 'tutorials point' or whose title is
'MongoDB Overview'
Example
Below given example will show the documents that have likes greater than 100 and whose title is
either 'MongoDB Overview' or by is 'tutorials point'. Equivalent sql where clause is 'where
likes>10 AND by = ′ tutorialspoint ′ ORtitle = ′ MongoDBOverview ′ '
MongoDB's update and save methods are used to update document into a collection. The update
method update values in the existing document while the save method replaces the existing
document with the document passed in save method.
Syntax:
Basic syntax of update method is as follows
>db.COLLECTION_NAME.update(SELECTIOIN_CRITERIA, UPDATED_DATA)
Example
Consider the mycol collectioin has following data.
Following example will set the new title 'New MongoDB Tutorial' of the documents whose title is
'MongoDB Overview'
By default mongodb will update only single document, to update multiple you need to set a
paramter 'multi' to true.
Syntax
Basic syntax of mongodb save method is shown below:
>db.COLLECTION_NAME.save({_id:ObjectId(),NEW_DATA})
Example
Following example will replace the document with the _id '5983548781331adf45ec7'
>db.mycol.save(
{
"_id" : ObjectId(5983548781331adf45ec7), "title":"Tutorials Point New Topic",
"by":"Tutorials Point"
}
)
>db.mycol.find()
{ "_id" : ObjectId(5983548781331adf45ec5), "title":"Tutorials Point New Topic",
"by":"Tutorials Point"}
{ "_id" : ObjectId(5983548781331adf45ec6), "title":"NoSQL Overview"}
{ "_id" : ObjectId(5983548781331adf45ec7), "title":"Tutorials Point Overview"}
>
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - DELETE DOCUMENT
http://www.tutorialspoint.com/mongodb/mongodb_delete_document.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of remove method is as follows
>db.COLLECTION_NAME.remove(DELLETION_CRITTERIA)
Example
Consider the mycol collectioin has following data.
Following example will remove all the documents whose title is 'MongoDB Overview'
>db.mycol.remove({'title':'MongoDB Overview'})
>db.mycol.find()
{ "_id" : ObjectId(5983548781331adf45ec6), "title":"NoSQL Overview"}
{ "_id" : ObjectId(5983548781331adf45ec7), "title":"Tutorials Point Overview"}
>
>db.COLLECTION_NAME.remove(DELETION_CRITERIA,1)
>db.mycol.remove()
>db.mycol.find()
>
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - PROJECTION
http://www.tutorialspoint.com/mongodb/mongodb_projection.htm Copyright © tutorialspoint.com
In mongodb projection meaning is selecting only necessary data rather than selecting whole of the
data of a document. If a document has 5 fields and you need to show only 3, then select only 3
fields from them.
Syntax:
Basic syntax of find method with projection is as follows
>db.COLLECTION_NAME.find({},{KEY:1})
Example
Consider the collection myycol has the following data
Following example will display the title of the document while quering the document.
>db.mycol.find({},{"title":1,_id:0})
{"title":"MongoDB Overview"}
{"title":"NoSQL Overview"}
{"title":"Tutorials Point Overview"}
>
Please note _id field is always displayed while executing find method, if you don't want this field,
then you need to set it as 0
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - LIMIT RECORDS
http://www.tutorialspoint.com/mongodb/mongodb_limit_record.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of limit method is as follows
>db.COLLECTION_NAME.find().limit(NUMBER)
Example
Consider the collection myycol has the following data
Following example will display only 2 documents while quering the document.
>db.mycol.find({},{"title":1,_id:0}).limit(2)
{"title":"MongoDB Overview"}
{"title":"NoSQL Overview"}
>
If you don't specify number argument in limit method then it will display all documents from the
collection.
Syntax:
Basic syntax of skip method is as follows
>db.COLLECTION_NAME.find().limit(NUMBER).skip(NUMBER)
Example:
Following example will only display only second document.
>db.mycol.find({},{"title":1,_id:0}).limit(1).skip(1)
{"title":"NoSQL Overview"}
>
Syntax:
Basic syntax of sort method is as follows
>db.COLLECTION_NAME.find().sort({KEY:1})
Example
Consider the collection myycol has the following data
Following example will display the documents sorted by title in descending order.
>db.mycol.find({},{"title":1,_id:0}).sort({"title":-1})
{"title":"Tutorials Point Overview"}
{"title":"NoSQL Overview"}
{"title":"MongoDB Overview"}
>
Please note if you don't specify the sorting preference, then sort method will display documents in
ascending order.
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - INDEXING
http://www.tutorialspoint.com/mongodb/mongodb_indexing.htm Copyright © tutorialspoint.com
Indexes support the efficient resolution of queries. Without indexes, MongoDB must scan every
document of a collection to select those documents that match the query statement. This scan is
highly inefficient and require the mongodb to process a large volume of data.
Indexes are special data structures, that store a small portion of the data set in an easy to traverse
form. The index stores the value of a specific field or set of fields, ordered by the value of the field
as specified in index.
Syntax:
Basic syntax of ensureIndex method is as follows
>db.COLLECTION_NAME.ensureIndex({KEY:1})
Here key is the name of filed on which you want to create index and 1 is for ascending order. To
create index in descending order you need to use -1.
Example
>db.mycol.ensureIndex({"title":1})
>
In ensureIndex method you can pass multiple fields, to create index on multiple fields.
>db.mycol.ensureIndex({"title":1,"description":-1})
>
ensureIndex method also accepts list of options whichareoptional, whose list is given below:
background Boolean Builds the index in the background so that building an index
does not block other database activities. Specify true to build
in the background. The default value is false.
unique Boolean Creates a unique index so that the collection will not accept
insertion of documents where the index key or keys match an
existing value in the index. Specify true to create a unique
index. The default value is false.
dropDups Boolean Creates a unique index on a field that may have duplicates.
MongoDB indexes only the first occurrence of a key and
removes all documents from the collection that contain
subsequent occurrences of that key. Specify true to create
unique index. The default value is false.
sparse Boolean If true, the index only references documents with the
specified field. These indexes use less space but behave
differently in some situations particularlysorts. The default value
is false.
default_language string For a text index, the language that determines the list of stop
words and the rules for the stemmer and tokenizer. The
default value is english.
language_override string For a text index, specify the name of the field in the
document that contains, the language to override the default
language. The default value is language.
Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
MONGODB - AGGREGATION
http://www.tutorialspoint.com/mongodb/mongodb_aggregation.htm Copyright © tutorialspoint.com
Aggregations operations process data records and return computed results. Aggregation
operations group values from multiple documents together, and can perform a variety of
operations on the grouped data to return a single result. In sql count ∗ and with group by is an
equivalent of mongodb aggregation.
Syntax:
Basic syntax of aggregate method is as follows
>db.COLLECTION_NAME.aggregate(AGGREGATE_OPERATION)
Example:
In the collection you have the following data:
{
_id: ObjectId(7df78ad8902c)
title: 'MongoDB Overview',
description: 'MongoDB is no sql database',
by_user: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100
},
{
_id: ObjectId(7df78ad8902d)
title: 'NoSQL Overview',
description: 'No sql database is very fast',
by_user: 'tutorials point',
url: 'http://www.tutorialspoint.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 10
},
{
_id: ObjectId(7df78ad8902e)
title: 'Neo4j Overview',
description: 'Neo4j is no sql database',
by_user: 'Neo4j',
url: 'http://www.neo4j.com',
tags: ['neo4j', 'database', 'NoSQL'],
likes: 750
},
Now from the above collection if you want to display a list that how many tutorials are written by
each user then you will use aggregate method as shown below:
Sql equivalent query for the above use case will be select by_user, count ∗ from mycol group
by by_user
In the above example we have grouped documents by field by_user and on each occurance of
by_user previous value of sum is incremented. There is a list available aggregation expressions.
Pipeline Concept
In UNIX command shell pipeline means the possibility to execute an operation on some input and
use the output as the input for the next command and so on. MongoDB also support same concept
in aggregation framework. There is a set of possible stages and each of those is taken a set of
documents as an input and is producing a resulting set of documents
orthefinalresultingJSONdocumentattheendofthepipeline. This can then in turn again be used for the next stage
an so on.
Replication is the process of synchronizing data across multiple servers. Replication provides
redundancy and increases data availability with multiple copies of data on different database
servers, replication protects a database from the loss of a single server. Replication also allows
you to recover from hardware failure and service interruptions. With additional copies of the data,
you can dedicate one to disaster recovery, reporting, or backup.
Why Replication?
To keep your data safe
High 24 ∗ 7 availability of data
Disaster Recovery
No downtime for maintenance likebackups, indexrebuilds, compaction
Read scaling extracopiestoreadfrom
Replica set is transparent to the application
A typical diagram of mongodb replication is shown in which client application always interact with
primary node and primary node then replicate the data to the secondary nodes.
Replica set features
A cluster of N nodess
Anyone node can be primary
All write operations goes to primary
Automatic failover
Automatic Recovery
Consensus election of primary
Now start the mongodb server by specifying --replSet option. Basic syntax of --replSet is given
below:
Example
It will start a mongod instance with the name rs0, on port 27017. Now start the command prompt
and connect to this mongod instance. In mongo client issue the command rs.initiate to initiate a
new replica set. To check the replica set configuration issue the command rs.conf. To check the
status of replica sete issue the command rs.status.
Syntax:
Basic syntax of rs.add command is as follows:
>rs.add(HOST_NAME:PORT)
Example
Suppose your mongod instance name is mongod1.net and it is running on port 27017. To add
this instance to replica set issue the command rs.add in mongo client.
>rs.add("mongod1.net:27017")
>
You can add mongod instance to replica set only when you are connected to primary node. To
check whether you are connected to primary or not issue the command db.isMaster in mongo
client.
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - SHARDING
http://www.tutorialspoint.com/mongodb/mongodb_sharding.htm Copyright © tutorialspoint.com
Sharding
Sharding is the process of storing data records across multiple machines and it is MongoDB's
approach to meeting the demands of data growth. As the size of the data increases, a single
machine may not be sufficient to store the data nor provide an acceptable read and write
throughput. Sharding solves the problem with horizontal scaling. With sharding, you add more
machines to support data growth and the demands of read and write operations.
Why Sharding?
In replication all writes go to master node
Sharding in MongoDB
Below given diagram shows the sharding in MongoDB using sharded cluster.
In the above given diagram there are three main components which are described below:
Shards: Shards are used to store data. They provide high availability and data consistency.
In production environment each shard is a separate replica set.
Config Servers: Config servers store the cluster's metadata. This data contains a mapping
of the cluster's data set to the shards. The query router uses this metadata to target
operations to specific shards. In production environment sharded clusters have exactly 3
config servers.
Query Routers: Query Routers are basically mongos instances, interface with client
applications and direct operations to the appropriate shard. The query router processes and
targets operations to shards and then returns results to the clients. A sharded cluster can
contain more than one query router to divide the client request load. A client sends requests
to one query router. Generally a sharded cluster have many query routers.
MONGODB - CREATE BACKUP
http://www.tutorialspoint.com/mongodb/mongodb_create_backup.htm Copyright © tutorialspoint.com
Syntax:
Basic syntax of mongodump command is as follows
>mongodump
Example
Start your mongod server. Assuming that your mongod server is running on localhost and port
27017. Now open a command prompt and go to bin directory of your mongodb instance and type
the command mongodump
>mongodump
The command will connect to the server running at 127.0.0.1 and port 27017 and back all data
of the server to directory /bin/dump/. Output of the command is shown below:
There are a list of available options that can be used with the mongodump command.
Restore data
To restore backup data mongodb's mongorestore command is used. This command restore all of
the data from the back up directory.
Syntax
Basic syntax of mongorestore command is
>mongorestore
When you are preparing a MongoDB deployment, you should try to understand how your
application is going to hold up in production. It’s a good idea to develop a consistent, repeatable
approach to managing your deployment environment so that you can minimize any surprises once
you’re in production.
The best approach incorporates prototyping your set up, conducting load testing, monitoring key
metrics, and using that information to scale your set up. The key part of the approach is to
proactively monitor your entire system - this will help you understand how your production system
will hold up before deploying, and determine where you will need to add capacity. Having insight
into potential spikes in your memory usage, for example, could help put out a write-lock fire before
it starts.
To monitor your deployment MongoDB provides some commands that are shown below:
mongostat
This command checks the status of all running mongod instances and return counters of database
operations. These counters include inserts, queries, updates, deletes, and cursors. Command also
shows when you’re hitting page faults, and showcase your lock percentage. This means that you're
running low on memory, hitting write capacity or have some performance issue.
To run the command start your mongod instance. In another command prompt go to bin directory
of your mongodb installation and type mongostat.
D:\set up\mongodb\bin>mongostat
mongotop
This command track and report the read and write activity of MongoDB instance on a collection
basis. By default mongotop returns information in each second, by you can change it accordingly.
You should check that this read and write activity matches your application intention, and you’re
not firing too many writes to the database at a time, reading too frequently from disk, or are
exceeding your working set size.
To run the command start your mongod instance. In another command prompt go to bin directory
of your mongodb installation and type mongotop.
D:\set up\mongodb\bin>mongotop
To change mongotop command to return information less frequently specify a specific number
after the mongotop command.
D:\set up\mongodb\bin>mongotop 30
Apart from the mongodb tools, 10gen provides a free, hosted monitoring service MongoDB
Management Service MMS, that provides a dashboard and gives you a view of the metrics from
your entire cluster.
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - JAVA
http://www.tutorialspoint.com/mongodb/mongodb_java.htm Copyright © tutorialspoint.com
Installation
Before we start using MongoDB in our Java programs, we need to make sure that we have
MongoDB JDBC Driver and Java set up on the machine. You can check Java tutorial for Java
installation on your machine. Now, let us check how to set up MongoDB JDBC driver.
You need to download the jar from the path Download mongo.jar. Make sure to download
latest release of it.
You need to include the mongo.jar into your classpath.
Connect to database
To connect database, you need to specify database name, if database doesn't exist then mongodb
creates it automatically.
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
Now, let's compile and run above program to create our database test. You can change your path
as per your requirement. We are assuming current version of JDBC driver mongo-2.10.1.jar is
available in the current path
$javac MongoDBJDBC.java
$java -classpath ".:mongo-2.10.1.jar" MongoDBJDBC
Connect to database successfully
Authentication: true
If you are going to use Windows machine, then you can compile and run your code as follows:
$javac MongoDBJDBC.java
$java -classpath ".;mongo-2.10.1.jar" MongoDBJDBC
Connect to database successfully
Authentication: true
Value of auth will be true, if the user name and password are valid for the selected database.
Create a collection
To create a collection, createCollection method of com.mongodb.DB class is used.
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
When program is compiled and executed, it will produce the following result:
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
When program is compiled and executed, it will produce the following result:
Insert a document
To insert a document into mongodb, insert method of com.mongodb.DBCollection class is
used.
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
When program is compiled and executed, it will produce the following result:
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
When program is compiled and executed, it will produce the following result:
Update document
To update document from the collection, update method of com.mongodb.DBCollection class
is used.
Code snippets to select first document:
import com.mongodb.MongoClient;
import com.mongodb.MongoException;
import com.mongodb.WriteConcern;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
import com.mongodb.ServerAddress;
import java.util.Arrays;
When program is compiled and executed, it will produce the following result:
When program is compiled and executed, it will produce the following result:
Remaining mongodb methods save, limit, skip, sort etc works same as explained in subsequent
tutorial.
Loading [MathJax]/jax/output/HTML-CSS/jax.js
MONGODB - PHP
http://www.tutorialspoint.com/mongodb/mongodb_php.htm Copyright © tutorialspoint.com
To use mongodb with php you need to use mongodb php driver. Download the driver from the url
Download PHP Driver. Make sure to download latest release of it. Now unzip the archive and put
php_mongo.dll in your PHP extension directory " ext " bydefault and add the following line to your
php.ini file:
extension=php_mongo.dll
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
?>
Create a collection
Code snippets to create a collection would be as follows:
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
$collection = $db->createCollection("mycol");
echo "Collection created succsessfully";
?>
Insert a document
To insert a document into mongodb, insert method is used.
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
$collection = $db->mycol;
echo "Collection selected succsessfully";
$document = array(
"title" => "MongoDB",
"description" => "database",
"likes" => 100,
"url" => "http://www.tutorialspoint.com/mongodb/",
"by", "tutorials point"
);
$collection->insert($document);
echo "Document inserted successfully";
?>
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
$collection = $db->mycol;
echo "Collection selected succsessfully";
$cursor = $collection->find();
// iterate cursor to display title of documents
foreach ($cursor as $document) {
echo $document["title"] . "\n";
}
?>
Update a document
To update a document , you need to use update method.
In the below given example we will update the title of inserted document to MongoDB Tutorial.
Code snippets to update a document:
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
$collection = $db->mycol;
echo "Collection selected succsessfully";
Delete a document
To delete a document , you need to use remove method.
In the below given example we will remove the documents that has title MongoDB Tutorial. Code
snippets to delete document:
<?php
// connect to mongodb
$m = new MongoClient();
echo "Connection to database successfully";
// select a database
$db = $m->mydb;
echo "Database mydb selected";
$collection = $db->mycol;
echo "Collection selected succsessfully";
Remaining mongodb methods findOne, save, limit, skip, sort etc works same as explained in
above tutorial.
Loading [MathJax]/jax/output/HTML-CSS/jax.js