7

我正在设置一个需要对 Amazon DocumentDB 的更改做出反应的微服务。在使用 MongoDB 时,我会使用 Reactive Change Streams。如果我使用 DocumentDB 执行此操作,则在注册更改侦听器时会出现异常,指出当前不支持更改流。

2019-02-12T11:46:15.513+0100 E QUERY    [js] Error: command failed: {
    "ok" : 0,
    "errmsg" : "The $changeStream stage is currently not supported",
    "code" : 303
} : aggregate failed :
_getErrorWithCode@src/mongo/shell/utils.js:25:13
doassert@src/mongo/shell/assert.js:18:14
_assertCommandWorked@src/mongo/shell/assert.js:534:17
assert.commandWorked@src/mongo/shell/assert.js:618:16
DB.prototype._runAggregate@src/mongo/shell/db.js:260:9
DBCollection.prototype.aggregate@src/mongo/shell/collection.js:1062:12
DBCollection.prototype.watch@src/mongo/shell/collection.js:1589:12
@(shell):1:1

对于“旧式”解决方案(op-log-tailing),我没有找到任何关于如何实现它的提示。

在 Amazon DocumentDB 上注册数据库更改的推荐设置是什么?

4

2 回答 2

5

Amazon DocumentDB 现在支持更改流:https ://aws.amazon.com/about-aws/whats-new/2019/10/amazon-documentdb-with-mongodb-compatibility-adds-support-for-change-streams/

于 2019-10-23T21:36:29.737 回答
0

我会使用 dynamodb。为它而生

于 2020-11-19T04:06:57.393 回答