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/783f8345 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/783f8345 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/783f8345 Branch: refs/heads/master Commit: 783f83455ece958ea50ec49942b83a0f5242d31c Parents: 6b00070 Author: Aaron McCurry <[email protected]> Authored: Sat Sep 28 12:58:27 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sun Sep 29 09:18:45 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/783f8345/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() {
