Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-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 A6B23DD2D for ; Fri, 15 Mar 2013 15:10:27 +0000 (UTC) Received: (qmail 42820 invoked by uid 500); 15 Mar 2013 15:10:27 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 42655 invoked by uid 500); 15 Mar 2013 15:10:23 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 42619 invoked by uid 99); 15 Mar 2013 15:10:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Mar 2013 15:10:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Mar 2013 15:10:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 27EB723889BB; Fri, 15 Mar 2013 15:08:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1456983 - in /accumulo/branches/1.5: conf/examples/3GB/native-standalone/ conf/examples/3GB/standalone/ core/src/main/java/org/apache/accumulo/core/conf/ server/src/main/java/org/apache/accumulo/server/util/ Date: Fri, 15 Mar 2013 15:08:06 -0000 To: commits@accumulo.apache.org From: kturner@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130315150807.27EB723889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kturner Date: Fri Mar 15 15:08:06 2013 New Revision: 1456983 URL: http://svn.apache.org/r1456983 Log: #ACCUMULO-1172 increased default metadata table split threshold Modified: accumulo/branches/1.5/conf/examples/3GB/native-standalone/accumulo-site.xml accumulo/branches/1.5/conf/examples/3GB/standalone/accumulo-site.xml accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/util/Initialize.java Modified: accumulo/branches/1.5/conf/examples/3GB/native-standalone/accumulo-site.xml URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/conf/examples/3GB/native-standalone/accumulo-site.xml?rev=1456983&r1=1456982&r2=1456983&view=diff ============================================================================== --- accumulo/branches/1.5/conf/examples/3GB/native-standalone/accumulo-site.xml (original) +++ accumulo/branches/1.5/conf/examples/3GB/native-standalone/accumulo-site.xml Fri Mar 15 15:08:06 2013 @@ -50,12 +50,12 @@ tserver.cache.data.size - 50M + 128M tserver.cache.index.size - 100M + 128M Modified: accumulo/branches/1.5/conf/examples/3GB/standalone/accumulo-site.xml URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/conf/examples/3GB/standalone/accumulo-site.xml?rev=1456983&r1=1456982&r2=1456983&view=diff ============================================================================== --- accumulo/branches/1.5/conf/examples/3GB/standalone/accumulo-site.xml (original) +++ accumulo/branches/1.5/conf/examples/3GB/standalone/accumulo-site.xml Fri Mar 15 15:08:06 2013 @@ -50,12 +50,12 @@ tserver.cache.data.size - 50M + 128M tserver.cache.index.size - 100M + 128M Modified: accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java?rev=1456983&r1=1456982&r2=1456983&view=diff ============================================================================== --- accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java (original) +++ accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java Fri Mar 15 15:08:06 2013 @@ -114,7 +114,7 @@ public enum Property { TSERV_PREFIX("tserver.", null, PropertyType.PREFIX, "Properties in this category affect the behavior of the tablet servers"), TSERV_CLIENT_TIMEOUT("tserver.client.timeout", "3s", PropertyType.TIMEDURATION, "Time to wait for clients to continue scans before closing a session."), TSERV_DEFAULT_BLOCKSIZE("tserver.default.blocksize", "1M", PropertyType.MEMORY, "Specifies a default blocksize for the tserver caches"), - TSERV_DATACACHE_SIZE("tserver.cache.data.size", "100M", PropertyType.MEMORY, "Specifies the size of the cache for file data blocks."), + TSERV_DATACACHE_SIZE("tserver.cache.data.size", "128M", PropertyType.MEMORY, "Specifies the size of the cache for file data blocks."), TSERV_INDEXCACHE_SIZE("tserver.cache.index.size", "512M", PropertyType.MEMORY, "Specifies the size of the cache for file indices."), TSERV_PORTSEARCH("tserver.port.search", "false", PropertyType.BOOLEAN, "if the ports above are in use, search higher ports until one is available"), TSERV_CLIENTPORT("tserver.port.client", "9997", PropertyType.PORT, "The port used for handling client connections on the tablet servers"), Modified: accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/util/Initialize.java URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/util/Initialize.java?rev=1456983&r1=1456982&r2=1456983&view=diff ============================================================================== --- accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/util/Initialize.java (original) +++ accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/util/Initialize.java Fri Mar 15 15:08:06 2013 @@ -89,7 +89,7 @@ public class Initialize { initialMetadataConf.put(Property.TABLE_FILE_REPLICATION.getKey(), "5"); initialMetadataConf.put(Property.TABLE_WALOG_ENABLED.getKey(), "true"); initialMetadataConf.put(Property.TABLE_MAJC_RATIO.getKey(), "1"); - initialMetadataConf.put(Property.TABLE_SPLIT_THRESHOLD.getKey(), "4M"); + initialMetadataConf.put(Property.TABLE_SPLIT_THRESHOLD.getKey(), "64M"); initialMetadataConf.put(Property.TABLE_CONSTRAINT_PREFIX.getKey() + "1", MetadataConstraints.class.getName()); initialMetadataConf.put(Property.TABLE_ITERATOR_PREFIX.getKey() + "scan.vers", "10," + VersioningIterator.class.getName()); initialMetadataConf.put(Property.TABLE_ITERATOR_PREFIX.getKey() + "scan.vers.opt.maxVersions", "1");