suggest 3

v6.3-01. API changes

Suggest stats metrics deprecatededitThe suggest stats were previously folded into the search on the indices stats API. As such, the suggest metric on the indices stats API has been a synonym for the search metric. In 6.3.0, the suggest metric is deprecated in favor of using search.이전에 suggest stats은 indices stats API의 search에 포함되어 있었다. 따라서, indices stats API의 suggest metric은 search metric의 동의어(s..

v5.0-12. Java API changes

Transport client has been movededitThe Java transport client has been moved to its own module which can be referenced using:Java transport client는 다음을 사용하여 참조할 수 있는 자체 module로 옮겨졌다. org.elasticsearch.client transport 5.0.0 The transport client is now created using the following snippet:이제 transport client는 다음 code를 이용하여 생성한다.TransportClient client = new PreBuiltTransportClient(Settings.EMPTY) .a..