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.

4627 Reviews 4.9
4.7/5

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

Introduction to NoSQL

✔ 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

Architecture

✔ 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

CRUD operations

✔ 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

Data Modeling

✔ 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

Indexes

✔ 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

Standalone Database Administration

✔ 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

Replication

✔ 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

Sharding

✔ 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

Mongo backup and restore

✔ 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

Monitoring and Other Tools.

✔ 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

Weekday

Coming Soon

AM IST

Weekday

5th NOV 2022

8 AM IST

Weekend

Coming Soon

AM IST

Weekend

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.
Preferred

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
For Business

MongoDB Online Training FAQ'S

What are some of the advantages of MongoDB?

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)

What is a Document in MongoDB?

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}

What is a Collection in MongoDB?

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"}

What are Databases in MongoDB?

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

What is the Mongo Shell?

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

Reviews

vishal meda
vishal meda
2023-04-15
They give trainings properly and trainers are well versed with them where i recommend to all viswa trainings are good!!
Ntr fan
Ntr fan
2023-04-01
I just finished sap bods training in Hyderabad. Excellent course and curriculum 100% doubt clarification sessions. Thanks Chaitanya
Shiva Krishna
Shiva Krishna
2023-04-01
I recently completed informatica online training with Chaitanya. Course was built by excellent trainer. And process of learning was streamlined. Thanks
Mohammad ali syed
Mohammad ali syed
2023-03-27
It was great and smooth understandable training. You can learn lots.
Govinda Bhatia
Govinda Bhatia
2023-03-19
Not recommended as there will be no server access working to do practical after training. Also there will be no fix for the same. So it's wastage of money. If server access not at all working then no meaning to provide server access. Also it not working for single day properly. Need to followup daily but in response you told will fix that sir at home once he will back will fix. After he came back again it's not working and not able to fix for single day also Every time new excuse it's wastage of money.
M Leela mohan
M Leela mohan
2023-03-15
I took SQL Server and MSBI Online training with Murali Krishna. I must say the course content was highly qualitative and the trainer covered all concepts. Overall it was a good experience with VISWA Online Trainings.
HARIKRISHNA BANDLA
HARIKRISHNA BANDLA
2023-03-13
Attended live Virtual training for IoT Trainer was very good. He had excellent knowledge of IoT and was very good at explaining concepts in detail.…
Lakshmi Lakshmi
Lakshmi Lakshmi
2023-01-18
Best sap commerce cloud and Spartacus training institute in india. He provides a great mix of listening, speaking, and practical learning activities and a very safe, supportive learning environment. He maintains a friendly relationship with the students during class. He not only teaches but also monitors our practice status on daily basis.
Ch Chandranath
Ch Chandranath
2023-01-18
I have undergone Oracle Tuning training. I can proudly say that this is one of the best training institutes available in the market. The way Mr. Kumar teaches the concepts and makes them understandable is very commendable and unique. Even a novice can clearly understand the concepts clearly after attending his classes.

Quick Links