You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2019/09/12 17:38:46 UTC

[accumulo-testing] branch master updated: Fix BulkImport concurrent rwalk

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

mmiller 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 32aba0e  Fix BulkImport concurrent rwalk
32aba0e is described below

commit 32aba0ef592bd8b40766025d1ed6f64a3c6ccca8
Author: Mike Miller <mm...@apache.org>
AuthorDate: Thu Sep 12 13:06:55 2019 -0400

    Fix BulkImport concurrent rwalk
---
 .../org/apache/accumulo/testing/randomwalk/concurrent/BulkImport.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/BulkImport.java b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/BulkImport.java
index 4dd9736..b3ebe27 100644
--- a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/BulkImport.java
+++ b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/BulkImport.java
@@ -97,7 +97,7 @@ public class BulkImport extends Test {
 
     FileSystem fs = FileSystem.get(env.getHadoopConfiguration());
 
-    String bulkDir = "/tmp/concurrent_bulk/b_"
+    String bulkDir = env.getHdfsRoot() + "/tmp/concurrent_bulk/b_"
         + String.format("%016x", rand.nextLong() & 0x7fffffffffffffffl);
 
     fs.mkdirs(new Path(bulkDir));