Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 29845110EF for ; Fri, 27 Jun 2014 21:35:27 +0000 (UTC) Received: (qmail 45801 invoked by uid 500); 27 Jun 2014 21:35:27 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 45757 invoked by uid 500); 27 Jun 2014 21:35:26 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 45738 invoked by uid 99); 27 Jun 2014 21:35:26 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jun 2014 21:35:26 +0000 Date: Fri, 27 Jun 2014 21:35:26 +0000 (UTC) From: "Andrew Purtell (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-11362) Minor improvements to LoadTestTool and PerformanceEvaluation MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-11362?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14046422#comment-14046422 ] Andrew Purtell commented on HBASE-11362: ---------------------------------------- Testing this: {code} diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/util/LoadTestToo index b96f265..5ac5bb9 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/util/LoadTestTool.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/util/LoadTestTool.java @@ -440,7 +440,7 @@ public class LoadTestTool extends AbstractHBaseTool { Compression.Algorithm.valueOf(compressStr); String bloomStr = cmd.getOptionValue(OPT_BLOOM); - bloomType = bloomStr == null ? BloomType.ROW : + bloomType = bloomStr == null ? null : BloomType.valueOf(bloomStr); inMemoryCF = cmd.hasOption(OPT_INMEMORY); {code} > Minor improvements to LoadTestTool and PerformanceEvaluation > ------------------------------------------------------------ > > Key: HBASE-11362 > URL: https://issues.apache.org/jira/browse/HBASE-11362 > Project: HBase > Issue Type: Improvement > Reporter: Vandana Ayyalasomayajula > Assignee: Vandana Ayyalasomayajula > Priority: Minor > Fix For: 0.99.0, 0.98.4 > > Attachments: HBASE-11362_1.patch, HBASE-11362_2.patch > > > The current LoadTestTool can be improved to accept additional options like > number of splits and deferred log flush. Similarly performance evaluation can be extended to accept bloom filters. -- This message was sent by Atlassian JIRA (v6.2#6252)