You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "longkeyy (JIRA)" <ji...@apache.org> on 2014/08/31 18:40:20 UTC

[jira] [Created] (SOLR-6457) loadblance will not work when count > Integer.MAX_VALUE

longkeyy created SOLR-6457:
------------------------------

             Summary: loadblance will not work when count > Integer.MAX_VALUE
                 Key: SOLR-6457
                 URL: https://issues.apache.org/jira/browse/SOLR-6457
             Project: Solr
          Issue Type: Bug
          Components: clients - java
    Affects Versions: 4.9, 4.8.1, 4.8, 4.7.2, 4.7.1, 4.7, 4.6.1, 4.6, 4.5.1, 4.5, 4.4, 4.3.1, 4.3, 4.2.1, 4.2, 4.1, 4.0
            Reporter: longkeyy


org.apache.solr.client.solrj.impl.LBHttpSolrServer
line 442
      int count = counter.incrementAndGet();      
      ServerWrapper wrapper = serverList[count % serverList.length];

when count >  Integer.MAX_VALUE
count % serverList.length will loop by 0,-1,0,-1..........

suggess to fixup it ,eg:
//keep count is greater than 0
int count = counter.incrementAndGet() & 0x7FFFFFF;  



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

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org