Fixed a problem, was running read option in hdfs of 4 should have been 3.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/4d0bc958 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/4d0bc958 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/4d0bc958 Branch: refs/heads/apache-blur-0.2 Commit: 4d0bc95896b6530753061aa0ca76904ae67e5b60 Parents: ffc817c Author: Aaron McCurry <[email protected]> Authored: Sat Sep 28 12:58:27 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sat Sep 28 12:58:27 2013 -0400 ---------------------------------------------------------------------- .../src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/4d0bc958/blur-store/src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java ---------------------------------------------------------------------- diff --git a/blur-store/src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java b/blur-store/src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java index b95f7d7..0b24ff0 100644 --- a/blur-store/src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java +++ b/blur-store/src/main/java/org/apache/blur/store/hdfs/HdfsDirectory.java @@ -55,7 +55,7 @@ public class HdfsDirectory extends Directory implements LastModified { private static final Log LOG = LogFactory.getLog(HdfsDirectory.class); - public static AtomicInteger fetchImpl = new AtomicInteger(4); + public static AtomicInteger fetchImpl = new AtomicInteger(3); // static { // Thread thread = new Thread(new Runnable() {
