215k views
3 votes
A. when using change streams, it is important to use the aggregation framework command to filter the events that are being monitored. b. when using change streams, it is important to use the find command to filter the events that are being monitored.

User Benroth
by
7.6k points

1 Answer

2 votes

Final answer:

The use of aggregation framework, not the find command, is important for filtering events with MongoDB change streams, which are real-time notifications for database changes.

Step-by-step explanation:

The question pertains to the use of change streams in MongoDB, which is a feature that allows applications to receive real-time notifications about database changes

To filter the events that are being monitored by change streams, it is indeed important to use the aggregation framework. The aggregation framework provides a powerful way to process and analyze data by using pipeline stages to filter and transform the data. Option A is correct because MongoDB's change streams utilize the aggregation framework to filter changes. In contrast, the find command is used for querying documents from a collection and is not used with change streams. Therefore, option B is incorrect. Understanding how to properly use the aggregation framework within change streams is essential for developers who need to monitor and react to database changes in real-time.

User Fedor Gogolev
by
7.7k points