【发布时间】:2015-08-16 14:05:20
【问题描述】:
我想知道 Azure Table 中的数据是如何存储在磁盘上的?它们是像 HBase 那样以柱状格式存储的吗?
【问题讨论】:
标签: azure-storage azure-table-storage
我想知道 Azure Table 中的数据是如何存储在磁盘上的?它们是像 HBase 那样以柱状格式存储的吗?
【问题讨论】:
标签: azure-storage azure-table-storage
Microsoft Azure Table 是 Microsoft Azure Storage 的一种形式,一种可扩展的云存储系统。 Azure 存储标记中有三层,流层将位存储在磁盘上,并负责跨多个服务器分发和复制数据,以使数据在标记中保持持久性。请参阅以下论文 (http://sigops.org/sosp/sosp11/current/2011-Cascais/11-calder-online.pdf) 中的“流层”部分,了解我们如何管理硬件上的数据。
【讨论】:
我不能肯定地说,但我不这么认为。 Azure 表存储是键值存储。 HDInsight 是 Azure 的列族存储,基于 Hadoop,类似于 HBase。
【讨论】: