[ 
https://issues.apache.org/jira/browse/HBASE-8359?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13634232#comment-13634232
 ] 

Sergey Shelukhin commented on HBASE-8359:
-----------------------------------------

+1
                
> Too much logs on HConnectionManager
> -----------------------------------
>
>                 Key: HBASE-8359
>                 URL: https://issues.apache.org/jira/browse/HBASE-8359
>             Project: HBase
>          Issue Type: Bug
>          Components: Client
>    Affects Versions: 0.95.0
>            Reporter: Nicolas Liochon
>            Assignee: Nicolas Liochon
>         Attachments: 8359.v1.patch
>
>
> Under a YCSB load test (for HBASE-6295), we can have sporadic bulk of logs 
> because of this:
> {code}
>       final RegionMovedException rme = RegionMovedException.find(exception);
>       if (rme != null) {
>         LOG.info("Region " + regionInfo.getRegionNameAsString() + " moved to 
> " +
>           rme.getHostname() + ":" + rme.getPort() + " according to " + 
> source.getHostnamePort());
>         updateCachedLocation(
>             regionInfo, source, rme.getServerName(), rme.getLocationSeqNum());
>       } else if (RegionOpeningException.find(exception) != null) {
>         LOG.info("Region " + regionInfo.getRegionNameAsString() + " is being 
> opened on "
>           + source.getHostnamePort() + "; not deleting the cache entry");
>       } else {
>         deleteCachedLocation(regionInfo, source);
>       }
> {code}
> They should just be removed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to