0
0
MongoDBquery~30 mins

Why transactions are needed in MongoDB - See It in Action

Choose your learning style9 modes available
Understanding Why Transactions Are Needed in MongoDB
📖 Scenario: Imagine you are managing a small online bookstore. You keep track of books and customer orders in your MongoDB database. Sometimes, you need to update multiple pieces of information at once, like reducing the stock of a book and recording the customer's order. If one update happens but the other does not, your data can become incorrect.
🎯 Goal: Build a simple MongoDB transaction that updates two collections together to keep data accurate and consistent.
📋 What You'll Learn
Create two collections: books and orders with sample data
Set up a session to start a transaction
Update the books collection to reduce stock
Insert a new document into the orders collection
Commit the transaction to apply both changes together
💡 Why This Matters
🌍 Real World
Online stores, banking apps, and any system where multiple related updates must be done together safely.
💼 Career
Understanding transactions is key for database developers and backend engineers to ensure data integrity in real applications.
Progress0 / 4 steps
1
DATA SETUP: Create books and orders collections with sample data
Create two collections called books and orders. Insert one book document with { _id: 1, title: "Learn MongoDB", stock: 5 } into books. Insert an empty document into orders to prepare for orders.
MongoDB
Need a hint?

Use insertOne() to add documents to collections.

2
CONFIGURATION: Start a session and begin a transaction
Create a variable called session by calling db.getMongo().startSession(). Then start a transaction on this session by calling session.startTransaction().
MongoDB
Need a hint?

Use db.getMongo().startSession() to create a session and then startTransaction() on it.

3
CORE LOGIC: Update stock and insert order inside the transaction
Use session to update the books collection by reducing the stock of the book with _id: 1 by 1. Then insert a new order document { bookId: 1, quantity: 1 } into the orders collection using the same session.
MongoDB
Need a hint?

Use updateOne() with $inc to reduce stock and insertOne() to add an order, both with the session option.

4
COMPLETION: Commit the transaction and end the session
Call session.commitTransaction() to save the changes. Then call session.endSession() to finish the session.
MongoDB
Need a hint?

Use commitTransaction() to save and endSession() to close the session.