Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5676C200BED for ; Sun, 1 Jan 2017 21:46:08 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5504D160B38; Sun, 1 Jan 2017 20:46:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9C8BA160B24 for ; Sun, 1 Jan 2017 21:46:07 +0100 (CET) Received: (qmail 73299 invoked by uid 500); 1 Jan 2017 20:46:06 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 73290 invoked by uid 99); 1 Jan 2017 20:46:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Jan 2017 20:46:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9783EDFBE5; Sun, 1 Jan 2017 20:46:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jerryjch@apache.org To: commits@hbase.apache.org Message-Id: <80c0c4ec543a4aec99624d59383988ea@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-16869 Fixed typo in 'Disabling Blockcache' doc Date: Sun, 1 Jan 2017 20:46:06 +0000 (UTC) archived-at: Sun, 01 Jan 2017 20:46:08 -0000 Repository: hbase Updated Branches: refs/heads/master 0e4866564 -> 521730ebc HBASE-16869 Fixed typo in 'Disabling Blockcache' doc Signed-off-by: Jerry He Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/521730eb Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/521730eb Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/521730eb Branch: refs/heads/master Commit: 521730ebc71995df514748b03554e56bfd8beafa Parents: 0e48665 Author: Jan Hentschel Authored: Sun Jan 1 20:53:52 2017 +0100 Committer: Jerry He Committed: Sun Jan 1 12:45:21 2017 -0800 ---------------------------------------------------------------------- src/main/asciidoc/_chapters/configuration.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/521730eb/src/main/asciidoc/_chapters/configuration.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/_chapters/configuration.adoc b/src/main/asciidoc/_chapters/configuration.adoc index 6e356bc..baa4d4c 100644 --- a/src/main/asciidoc/_chapters/configuration.adoc +++ b/src/main/asciidoc/_chapters/configuration.adoc @@ -938,7 +938,7 @@ See <> for more inf [[disabling.blockcache]] ==== Disabling Blockcache -Do not turn off block cache (You'd do it by setting `hbase.block.cache.size` to zero). Currently we do not do well if you do this because the RegionServer will spend all its time loading HFile indices over and over again. +Do not turn off block cache (You'd do it by setting `hfile.block.cache.size` to zero). Currently we do not do well if you do this because the RegionServer will spend all its time loading HFile indices over and over again. If your working set is such that block cache does you no good, at least size the block cache such that HFile indices will stay up in the cache (you can get a rough idea on the size you need by surveying RegionServer UIs; you'll see index block size accounted near the top of the webpage). [[nagles]]