I hitting queries to solr through a custom developed layer and few queries which i time out in my layer are still in the solr instance. Is there a parameter in solr which can be used to time out an particular query
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
As stated in Solr query continues after client disconnects? and written in the Solr FAQ
But at the same spot in the FAQ is written
So you may configure your container to close a long running request so that the HTTPClients connected recieve a shutdown.
However that may not be enough, Solr could internally still be working, though generating load on your Server. Therefore the common timeAllowed parameter maybe used.
Either with each request or configured as default in your solrconfig.xml.