Reputation: 467
is it possible using Spring Elasticsearch send "_update_by_query" api method
Upvotes: 0
Views: 704
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