Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading through the hadoop code and found this line in a partitioner.

(key.hashCode() & Integer.MAX_VALUE) % numReduceTasks

Why are they using the bitwise AND?

share|improve this question

1 Answer

up vote 14 down vote accepted

To remove the sign bit. in the case that the hashCode is a negative number. its like Math.abs(key.hashCode())

share|improve this answer
1  
Except I would imagine probably faster... – Chris Thompson Feb 5 '11 at 1:12
Why would it be faster? – JohnFx Feb 5 '11 at 1:15
2  
They aren't actually doing Math.abs because of two's complement -- they just want any positive number (while respecting the probability distribution of the hashing function more or less). – ide Feb 5 '11 at 1:17
5  
Math.abs() has a strange habit to return a negative value on Integer.MIN_VALUE (namely this same value), since it is immune to the - operator. Thus the variant in the question is actually more secure, aside from being probably a bit faster, since no conditional is to be evaluated. – PaĆ­lo Ebermann Feb 5 '11 at 1:23
1  
This also avoids a method call, although Math.abs() can potentially be inlined by the Jit. – PhiLho May 26 '11 at 11:47
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.