[
https://issues.apache.org/jira/browse/HBASE-18197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16079535#comment-16079535
]
Hadoop QA commented on HBASE-18197:
-----------------------------------
| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
| {color:blue}0{color} | {color:blue} reexec {color} | {color:blue} 0m
0s{color} | {color:blue} Docker mode activated. {color} |
| {color:blue}0{color} | {color:blue} docker {color} | {color:blue} 0m
4s{color} | {color:blue} Dockerfile
'/home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build/component/dev-support/docker/Dockerfile'
not found, falling back to built-in. {color} |
| {color:red}-1{color} | {color:red} docker {color} | {color:red} 8m
3s{color} | {color:red} Docker failed to build yetus/hbase:date2017-07-09.
{color} |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | HBASE-18197 |
| JIRA Patch URL |
https://issues.apache.org/jira/secure/attachment/12876313/HBASE-18197.branch-1.0.001.patch
|
| Console output |
https://builds.apache.org/job/PreCommit-HBASE-Build/7586/console |
| Powered by | Apache Yetus 0.4.0 http://yetus.apache.org |
This message was automatically generated.
> 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.2.0, 1.4.0
> Reporter: Chandra Sekhar
> Assignee: Jan Hentschel
> Priority: Trivial
> Attachments: HBASE-18197.branch-1.0.001.patch,
> HBASE-18197.branch-1.0.001.patch, HBASE-18197.branch-1.2.001.patch,
> HBASE-18197.branch-1.2.001.patch
>
>
> 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.4.14#64029)