什么被视为针对 Google Cloud 数据存储中的实体组限制进行写入



根据数据存储文档,实体组的最大写入速率为每秒 1 次。

https://cloud.google.com/datastore/docs/concepts/limits

我想知道这种情况是否计入该限制作为单个或多个查询。

在Stack Overflow上也有类似的问题 - 但它们似乎并没有确认你能做什么。

const datastore = require('@google-cloud/datastore')();
const key1 = datastore.key(['Users', 1, 'Comments']);
const comment1 = {
    userId: 1,
    commentBody: '...',
    ts: new Date(),
};
const key2 = datastore.key(['Users', 2, 'Comments']);
const comment2 = {
    userId: 2,
    commentBody: '...',
    ts: new Date(),
};
datastore.save({
    key: key1,
    data: comment1
}, (err) => {
    //
});
datastore.save({
    key: key2,
    data: comment2
}, (err) => {
    //
});

在此处查看您的实体,您有 2 个实体组:

  1. 用户/1
  2. 用户/2

然后保存 2 个注释实体,每个实体组下一个。这计为每个实体组 1 次写入。

相关内容

  • 没有找到相关文章

最新更新