具有大型实体大小的 Azure 表存储

发布于 2024-11-16 00:03:24 字数 169 浏览 4 评论 0原文

有几个问题我找不到任何答案。希望有人可以提供帮助:

  1. 我将使用几乎 1MB 的实体大小。我找不到有关这些大型实体大小的读取延迟的任何信息。有没有人有这方面的信息。
  2. 有没有办法确定 Azure 表存储中的一行使用了多少空间。任何 API 都可以,

谢谢

A couple of questions that I can't find any answers to. Hope someone can help:

  1. I will be using entity sizes of almost 1MB. I can't find any information on read latency for these large entity sizes. Is there anyone out there that has any information on this.
  2. Is there any way to determine how much space is used for a row in Azure table storage. Any API for this

Thanks

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

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

发布评论

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

评论(1

夏末 2024-11-23 00:03:24

如果我们的大多数实体都很大,那么它会以某种方式 首先就违背了表存储的目的。事实上,您最多只能检索 4 x 4 次更新,因为实体事务限制为 4MB。

您可以在 AzureScope 项目 上获得有关表存储以及 Azure 其他存储服务的许多有用的测量结果。

然后,如果您想准确检查行的权重,只需使用 Fiddler 拦截您的 Web 请求,并直接查看正在生成的 XML。

If most of our entities are large, then it somehow defeats the purpose of Table Storage in the first place. Indeed, you will only be able to retrieve update them 4 by 4 max, as entity transactions are limited to 4MB.

You can get many useful measurements on the AzureScope project concerning the Table Storage, but also the other storage services of Azure.

Then, if you want to accurately check the weight of your rows, just use Fiddler to intercept your web requests, and directly look at the XML being produced.

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