2.X/8. Breaking Changes
v2.1-02. Update changes
drscg
2017. 10. 15. 18:38
Updates now detect_noop
by defaultedit
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
로 변경하였다. 즉, 명시적으로 "detect_noop": false
를 설정하지 않으면 Elasticsearch가 source를 변경하지 않은 update를 무시한다는 것을 의미한다. detect_noop
는 delete 연산과 index 연산으로 생각할 수있는 update의 비용과 비교할 때 항상 더 저렴하다.