[
https://issues.apache.org/jira/browse/HBASE-19798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16481040#comment-16481040
]
Hadoop QA commented on HBASE-19798:
-----------------------------------
| (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:red}-1{color} | {color:red} patch {color} | {color:red} 0m 4s{color}
| {color:red} HBASE-19798 does not apply to branch-1. Rebase required? Wrong
Branch? See https://yetus.apache.org/documentation/0.7.0/precommit-patchnames
for help. {color} |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | HBASE-19798 |
| JIRA Patch URL |
https://issues.apache.org/jira/secure/attachment/12924160/HBASE-19798.branch-1.002.patch
|
| Console output |
https://builds.apache.org/job/PreCommit-HBASE-Build/12877/console |
| Powered by | Apache Yetus 0.7.0 http://yetus.apache.org |
This message was automatically generated.
> Retry time should not be 0
> --------------------------
>
> Key: HBASE-19798
> URL: https://issues.apache.org/jira/browse/HBASE-19798
> Project: HBase
> Issue Type: Bug
> Components: hbase
> Affects Versions: 1.2.6
> Environment: linux centos 6.5
> jdk 1.8
>
>
> Reporter: chenrongwei
> Assignee: Xu Cang
> Priority: Minor
> Attachments: HBASE-19798.branch-1.001.patch,
> HBASE-19798.branch-1.002.patch
>
>
> hbase.client.retries.number should not be set to zero.
> if set to zero will cause ConnectionManager report
> NoServerForRegionException.
> source code detail in 1.2.6's ConnectionManager like belows:
> int localNumRetries = (retry ? numTries : 1);
> for (int tries = 0; true; tries++) {
> if (tries >= localNumRetries)
> { throw new NoServerForRegionException("Unable to find region for "
> + Bytes.toStringBinary(row) + " in " + tableName +
> " after " + localNumRetries + " tries."); }
> actual exception info
> org.apache.hadoop.hbase.client.NoServerForRegionException: Unable to find
> region for 196053079 in fin_tech:crawler_event after 0 tries.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)