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

[jira] [Resolved] (SOLR-9391) LBHttpSolrClient.request can return incorrect Rsp.server string

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

Christine Poerschke resolved SOLR-9391.
---------------------------------------
       Resolution: Fixed
    Fix Version/s: 6.x
                   master (7.0)

> LBHttpSolrClient.request can return incorrect Rsp.server string
> ---------------------------------------------------------------
>
>                 Key: SOLR-9391
>                 URL: https://issues.apache.org/jira/browse/SOLR-9391
>             Project: Solr
>          Issue Type: Bug
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Christine Poerschke
>            Assignee: Christine Poerschke
>            Priority: Minor
>             Fix For: master (7.0), 6.x
>
>         Attachments: SOLR-9391.patch
>
>
> Problem:
> * [LBHttpSolrClient.request|https://github.com/apache/lucene-solr/blob/master/solr/solrj/src/java/org/apache/solr/client/solrj/impl/LBHttpSolrClient.java#L361-L366] assigns to {{rsp.server}} at line 361 and then at line 366 makes a {{doRequest(client, req, rsp, isUpdate, false, null);}} method call.
> * If the original {{doRequest}} call(s) did not succeed then later at [line 382|https://github.com/apache/lucene-solr/blob/master/solr/solrj/src/java/org/apache/solr/client/solrj/impl/LBHttpSolrClient.java#L382] additional {{doRequest}} calls may happen. These calls could use a different server but currently {{rsp.server}} remains unchanged and thus [LBHttpSolrClient.request|https://github.com/apache/lucene-solr/blob/master/solr/solrj/src/java/org/apache/solr/client/solrj/impl/LBHttpSolrClient.java#L331] could return an incorrect {{Rsp.server}} string value.
> Proposed fix: 
> * Change the [doRequest method|https://github.com/apache/lucene-solr/blob/master/solr/solrj/src/java/org/apache/solr/client/solrj/impl/LBHttpSolrClient.java#L409-L413] so that it assigns {{Rsp.server}} alongside the existing {{Rsp.rsp}} assignment.
> * Note that since the [HttpSolrClient constructor|https://github.com/apache/lucene-solr/blob/master/solr/solrj/src/java/org/apache/solr/client/solrj/impl/HttpSolrClient.java#L190-L199] trims of any trailing {{/}} from the {{baseUrl}} then the proposed fix potentially minutely changes the {{Rsp.getServer()}} return value.
> ** {{Rsp.getServer()}} is called by [HttpShardHandler.submit|https://github.com/apache/lucene-solr/blob/master/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandler.java#L200] as {{srsp.setShardAddress(rsp.getServer());}}
> ** I have not fully checked where/how {{getShardAddress()}} is then subsequently used but would very much hope that the removal of a trailing {{/}} would not cause any issues.



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