You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/10/17 19:33:14 UTC

[2/3] git commit: ACCUMULO-1782 Point bulk load tests away from HDFS root

ACCUMULO-1782 Point bulk load tests away from HDFS root

This is a follow-on patch to ACCUMULO-1563, which adjusted directories
in some tests to avoid writing into the root of HDFS.

Signed-off-by: Eric Newton <er...@gmail.com>


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

Branch: refs/heads/master
Commit: fc2ad858cdee9d1b790043fb6adfe26c6f51b66a
Parents: 685cc4a
Author: Bill Havanki <bh...@cloudera.com>
Authored: Thu Oct 17 13:21:01 2013 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Thu Oct 17 13:31:34 2013 -0400

----------------------------------------------------------------------
 test/system/auto/simple/bulk.py       | 2 +-
 test/system/auto/simple/compaction.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/fc2ad858/test/system/auto/simple/bulk.py
----------------------------------------------------------------------
diff --git a/test/system/auto/simple/bulk.py b/test/system/auto/simple/bulk.py
index b0b73b4..7ba5c2b 100755
--- a/test/system/auto/simple/bulk.py
+++ b/test/system/auto/simple/bulk.py
@@ -79,7 +79,7 @@ class SimpleBulkTest(TestUtilsMixin, unittest.TestCase):
 
         # insert some data
         self.createRFiles()
-        self.bulkLoad(self.masterHost(), '/testrf')
+        self.bulkLoad(self.masterHost(), 'testrf')
         
         log.info("Verifying Ingestion")
         handles = []

http://git-wip-us.apache.org/repos/asf/accumulo/blob/fc2ad858/test/system/auto/simple/compaction.py
----------------------------------------------------------------------
diff --git a/test/system/auto/simple/compaction.py b/test/system/auto/simple/compaction.py
index 9bd0b56..bd39d62 100755
--- a/test/system/auto/simple/compaction.py
+++ b/test/system/auto/simple/compaction.py
@@ -57,7 +57,7 @@ class CompactionTest(SimpleBulkTest):
 
         # insert some data
         self.createRFiles(self.masterHost())
-        self.bulkLoad(self.masterHost(), '/testrf')
+        self.bulkLoad(self.masterHost(), 'testrf')
 
         out, err, code = self.shell(self.masterHost(), "table !METADATA\nscan -b ! -c ~tab,file\n")
         self.assert_(code == 0)