that is actually a bug IMO - Math.abs() can return -1 if it hits
Integer.MIN_VALUE
this code is just broken - can you open an issue!
On Wednesday, March 26, 2014 11:43:20 AM UTC+1, Kevin Wang wrote:
>
> pickIndex() will return the absolute value of the count, so it won't
> return a negative value. Can you provide more details?
>
>
> Kevin
>
>
> On Wednesday, March 26, 2014 3:53:15 PM UTC+11, Shinsuke Sugaya wrote:
>>
>> Hi
>>
>> I encountered the following problem:
>>
>> Caused by: java.lang.IndexOutOfBoundsException: index (-2) must not be
>> negative
>> at
>> org.elasticsearch.common.base.Preconditions.checkElementIndex(Preconditions.java:306)
>> at
>> org.elasticsearch.common.base.Preconditions.checkElementIndex(Preconditions.java:285)
>> at
>> org.elasticsearch.common.collect.RegularImmutableList.get(RegularImmutableList.java:65)
>> at
>> org.elasticsearch.cluster.routing.IndexShardRoutingTable.preferNodeActiveInitializingShardsIt(IndexShardRoutingTable.java:378)
>> at
>> org.elasticsearch.cluster.routing.operation.plain.PlainOperationRouting.preferenceActiveShardIterator(PlainOperationRouting.java:210)
>> at
>> org.elasticsearch.cluster.routing.operation.plain.PlainOperationRouting.getShards(PlainOperationRouting.java:80)
>> at
>> org.elasticsearch.action.get.TransportGetAction.shards(TransportGetAction.java:80)
>> at
>> org.elasticsearch.action.get.TransportGetAction.shards(TransportGetAction.java:42)
>> at
>> org.elasticsearch.action.support.single.shard.TransportShardSingleOperationAction$AsyncSingleAction.<init>(TransportShardSingleOperationAction.java:121)
>> at
>> org.elasticsearch.action.support.single.shard.TransportShardSingleOperationAction$AsyncSingleAction.<init>(TransportShardSingleOperationAction.java:97)
>> at
>> org.elasticsearch.action.support.single.shard.TransportShardSingleOperationAction.doExecute(TransportShardSingleOperationAction.java:74)
>> at
>> org.elasticsearch.action.support.single.shard.TransportShardSingleOperationAction.doExecute(TransportShardSingleOperationAction.java:49)
>> at
>> org.elasticsearch.action.support.TransportAction.execute(TransportAction.java:63)
>> at
>> org.elasticsearch.action.support.TransportAction.execute(TransportAction.java:49)
>> at
>> org.elasticsearch.client.node.NodeClient.execute(NodeClient.java:85)
>> at
>> org.elasticsearch.client.support.AbstractClient.get(AbstractClient.java:174)
>> ... 9 more
>>
>> My environment is:
>>
>> - Elasticserach 0.90.7
>> - 3 nodes in a cluster
>> - Send GET request with preference=_local
>>
>> Looking into IndexShardRoutingTable class, it seems that "loc" is
>> an unexpected negative value at the following code. pickIndex method
>> returns a value of "counter"(incremental value). If "counter" achieves
>> Integer.MAX_VALUE, I think that "loc" is negative and then
>> activeShards.get(loc) throws the exception.
>>
>> int index = pickIndex();
>> for (int i = 0; i < activeShards.size(); i++) {
>> int loc = (index + i) % activeShards.size();
>>
>> If it's a bug, I'll file an issue.
>>
>> Best regards,
>> shinsuke
>>
>>
--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/00ea862f-6104-411c-a786-47fd5c79d462%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.