Can MongoDB changeStreams listen to system level collections?

188 views Asked by At

With the limited documentation available on MongoDB changestreams which they introduced version 3.6 onwards, I am not able to conclude if MongoDB changestreams let us listen to system collection changes.

Currently, I am interested in system.profile collection.

1

There are 1 answers

2
Wan B. On BEST ANSWER

As of MongoDB v4.0, you can’t open a change stream on internal database.system.profile collection.

The collection is reserved for internal use and is not included in the replica set oplog, and because changestreams rely on the oplog it won’t be able to broadcast the change events.