我的嵌入式键/值数据存储最终会超出 App Engine 限制吗?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.