[
https://issues.apache.org/jira/browse/SOLR-850?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
patrick o'leary updated SOLR-850:
---------------------------------
Attachment: SOLR-850.patch
Patches solr-1.3.0 release
Allows for 2 timeout settings to be configured per-request handler
shard-socket-timeout, which times out a socket which has been in read for too
long.
shard-connection-timeout, which times out a socket that's been in wait or
established too long.
All values are in ms's
config example:
{code:xml}
<requestHandler name="/search"
class="org.apache.solr.handler.component.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
</lst>
<int name="shard-socket-timeout">1000</int>
<int name="shard-connection-timeout">1000</int>
<arr name="components">
<str>query</str>
<str>facet</str>
<str>mlt</str>
<str>highlight</str>
<str>debug</str>
</arr>
</requestHandler>
{code}
> Addition of timeouts for distributed searching
> ----------------------------------------------
>
> Key: SOLR-850
> URL: https://issues.apache.org/jira/browse/SOLR-850
> Project: Solr
> Issue Type: Improvement
> Components: search
> Affects Versions: 1.3
> Reporter: patrick o'leary
> Fix For: 1.3
>
> Attachments: SOLR-850.patch
>
> Original Estimate: 24h
> Remaining Estimate: 24h
>
> Include configurable socket timeout and connection timeout settings for
> distributed searching.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.