HBASE-13352 Add hbase.import.version to Import usage (Lars Hofhansl)
This commit is contained in:
parent
1713f1fcaf
commit
c220635c78
|
@ -48,6 +48,7 @@ import org.apache.hadoop.hbase.util.Bytes;
|
|||
import org.apache.hadoop.hbase.zookeeper.ZKClusterId;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
|
||||
import org.apache.hadoop.mapreduce.Job;
|
||||
import org.apache.hadoop.mapreduce.TaskCounter;
|
||||
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
|
||||
import org.apache.hadoop.mapreduce.lib.input.SequenceFileInputFormat;
|
||||
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
|
||||
|
@ -502,7 +503,9 @@ public class Import extends Configured implements Tool {
|
|||
+ " Filter#filterKeyValue(KeyValue) method to determine if the KeyValue should be added;"
|
||||
+ " Filter.ReturnCode#INCLUDE and #INCLUDE_AND_NEXT_COL will be considered as including"
|
||||
+ " the KeyValue.");
|
||||
System.err.println(" -D " + JOB_NAME_CONF_KEY
|
||||
System.err.println("To import data exported from HBase 0.94, use");
|
||||
System.err.println(" -Dhbase.import.version=0.94");
|
||||
System.err.println(" -D " + JOB_NAME_CONF_KEY
|
||||
+ "=jobName - use the specified mapreduce job name for the import");
|
||||
System.err.println("For performance consider the following options:\n"
|
||||
+ " -Dmapreduce.map.speculative=false\n"
|
||||
|
@ -559,6 +562,16 @@ public class Import extends Configured implements Tool {
|
|||
// Flush all the regions of the table
|
||||
flushRegionsIfNecessary(getConf());
|
||||
}
|
||||
long inputRecords = job.getCounters().findCounter(TaskCounter.MAP_INPUT_RECORDS).getValue();
|
||||
long outputRecords = job.getCounters().findCounter(TaskCounter.MAP_OUTPUT_RECORDS).getValue();
|
||||
if (outputRecords < inputRecords) {
|
||||
System.err.println("Warning, not all records were imported (maybe filtered out).");
|
||||
if (outputRecords == 0) {
|
||||
System.err.println("If the data was exported from HBase 0.94 "+
|
||||
"consider using -Dhbase.import.version=0.94.");
|
||||
}
|
||||
}
|
||||
|
||||
return (isJobSuccessful ? 0 : 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue