LoginSignup
2
3

More than 5 years have passed since last update.

Solrクライアントからのクエリにタイムアウトを設定する

Posted at

Timing out a query in Solr

上のリンク先を参考にする。

solrconfig.xml

<requestHandler name="standard" class="solr.StandardRequestHandler" default="true">
    <lst name="defaults">
        <!-- other parts left out -->
        <!-- timeout (in milliseconds) -->
        <int name="timeAllowed">5000</int>
    </lst>
</requestHandler>

Solr Wiki timeAllowed

The time allowed for a search to finish. This value only applies to the search and not to requests in general. Time is in milliseconds. Values <= 0 mean no time restriction. Partial results may be returned (if there are any).

Common Query Parameters

timeAllowed
Defines the time allowed for the query to be processed. If the time elapses before the query response is complete, partial information may be returned.

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3