Home / Companies / MongoDB / Blog / August 2018

August 2018 Summaries

2 posts from MongoDB

Filter
Month: Year:
Post Summaries Back to Blog
Integrating MongoDB and Amazon Kinesis can help build intelligent, durable streams for real-time data processing. By using MongoDB Stitch Triggers, developers can automatically send updates to a Kinesis stream when relevant data changes in their MongoDB database. This setup allows for efficient streaming analytics on data such as cart abandonment or credit card fraud detection. The integration involves creating a Stitch application, configuring services to interact with external services like AWS Kinesis, writing functions to put records into the stream, and setting up triggers that watch specific operations in the MongoDB database. Once the data is in the Kinesis stream, additional services can be used downstream for analytics or processing, such as Amazon Kinesis Data Analytics.
Aug 31, 2018 1,290 words in the original blog post.
java MongoDB 4.0 introduces support for multi-document ACID transactions, extending the transactional guarantees across multiple documents, collections, and databases. This feature allows developers to ensure atomicity and consistency in their applications, particularly when dealing with complex business logic or distributed systems. By using multi-document transactions, developers can avoid issues such as partial updates or inconsistent data, which can arise from independent operations on separate documents or collections. The new feature builds upon MongoDB's existing single-document transactional capabilities and provides a more robust and reliable way to manage concurrent updates in large datasets.```java
Aug 14, 2018 2,632 words in the original blog post.