You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2013/05/30 01:30:23 UTC

[jira] [Created] (HBASE-8651) Result of integer multiplication cast to long in HRegionFileSystem#sleepBeforeRetry()

Ted Yu created HBASE-8651:
-----------------------------

             Summary: Result of integer multiplication cast to long in HRegionFileSystem#sleepBeforeRetry()
                 Key: HBASE-8651
                 URL: https://issues.apache.org/jira/browse/HBASE-8651
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
    Threads.sleep(baseSleepBeforeRetries * sleepMultiplier);
{code}
Both baseSleepBeforeRetries and sleepMultiplier are integers. Without proper casting, their product may be negative.
Here is an example:
{code}
  static int i = Integer.MAX_VALUE-1;
  static long j = i * 2;
{code}
value of j above is -4 while 4294967292 was the expected value.

--
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