You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/03/03 18:57:40 UTC

svn commit: r1076708 - in /hbase/branches/0.90: CHANGES.txt src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java

Author: stack
Date: Thu Mar  3 17:57:40 2011
New Revision: 1076708

URL: http://svn.apache.org/viewvc?rev=1076708&view=rev
Log:
HBASE-3591 completebulkload doesn't honor generic -D options

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1076708&r1=1076707&r2=1076708&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Thu Mar  3 17:57:40 2011
@@ -13,7 +13,8 @@ Release 0.90.2 - February 9th, 2011
    HBASE-3572  memstore lab can leave half inited data structs (bad!)
    HBASE-3589  test jar should not include mapred-queues.xml and
                log4j.properties
-   HBASE-3593 DemoClient.cpp is outdated
+   HBASE-3593  DemoClient.cpp is outdated
+   HBASE-3591  completebulkload doesn't honor generic -D options 
   
   IMPROVEMENTS
    HBASE-3542  MultiGet methods in Thrift

Modified: hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java?rev=1076708&r1=1076707&r2=1076708&view=diff
==============================================================================
--- hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java (original)
+++ hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java Thu Mar  3 17:57:40 2011
@@ -308,7 +308,7 @@ public class LoadIncrementalHFiles exten
     }
 
     Path hfofDir = new Path(args[0]);
-    HTable table = new HTable(args[1]);
+    HTable table = new HTable(this.getConf(), args[1]);
 
     doBulkLoad(hfofDir, table);
     return 0;