GET /my_index/_search?scroll=2m
{
"sort": [
"_doc"
]
}
GET /my_index/_search
{
"aggs": {...},
"size": 0
}
Elasticsearch will now return an error message if a query’s from + size is more than the index.max_result_window parameter.
index.max_result_window default 10000
To avoid confusion the nested_path should always be specified.
MoreLikeThisQueryBuilder#ignoreLike => unlike
MoreLikeThisBuilder#addItem => MoreLikeThisBuilder#addLikeItem
We’ve switched the default value of the detect_noop option from false to true. This means that Elasticsearch will ignore updates that don’t change source unless you explicitly set "detect_noop": false. detect_noop was always computationally cheap compared to the expense of the update which can be thought of as a delete operation followed by an index operation.
detect_noop option=false => true
new Force Merge API
queue_size : 1k => 1000 (integer)
dynamically adjusted. X
Depending on the thread pool type, keep_alive, queue_size
https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-2.1.html