Elasticsearch version (bin/elasticsearch --version
):5.2.2
JVM version (java -version
): 1.8.0_121
OS version (uname -a
if on a Unix-like system): opensuse
- Do search with " curl -XGET 'localhost:9200/_search?pretty&timeout=1ms' "
- The part of response is : { "took" : 5, "timed_out" : false, "_shards" : { "total" : 208, "successful" : 208, "failed" : 0 }, "hits" : { "total" : 104429, "max_score" : 1.0, "hits" : ...
- The took time is 5ms, and timeout setting is 1ms. Why "timed_out" is false rather than true.
Thanks