MongoDB Training
Viswa Online Trainings is one of the world’s leading online IT training providers. We deliver a comprehensive catalog of courses and online training for freshers and working professionals to help them achieve their career goals and experience our best services.
Learners : 1080
Duration : 45 Days
About Course
Our MongoDB Certification Training is an open-source database management system (DBMS) that uses a document-oriented database course model that supports various forms of data. Instead of using rows and tables as in relational databases, the MongoDB architecture is made up of collections and also documents. MongoDB’s how quickly the data can be written to the database. Data writes must be recorded and also writing new information to the database is limited by the capacity.
MongoDB Training Course Syllabus
✔ Theories to be covered,
✔ What is NoSQL?
✔ Why NoSQL databases are required
✔ Types of NoSQL Database
✔ ACID and BASE property
✔ CAP Theorem
✔ Benefits of NoSQL database
✔ Installation
✔ Start and Stop the Mongodb process
✔ Practical Session,
✔ Setting a Linux machine in AWS cloud or VM Ware,
✔ Installing MongoDB 3.2 on windows and Linux
✔ MongoDB Configuration
✔ Starting and stopping the process
✔ connecting through mongo shell
✔ Theories to be covered,
✔ Overview of MongoDB
✔ Document, collection, Databases
✔ JSON and BSON
✔ ObjectID Data type
✔ Journaling
✔ Storage Engine (WiredTiger, MMAP and In-memory)
✔ Capped collection
✔ TTL Index
✔ GridFS
✔ Practical Session
✔ Creating/Dropping Database, collection
✔ Understanding the storage engine
✔ Creating capped collection and TTL Indexes
✔ Default system collections
✔ Theories to be covered
✔ Create, Read, Update & Remove the documents
✔ Bulk insert operation
✔ Updating multiple documents
✔ Sorting the documents
✔ Limiting document
✔ Filtering documents
✔ Dropping the collections
✔ Practical sessions
✔ All the above topics
✔ Theories to be covered
✔ Dynamic Schema
✔ What is modeling?
✔ RDBMS and MongoDB Data modeling difference
✔ Embedded Documents
✔ Reference Documents
✔ Practical Session:
✔ Schema Creation
✔ Creating an Embedded document
✔ Creating reference document
✔ Theories to be covered.
✔ Introduction to Indexing
✔ Types of indexes
✔ Creating indexes
✔ managing indexes
✔ Index rebuilding.
✔ Explain execution plans
✔ Practical Session:
✔ All the above topics
✔ Theories to be covered.
✔ Server & Database health check
✔ Termination running operations
✔ Managing the log files
✔ Locking and connections
✔ Profiling for performance issues
✔ Changing configuration files
✔ Authentication and Authorization
✔ Users and Roles
✔ Role-based access control
✔ Copy and Clone database
✔ Troubleshooting issues
✔ Upgrading the database
✔ Practical Session:
✔ All the above topics
✔ Theories to be covered,
✔ Concept of replication
✔ ReplicaSet member roles
✔ Voting and Electing primary
✔ Role of Oplog in replication
✔ Read and Write concern
✔ Arbitor, Hidden and Delayed replica node
✔ Priority setting
✔ Replicaset node’s health check
✔ Concept of resyncing the nodes
✔ Rollbacks during failover
✔ Keyfile authentication
✔ Practical Session:
✔ Building 2 node replica set using key file authentication
✔ Add/Remove a node to existing replica set
✔ Changing priorities of noes, making delayed nodes and hidden nodes
✔ Resync a member of Replicaset
✔ Changing Oplog size
✔ Replicaset health checks
✔ Handling rollbacks
✔ Checking the read, and write concerns
✔ Theories to be covered
✔ Concept of Scalability
✔ Sharding concept
✔ Shardkey and chunks
✔ Choosing Shardkey
✔ Sharding components
✔ Types of Sharding
✔ Balanced data distribution
✔ Sharded and Non-sharded collection
✔ Sharded ReplicaSet
✔ Tag aware Sharding
✔ Practical Session,
✔ All of the Above
✔ Theories to be covered
✔ mongodump/mongorestore
✔ oplog backups
✔ LVM backups
✔ backups using mms/ops manager
✔ practical session:
✔ mongoexport/mongoimport
✔ mongodump/mongorestore
✔ point in time recovery using oplog
✔ Theories to be covered
✔ MMS manager / Cloud Manager
✔ Ops manager
✔ mongo utility commands
✔ mongo developer tools
✔ MongoDB Atlas
✔ MongoDB Client drives
✔ Practicals to be covered
✔ All the above
Live Instructor Based Training With Software |
Lifetime access and 24×7 support |
Certification Oriented content |
Hands-On complete Real-time training |
Get a certificate on course completion |
Flexible Schedules |
Live Recorded Videos Access |
Study Material Provided |
MongoDB Training - Upcoming Batches
7th NOV 2022
8 AM IST
Coming Soon
AM IST
5th NOV 2022
8 AM IST
Coming Soon
AM IST
Don't find suitable time ?
CHOOSE YOUR OWN COMFORTABLE LEARNING EXPERIENCE
Live Virtual Training
-
Schedule your sessions at your comfortable timings.
-
Instructor-led training, Real-time projects
-
Certification Guidance.
Self-Paced Learning
-
Complete set of live-online training sessions recorded videos.
-
Learn technology at your own pace.
-
Get access for lifetime.
Corporate Training
-
Learn As A Full Day Schedule With Discussions, Exercises,
-
Practical Use Cases
-
Design Your Own Syllabus Based
MongoDB Online Training FAQ'S
Some advantages of Mongo DB are as follows:
- Mongo DB supports field, range-based, string pattern matching type queries. for searching the data in the database
- Mongo DB support primary and secondary index on any fields
- Mongo DB basically uses JavaScript objects in place of procedures
- Mongo DB uses a dynamic database schema
- Mongo DB is very easy to scale up or down
- Mongo DB has inbuilt support for data partitioning (Sharding)
A Document in MongoDB is an ordered set of keys with associated values. It is represented by a map, hash, or dictionary. In JavaScript, documents are represented as objects:{"greeting" : "Hello world!"}
Complex documents will contain multiple key/value pairs:{"greeting" : "Hello world!", "views" : 3}
A collection in MongoDB is a group of documents. If a document is the MongoDB analog of a row in a relational database, then a collection can be thought of as the analog to a table.
Documents within a single collection can have any number of different “shapes.”, i.e. collections have dynamic schemas.
For example, both of the following documents could be stored in a single collection:
{"greeting" : "Hello world!", "views": 3}
{"signoff": "Good bye"}
MongoDB groups collections into databases. MongoDB can host several databases, each grouping together collections.
Some reserved database names are as follows:
admin
local
config
Get ahead in your career by learning MongoDB through VISWA Online Trainings
It is a JavaScript shell that allows interaction with a MongoDB instance from the command line. With that one can perform administrative functions, inspect an instance, or explore MongoDB.
To start the shell, run the mongo executable:
$ mongod
$ mongo
MongoDB shell version: 4.2.0
connecting to: test
>
The shell is a full-featured JavaScript interpreter, capable of running arbitrary JavaScript programs. Let’s see how basic math works on this:
> x = 100;
200
> x / 5;
20