You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2013/12/03 18:27:13 UTC

git commit: ACCUMULO-1905 increased tserver.mutation.queue.max default to 1M

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT eab163dcf -> f1f28be82


ACCUMULO-1905 increased tserver.mutation.queue.max default to 1M


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f1f28be8
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f1f28be8
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f1f28be8

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: f1f28be82a2c27ad905d3bde0669b10ab93d4cf5
Parents: eab163d
Author: Keith Turner <kt...@apache.org>
Authored: Tue Dec 3 12:26:54 2013 -0500
Committer: Keith Turner <kt...@apache.org>
Committed: Tue Dec 3 12:26:54 2013 -0500

----------------------------------------------------------------------
 core/src/main/java/org/apache/accumulo/core/conf/Property.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/f1f28be8/core/src/main/java/org/apache/accumulo/core/conf/Property.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
index 4fd2718..47f9c37 100644
--- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
@@ -172,7 +172,7 @@ public enum Property {
   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"),
-  TSERV_MUTATION_QUEUE_MAX("tserver.mutation.queue.max", "256K", PropertyType.MEMORY,
+  TSERV_MUTATION_QUEUE_MAX("tserver.mutation.queue.max", "1M", PropertyType.MEMORY,
       "The amount of memory to use to store write-ahead-log mutations-per-session before flushing them. Since the buffer is per write session, consider the"
           + " max number of concurrent writer when configuring.  When using Hadoop 2, Accumulo will call hsync() on the WAL .  For a small number of "
           + "concurrent writers, increasing this buffer size decreases the frequncy of hsync calls.  For a large number of concurrent writers a small buffers "