You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2019/06/25 20:34:50 UTC

[accumulo-testing] branch master updated: Fix split point code for bulk ingest

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new 4336dfb  Fix split point code for bulk ingest
4336dfb is described below

commit 4336dfb8e9a617d16322e5c6e57de901ddde6e10
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Tue Jun 25 16:32:05 2019 -0400

    Fix split point code for bulk ingest
---
 src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java b/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java
index bb3b3af..120daa2 100644
--- a/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java
+++ b/src/main/java/org/apache/accumulo/testing/continuous/BulkIngest.java
@@ -97,7 +97,7 @@ public class BulkIngest extends Configured implements Tool {
         }
 
         job.setPartitionerClass(KeyRangePartitioner.class);
-        KeyRangePartitioner.setSplitFile(job, splitsFile);
+        KeyRangePartitioner.setSplitFile(job, fs.getUri() + splitsFile);
 
         job.waitForCompletion(true);
         boolean success = job.isSuccessful();