Chandra Sekhar created HBASE-18197:
--------------------------------------
Summary: import.java, job output is printing two times.
Key: HBASE-18197
URL: https://issues.apache.org/jira/browse/HBASE-18197
Project: HBase
Issue Type: Bug
Components: hbase
Affects Versions: 1.0.2, 1.4.0
Reporter: Chandra Sekhar
Priority: Trivial
import.java, job output is printing two times.
{quote}
after job completed, job.waitForCompletion(true) is calling two times.
{quote}
{code}
Job job = createSubmittableJob(conf, otherArgs);
boolean isJobSuccessful = job.waitForCompletion(true);
if(isJobSuccessful){
// Flush all the regions of the table
flushRegionsIfNecessary(conf);
}
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.");
}
}
System.exit(job.waitForCompletion(true) ? 0 : 1);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)