You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2022/07/06 22:02:14 UTC

[GitHub] [hbase] apurtell commented on pull request #4585: HBASE-27078 Allow configuring a separate timeout for meta scans (branch-2 backport)

apurtell commented on PR #4585:
URL: https://github.com/apache/hbase/pull/4585#issuecomment-1176794227

   @bbeaudreault 
   
   > that unfortunately in branch-2 scans use hbase.rpc.timeout instead of hbase.read.rpc.timeout. If anyone thinks its allowed, I'd love to fix that.
   
   It is directly fixable in branch-2.5 and branch-2. Just do something like
   
       # Use `hbase.read.rpc.timeout`. Fall back to `hbase.rpc.timeout` if not configured.
       readTimeout = conf.getLong("hbase.read.rpc.timeout", conf.getLong("hbase.rpc.timeout", DEFAULT));
   
   When resolving the JIRA add a release note so docmaker will pick up a note about the change.
   
   For branch-2.4, agree, I don't think we should touch it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hbase.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org