From 338e4d602c864d1123ef403946745904456de561 Mon Sep 17 00:00:00 2001 From: Doug Meil Date: Wed, 30 Nov 2011 16:32:58 +0000 Subject: [PATCH] hbase-4905. book.xml (keyvalue types), ops_mgt.xml (metrics corrections) git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1208495 13f79535-47bb-0310-9956-ffa450edef68 --- src/docbkx/book.xml | 2 +- src/docbkx/ops_mgt.xml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/docbkx/book.xml b/src/docbkx/book.xml index 83ec9e87c59..1b90bcab54c 100644 --- a/src/docbkx/book.xml +++ b/src/docbkx/book.xml @@ -1704,7 +1704,7 @@ scan.setFilter(filter); columnfamily columnqualifier timestamp - keytype (e.g., Put, Delete) + keytype (e.g., Put, Delete, DeleteColumn, DeleteFamily) For more information, see the KeyValue source code. diff --git a/src/docbkx/ops_mgt.xml b/src/docbkx/ops_mgt.xml index d86d2f6fa6e..b1fcac44b34 100644 --- a/src/docbkx/ops_mgt.xml +++ b/src/docbkx/ops_mgt.xml @@ -300,7 +300,7 @@ false
RegionServer Metrics
<varname>hbase.regionserver.blockCacheCount</varname> - Block cache item count in memory. This is the number of blocks of storefiles (HFiles) in the cache. + Block cache item count in memory. This is the number of blocks of StoreFiles (HFiles) in the cache.
<varname>hbase.regionserver.blockCacheFree</varname> Block cache memory available (bytes). @@ -312,7 +312,7 @@ false Block cache size in memory (bytes). i.e., memory in use by the BlockCache
<varname>hbase.regionserver.compactionQueueSize</varname> - Size of the compaction queue. This is the number of stores in the region that have been targeted for compaction. + Size of the compaction queue. This is the number of Stores in the RegionServer that have been targeted for compaction.
<varname>hbase.regionserver.fsReadLatency_avg_time</varname> Filesystem read latency (ms). This is the average time to read from HDFS. @@ -342,13 +342,13 @@ false Total number of read and write requests. Requests correspond to RegionServer RPC calls, thus a single Get will result in 1 request, but a Scan with caching set to 1000 will result in 1 request for each 'next' call (i.e., not each row). A bulk-load request will constitute 1 request per HFile.
<varname>hbase.regionserver.storeFileIndexSizeMB</varname> - Sum of all the storefile index sizes in this RegionServer (MB) + Sum of all the StoreFile index sizes in this RegionServer (MB)
<varname>hbase.regionserver.stores</varname> - Number of stores open on the RegionServer. A store corresponds to a column family. For example, if a table (which contains the column family) has 3 regions on a RegionServer, there will be 3 stores open for that column family. + Number of Stores open on the RegionServer. A Store corresponds to a ColumnFamily. For example, if a table (which contains the column family) has 3 regions on a RegionServer, there will be 3 stores open for that column family.
<varname>hbase.regionserver.storeFiles</varname> - Number of store filles open on the RegionServer. A store may have more than one storefile (HFile). + Number of StoreFiles open on the RegionServer. A store may have more than one StoreFile (HFile).