[jira] [Updated] (HADOOP-13202) Implementation of getNBytes in org.apache.hadoop.util.bloom.BloomFilter might be changed

2016-05-24 Thread zhengbing li (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-13202?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

zhengbing li updated HADOOP-13202:
--
Description: 
Current implementation:
return (vectorSize + 7) / 8;
when vectorSize is 2147483647(the max value of Int), error 
:"java.lang.NegativeArraySizeException" will report 
the implementation might be changed
return (int)(((long)vectorSize + 7) / 8);





  was:
Current implementation:
return (vectorSize + 7) / 8;
when vectorSize is 2147483647(the max value of Int), error 
:"java.lang.NegativeArraySizeException" will report 
the implementation might be changed
return (int)((long)vectorSize + 7) / 8;






> Implementation of getNBytes in org.apache.hadoop.util.bloom.BloomFilter might 
> be changed
> 
>
> Key: HADOOP-13202
> URL: https://issues.apache.org/jira/browse/HADOOP-13202
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 2.7.2
>Reporter: zhengbing li
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> Current implementation:
> return (vectorSize + 7) / 8;
> when vectorSize is 2147483647(the max value of Int), error 
> :"java.lang.NegativeArraySizeException" will report 
> the implementation might be changed
> return (int)(((long)vectorSize + 7) / 8);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org



[jira] [Created] (HADOOP-13202) Implementation of getNBytes in org.apache.hadoop.util.bloom.BloomFilter might be changed

2016-05-24 Thread zhengbing li (JIRA)
zhengbing li created HADOOP-13202:
-

 Summary: Implementation of getNBytes in 
org.apache.hadoop.util.bloom.BloomFilter might be changed
 Key: HADOOP-13202
 URL: https://issues.apache.org/jira/browse/HADOOP-13202
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 2.7.2
Reporter: zhengbing li


Current implementation:
return (vectorSize + 7) / 8;
when vectorSize is 2147483647(the max value of Int), error 
:"java.lang.NegativeArraySizeException" will report 
the implementation might be changed
return (int)((long)vectorSize + 7) / 8;







--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org