发布于 2017-06-21 23:49:38 | 119 次阅读 | 评论: 0 | 来源: 网友投递
HBase分布式面向列的开源数据库
HBase是一个分布式的、面向列的开源数据库,该技术来源于 Fay Chang 所撰写的Google论文“Bigtable:一个结构化数据的分布式存储系统”。就像Bigtable利用了Google文件系统(File System)所提供的分布式数据存储一样,HBase在Hadoop之上提供了类似于Bigtable的能力。HBase是Apache的Hadoop项目的子项目。HBase不同于一般的关系数据库,它是一个适合于非结构化数据存储的数据库。另一个不同的是HBase基于列的而不是基于行的模式。
Apache HBase 1.1.11 发布了。这个是HBase 1.1系列中的第11个补丁版本,继续为 Hadoop 和 NoSQL 社区带来稳定可靠的数据库。此版本包含自1.1.10以来的近20个错误修复。值得注意的更新包括:
HBASE-16011 TableSnapshotScanner and TableSnapshotInputFormat can produce duplicate rows
HBASE-17937 Memstore size becomes negative in case of expensive postPut/Delete Coprocessor call
HBASE-18036 HBase 1.x : Data locality is not maintained after cluster restart or SSH
HBASE-18066 Get with closest_row_before on "hbase:meta" can return empty Cell during region merge/split
HBASE-18081 The way we process connection preamble in SimpleRpcServer is broken
HBASE-18093 Overloading the meaning of 'enabled' in Quota Manager to indicate either quota disabled or quota manager not ready is not good
完整更新内容请查看更新日志。