gpt4 book ai didi

amazon-web-services - AWS 文档数据库中的事务

转载 作者:行者123 更新时间:2023-12-04 10:45:50 27 4
gpt4 key购买 nike

考虑到事务能力,documentDB 与 dynamo DB 相比有多好?

以下是使用 dynamoDB 完成的事务操作示例。

const transactionResponse = await docClient.transactWrite({
TransactItems: [
{
Put: {
TableName: Table1,
Item: {
id,
userId,
anotherID,
createdAt: (new Date()).toISOString()
}
}
},
{
Update: {
TableName: Table2,
Key: {anotherID},
UpdateExpression: `set available = available - :val, count = count + :val, lastUpdatedDate = :updatedAt`,
ExpressionAttributeValues: {
":val": 1,
":updatedAt": (new Date()).toISOString(),
}
}
}
]

}).promise();

是否可以对 DocumentDB 执行相同的逻辑?我找到了 that ,在 AWS documentDB 中无法进行多语句事务。

最佳答案

DocumentDB 不支持事务,事务在 4.0 版中被引入到 mongoDB。 DocumentDB 仅支持 mongo 3.6 版。

云中 mongo 版本中的 Atals,https://www.mongodb.com/cloud/atlas .

支持具有事务的较新版本的 mongo。

关于amazon-web-services - AWS 文档数据库中的事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59711955/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com