从表存储中删除 Windows Azure 表 - 成本?

发布于 2024-12-25 14:27:52 字数 241 浏览 4 评论 0原文

我们目前有一个充满日志的 Azure 表。我们不知道其中有多少记录,但我们知道我们进行了 300 万笔交易。因此,在最坏的情况下,我们将有 3 亿。行。

我们想要彻底删除所有日志。 如果我们删除该表,这是否意味着 1 个事务,或者这是否意味着他将批量删除他可以删除的所有行并获得大约 300 万行。又交易了?

我找不到任何关于删除表命令实际上是 1 个事务这一事实的官方信息。

有什么帮助吗?

谢谢 !

We currently have an Azure Table filled with logs. We have no idea how many records are in them but we know that we did +- 3 mil transactions. So in worst-case scenario we will have 300 mil. rows.

We want to completely delete all the logs.
If we delete the table, will this mean 1 transaction or will this mean he will batch delete all the rows he can and getting around 3 mil. transactions again?

I can't find any official info about the fact that Delete table command is actually 1 transaction.

Any help?

Thanks !

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

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

发布评论

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

评论(2

最笨的告白 2025-01-01 14:27:52

事务按单个 REST 请求计费。

因此,您将需要支付 1 笔删除该表的事务的费用。

Transactions are billed as single REST requests.

As such you will be charged for 1 transaction to delete the table.

梦情居士 2025-01-01 14:27:52

完全爱管闲事的话,这可能是两个存储事务:

  • 一个是删除表。
  • 一种是重新创建表以继续记录日志。

To be completely nosy that would (could) be two storage transactions:

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