我的嵌入式键/值数据存储最终会超出 App Engine 限制吗?

发布于 2024-07-24 13:06:50 字数 338 浏览 8 评论 0原文

我的 Google 中嵌入了 BerkeleyDB 键/值数据存储区 App Engine 项目,不使用 Google Datastore。

当我将应用程序上传到 Google App Engine 时,数据库将小于 1MB。

但随着它的增长,随着时间的推移,它最终会超过 App Engine 文件大小限制吗?

这会对我正在运行的生产应用程序产生什么后果?

I have a BerkeleyDB key/value datastore embedded in my Google App Engine project, which does not use the Google Datastore.

When I upload the application to Google App Engine, the database will be less than 1MB.

But is it possible that, as it grows, over time it will eventually exceed an App Engine file-size limitation?

What would be the consequence of that to my running production application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2024-07-31 13:06:50

App Engine DataStore 实体限制为 1MB。 您将无法保存更大的实体。

DataStore 的免费配额为 1 GB。 如果超出此限制且禁用计费,您将无法保存新实体或扩大现有实体。 如果您启用了计费功能,您将需要支付额外存储费用。

App Engine 静态文件限制为 10 MB。 静态文件无法由您的应用程序更改,只能通过 appcfg.py 工具重新上传或删除。 您将无法上传大于 10 MB 的文件。

App Engine DataStore entity is limited to 1MB. You won't be able to save a larger entity.

Free quota for DataStore is 1 GB. If you exceed it with billing disabled, you won't be able to save new entities or enlarge existing entities. If you have billing enabled, you will be charged for additional storage.

App Engine static file limit is 10 MB. Static file can't be changed by your application, only re-uploaded or deleted by appcfg.py tool. You won't be able to upload a file larger than 10 MB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文