MongoDB Certification Training
One of the top providers of online IT training worldwide is VISWA Online Trainings. To assist beginners and working professionals in achieving their career objectives and taking advantage of our best services, We provide a wide range of courses and online training.
Learners : 1080
Duration : 45 Days
About Course
A document-oriented database course model is used by our MongoDB Certification Training, an open-source DBMS that handles a variety of data types. The MongoDB architecture is made up of collections and documents rather than rows and tables like in relational databases. The speed at which data may be entered into MongoDB. Data writes must be documented, and the database’s capacity restricts the amount of new data that may be added.
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
Reviews
Neelam Prudhviraj2024-11-18 I have gone through the you tube videos and there concept is very clear. Easy to understand and even learn very strongly. I will keep in touch on you tube to get the knowledge. Hari Krishna Maddineni2024-11-17 Have a great and Happy learning Vinod Vinnu2024-11-16 VISWA Online Trainings is an Online Live Training on Selenium with Python and Other part of IT training as well. Its is Really helping student on their career. VISWA Online Trainings is worldwide helping to students. 5F9Naveen Kavali2024-11-13 Course: SAP BW ON HANA October 2024 Batch Trainer: Anil My Feedback / Rating: very good to excellent nakka gopiyada1022024-11-09 I recently completed the VISWA Online Trainings, and I must say it exceeded my expectations in every way. The instructors were incredibly knowledgeable and engaging, making even complex topics easy to understand. The course structure was well-planned, with a perfect balance of theory and hands-on exercises. I especially appreciated the practical insights and real-world examples provided throughout the training, which have already proven invaluable in my day-to-day work. Overall, I highly recommend this course to anyone looking to enhance their skills and knowledge in SCCM. Arun Sparrow2024-11-06 I was enrolled for Oracle RAC. Initially I was skeptical about it but after I spoke with the counselor all my doubts were clear. Training was really good instructor was knowledgeable and was able to understand and clear my doubts. I am happy with VISWA Online Trainings and would recommend to my friends and colleagues for any training and certification. King King2024-11-05 I am taking training from Chenna Reddy for Sap Commerce Cloud and He is very professional and explaining well. narayana nani2024-11-05 VISWA online trainings is providing Very good training sessions. I have attended Azure devops classes ,well designed content ; Even I'm a fresher to this sector It's easy to understand all the concepts explained by Pavan Sir. Highly Recommendable Vallepu Sivakumar2024-11-04 Data Modelling Chandrasekar Training, Chandra shared real time documents and training its helpful more. Vallepu Sivakumar2024-11-04 Data Modelling Chandrasekar Training, Chandra shared real time documents and training its helpful more.