有没有一种方法可以使用admin SDK在实时数据库中的不同字段上执行批处理事务?目前,我正在使用以下内容:
exports.function = functions.https.onCall((data, context) => {
var transactions = new Object();
transactions[0] = admin.database().ref('ref1/')
.transaction(currentCount => {
return (currentCount || 0) + 1;
}, (error, committed, dataSnapshot) => {...})
transactions[1] = admin.database().ref('ref2/')
.transaction(currentCount => {
return (currentCount || 0) + 1;
}, (error, committed, dataSnapshot) => {...})
return admin.database().ref().update(transactions)
// |^| error occurs right above '|^|', but i don't know why, i suspect it may have something to do with transactions object, and if so, what's the proper way to do batched transactions?
.then(result => {...})
.catch(error => {
console.error('error: ' + error)
})
}
但是每次调用此函数时,尽管事务确实可以批量处理,但会引发以下错误:
Unhandled error TypeError: obj.hasOwnProperty is not a function
at each (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:541:17)
at validateFirebaseData (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:1470:9)
at /srv/node_modules/@firebase/database/dist/index.node.cjs.js:1487:13
at each (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:542:13)
at validateFirebaseData (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:1470:9)
at /srv/node_modules/@firebase/database/dist/index.node.cjs.js:1559:9
at each (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:542:13)
at validateFirebaseMergeDataArg (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:1557:5)
at Reference.update (/srv/node_modules/@firebase/database/dist/index.node.cjs.js:13695:9)
at admin.firestore.collection.doc.collection.doc.create.then.writeResult (/srv/index.js:447:43)
答案 0 :(得分:1)
您不能将一堆交易传递到update()
调用中,这就是错误消息试图告诉您的内容(让人有些困惑)。
Firebase没有嵌套或批处理事务的概念。如果需要在多个位置执行事务,则需要在所有这些位置之上的节点上作为单个transaction
调用来运行此事务。您可能会猜到,在这种多位置事务上的争用很快将成为吞吐量限制,因此您需要考虑其他解决方案。
在您的用例中,我可以想到的“最简单”方法是用单个多位置更新替换两个事务,然后使用服务器端安全规则来验证操作。
有关如何执行类似操作的示例,请在此处查看我的答案:Is the way the Firebase database quickstart handles counts secure?
使用这种方法可以避免大部分争用,因为多位置更新不需要读取-发送-检查整个顶级节点,而只需阅读要更新的较低级别的节点。
您可能必须修改数据结构,甚至可能还要写入其他数据,才能使用此方法。但是作为回报,您将获得更具可扩展性的事务更新。