Firebase Cloud Firestore - 如果我的应用程序达到每天的最大文档数 writes/reads 会怎样?
Firebase Cloud Firestore - What happens if my app reached the maximum document writes/reads per day?
我使用 firebase cloud firestore(Spark 计划,免费计划)来存储我的应用程序的数据。
该计划包括每天 20K 的文档写入、读取和删除。
假设应用一天达到 20K 文档读取,我的问题是:会发生什么?
- 在我升级当前计划之前,Firestore 是否会收到任何请求?
- 它会不会在一天结束之前收不到任何请求,第二天就一切正常(我得到了新的 20K 读取)?
- 它会继续毫无问题地接收请求并在我的帐户上增加费用,然后我会惊讶地发现我必须为这些请求支付 1000 美元吗?
- 账户会被暂停或封锁吗?
我到处搜索了很多,但似乎找不到明确直接的答案。
Will the Firestore not receive any requests until I upgrade the current plan ?
- 每天应用配额,并在太平洋时间午夜前后每天重置。明天继续。
Will it not receive any requests until the end of the day, and everything will be ok on the next day (I get new 20K reads) ?
是的,超过免费配额限制的请求将被拒绝。 AFIK,错误 - RESOURCE_EXHAUSTED:超出配额。
是的,您将获得当天新的 20k 次免费阅读
Will it continue receiving the requests without any problems and adding charges on my account, then I get surprised that I have to pay 00 for these requests ?
- 绝对没有。
Will the account get suspended or blocked ?
- 没有.
对于配额和限制 - https://firebase.google.com/docs/firestore/quotas。
要检查您的项目使用情况,请在 Firebase 控制台中打开 Cloud Firestore Usage tab
我使用 firebase cloud firestore(Spark 计划,免费计划)来存储我的应用程序的数据。
该计划包括每天 20K 的文档写入、读取和删除。
假设应用一天达到 20K 文档读取,我的问题是:会发生什么?
- 在我升级当前计划之前,Firestore 是否会收到任何请求?
- 它会不会在一天结束之前收不到任何请求,第二天就一切正常(我得到了新的 20K 读取)?
- 它会继续毫无问题地接收请求并在我的帐户上增加费用,然后我会惊讶地发现我必须为这些请求支付 1000 美元吗?
- 账户会被暂停或封锁吗?
我到处搜索了很多,但似乎找不到明确直接的答案。
Will the Firestore not receive any requests until I upgrade the current plan ?
- 每天应用配额,并在太平洋时间午夜前后每天重置。明天继续。
Will it not receive any requests until the end of the day, and everything will be ok on the next day (I get new 20K reads) ?
是的,超过免费配额限制的请求将被拒绝。 AFIK,错误 - RESOURCE_EXHAUSTED:超出配额。
是的,您将获得当天新的 20k 次免费阅读
Will it continue receiving the requests without any problems and adding charges on my account, then I get surprised that I have to pay 00 for these requests ?
- 绝对没有。
Will the account get suspended or blocked ?
- 没有.
对于配额和限制 - https://firebase.google.com/docs/firestore/quotas。
要检查您的项目使用情况,请在 Firebase 控制台中打开 Cloud Firestore Usage tab