Transactions
Using MongoDB transactions in Orionjs
Transactions in MongoDB allow you to execute multiple operations as a single atomic unit, which either all succeed or all fail.
How Transactions Work in Orionjs
Orionjs does not provide a specific wrapper for MongoDB transactions. Instead, you can use the native MongoDB transaction API from the underlying MongoDB driver. This approach gives you full control over transaction management while still benefiting from Orionjs’s type safety and validation.
Using Transactions with Orionjs
To use transactions in Orionjs:
- Access the MongoDB client from your collection
- Start a session and a transaction
- Pass the session to your collection operations
- Commit or abort the transaction as needed
Important Notes About Sessions
When using sessions with Orionjs collection methods:
-
Pass the session in the
mongoOptions
object: -
All DataLoader methods bypass the session, so avoid using them within transactions.
-
You must explicitly commit or abort the transaction, and end the session.
Prerequisites
- MongoDB 4.0+ for replica set deployments
- MongoDB 4.2+ for sharded cluster deployments
- Your MongoDB connection must be to a replica set or sharded cluster (not a standalone server)
Best Practices
-
Keep Transactions Short: Long-running transactions can lead to performance issues
-
Handle Errors: Always handle errors to ensure transactions are properly aborted when needed
-
Consider Read Concerns: For critical operations, use appropriate read and write concerns
-
Check Modification Results: Always check the results of update operations to verify they modified the expected documents
-
Avoid Unnecessary Work: Only include operations that need atomicity in your transactions
-
Watch for Transaction Errors: Be prepared to handle transaction-specific errors like session timeout
Transactions provide a powerful way to ensure data consistency across multiple MongoDB operations while using Orionjs.
Was this page helpful?