Azure Storage Table size

后端 未结 2 504
没有蜡笔的小新
没有蜡笔的小新 2021-01-11 14:57

Azure billing is based on the size of used space. Now I need to know the details. What is the size of each storage object in my storage (blob container, single table)?

相关标签:
2条回答
  • 2021-01-11 15:26

    If you're not interested in getting a breakup by blob container, you don't have to write the code as far as finding the blob storage size is concerned. This information is available to you via storage analytics (http://msdn.microsoft.com/en-us/library/windowsazure/hh343270.aspx). The table of interest to you would be $MetricsCapacityBlob (http://msdn.microsoft.com/en-us/library/windowsazure/hh343264.aspx).

    Coming to tables, unfortunately no such thing is available and you would need to fetch all entities and calculate the size of each entity to find the table size. You may find this blog post useful in calculating the size of an entity: http://blogs.msdn.com/b/avkashchauhan/archive/2011/11/30/how-the-size-of-an-entity-is-caclulated-in-windows-azure-table-storage.aspx.

    HTH.

    0 讨论(0)
  • 2021-01-11 15:27

    There is a tool which can get table size or entities count for you. Azure Storage Manager

    1. Select a storage table in left tree pane
    2. Click 'Property' button
    3. Click 'Calc' button on the table properties dialog
    4. Wait a few moment, till 'Calc' button becomes available again.
    0 讨论(0)
提交回复
热议问题