user2264784
user2264784

Reputation: 467

Is it possible use _update_by_query in spring elasticsearch

is it possible using Spring Elasticsearch send "_update_by_query" api method

Upvotes: 0

Views: 704

Answers (1)

Val
Val

Reputation: 217254

No, the Update by Query API is not implemented into Spring Data Elasticsearch, but nothing prevents you from using the TransportClient you feed into ElasticsearchTemplate for calling that endpoint.

Upvotes: 1

Related Questions