You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/12/06 04:58:41 UTC

[2/5] git commit: ACCUMULO-1534 change default for tfile.fs.input.buffer.size in BCFile to 32K from 256K

ACCUMULO-1534 change default for tfile.fs.input.buffer.size in BCFile to 32K from 256K


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

Branch: refs/heads/master
Commit: 975881c10d1007fa43c1894fda12b3d41ea32dbb
Parents: e152635
Author: Keith Turner <kt...@apache.org>
Authored: Thu Dec 5 17:32:07 2013 -0500
Committer: Keith Turner <kt...@apache.org>
Committed: Thu Dec 5 17:32:07 2013 -0500

----------------------------------------------------------------------
 .../java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/975881c1/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java b/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
index 5b416cc..7ce6c2a 100644
--- a/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
+++ b/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
@@ -73,7 +73,7 @@ public final class BCFile {
   }
 
   private static int getFSInputBufferSize(Configuration conf) {
-    return conf.getInt(FS_INPUT_BUF_SIZE_ATTR, 256 * 1024);
+    return conf.getInt(FS_INPUT_BUF_SIZE_ATTR, 32 * 1024);
   }
 
   /**