HBASE-3591 completebulkload doesn't honor generic -D options
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1076709 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c478055161
commit
ceddce542a
|
@ -130,6 +130,7 @@ Release 0.90.2 - Unreleased
|
||||||
HBASE-3572 memstore lab can leave half inited data structs (bad!)
|
HBASE-3572 memstore lab can leave half inited data structs (bad!)
|
||||||
HBASE-3589 test jar should not include mapred-queues.xml and
|
HBASE-3589 test jar should not include mapred-queues.xml and
|
||||||
log4j.properties
|
log4j.properties
|
||||||
|
HBASE-3591 completebulkload doesn't honor generic -D options
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3542 MultiGet methods in Thrift
|
HBASE-3542 MultiGet methods in Thrift
|
||||||
|
|
|
@ -308,7 +308,7 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
|
||||||
}
|
}
|
||||||
|
|
||||||
Path hfofDir = new Path(args[0]);
|
Path hfofDir = new Path(args[0]);
|
||||||
HTable table = new HTable(args[1]);
|
HTable table = new HTable(this.getConf(), args[1]);
|
||||||
|
|
||||||
doBulkLoad(hfofDir, table);
|
doBulkLoad(hfofDir, table);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue