Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1056120E6 for ; Tue, 3 May 2011 21:37:45 +0000 (UTC) Received: (qmail 53294 invoked by uid 500); 3 May 2011 21:37:44 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 53218 invoked by uid 500); 3 May 2011 21:37:44 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 53201 invoked by uid 99); 3 May 2011 21:37:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 May 2011 21:37:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 May 2011 21:37:42 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 780A8C0085 for ; Tue, 3 May 2011 21:37:03 +0000 (UTC) Date: Tue, 3 May 2011 21:37:03 +0000 (UTC) From: "Joe Siegrist (JIRA)" To: commits@cassandra.apache.org Message-ID: <1688392868.19844.1304458623488.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1683610268.19820.1304458383649.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Closed] (CASSANDRA-2599) Command Line Client has Memtable thresholds: (millions of ops/minutes/MB) last two parameters reversed MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CASSANDRA-2599?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Joe Siegrist closed CASSANDRA-2599. ----------------------------------- jbellis fixed this in April > Command Line Client has Memtable thresholds: (millions of ops/minutes/MB) last two parameters reversed > ------------------------------------------------------------------------------------------------------ > > Key: CASSANDRA-2599 > URL: https://issues.apache.org/jira/browse/CASSANDRA-2599 > Project: Cassandra > Issue Type: Bug > Components: Core > Affects Versions: 0.7.5 > Environment: All > Reporter: Joe Siegrist > Priority: Minor > Labels: cli > Fix For: 0.8.0 > > Original Estimate: 1m > Remaining Estimate: 1m > > Here's a patch > Index: src/java/org/apache/cassandra/cli/CliClient.java > =================================================================== > --- src/java/org/apache/cassandra/cli/CliClient.java (revision 1099262) > +++ src/java/org/apache/cassandra/cli/CliClient.java (working copy) > @@ -1325,7 +1325,7 @@ > sessionState.out.printf(" Row cache size / save period in seconds: %s/%s%n", cf_def.row_cache_size, cf_def.row_cache_save_period_in_seconds); > sessionState.out.printf(" Key cache size / save period in seconds: %s/%s%n", cf_def.key_cache_size, cf_def.key_cache_save_period_in_seconds); > sessionState.out.printf(" Memtable thresholds: %s/%s/%s (millions of ops/minutes/MB)%n", > - cf_def.memtable_operations_in_millions, cf_def.memtable_throughput_in_mb, cf_def.memtable_flush_after_mins); > + cf_def.memtable_operations_in_millions, cf_def.memtable_flush_after_mins, cf_def.memtable_throughput_in_mb); > sessionState.out.printf(" GC grace seconds: %s%n", cf_def.gc_grace_seconds); > sessionState.out.printf(" Compaction min/max thresholds: %s/%s%n", cf_def.min_compaction_threshold, cf_def.max_compaction_threshold); > sessionState.out.printf(" Read repair chance: %s%n", cf_def.read_repair_chance); -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira