From 157bd5b56446829b01e5dfdbf0f9e953e31af602 Mon Sep 17 00:00:00 2001 From: fengzhao Date: Wed, 17 Jul 2024 15:49:20 +0800 Subject: [PATCH] update docs --- docs/olap/02.Hbase.md | 95 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 94 insertions(+), 1 deletion(-) diff --git a/docs/olap/02.Hbase.md b/docs/olap/02.Hbase.md index 9c2c24cc9..7b4a5d108 100644 --- a/docs/olap/02.Hbase.md +++ b/docs/olap/02.Hbase.md @@ -33,4 +33,97 @@ HBase中的每个列都由Column Family(列族)和Column Qualifier(列限 6)Cell -由{rowkey, column Family:column Qualifier, timestamp}唯一确定的单元。cell中的数据是没有类型的,全部是字节码形式存储。 \ No newline at end of file +由{rowkey, column Family:column Qualifier, timestamp}唯一确定的单元。cell中的数据是没有类型的,全部是字节码形式存储。 + + + +```xml + + + + hbase.rootdir + /hbase + + + + + hbase.cluster.distributed + true + + + + + hbase.master.port + 16000 + + + + + hbase.master.info.port + 16010 + + + + + hbase.master.info.bindAddress + 0.0.0.0 + + + + + hbase.zookeeper.quorum + centos161,centos162,centos163 + + + + + hbase.zookeeper.property.dataDir + /opt/module/zookeeper/data + + + + + hbase.hregion.majorcompaction + 604800000 + + + + + hbase.hregion.majorcompaction.jitter + 0.50 + + + + + hbase.hstore.compactionThreshold + 3 + + + + + + hbase.regionserver.global.memstore.size + + + + + + hbase.regionserver.global.memstore.size.lower.limit + + + + + + hbase.regionserver.optionalcacheflushinterval + 3600000 + + + + + + hbase.hregion.memstore.flush.size + 134217728 + + +``` \ No newline at end of file