You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updateByQueryRequest takes only the fist index from IndexCoordinates and therefore creates an update request with the single index, instead of that the request should contain all indices passed in IndexCoordinates
public UpdateByQueryRequest updateByQueryRequest(UpdateQuery query, IndexCoordinates index) {
String indexName = index.getIndexName(); // takes only the fist index from IndexCoordinates
// String[] indexName = index.getIndexNames(); - should take all index names instead
final UpdateByQueryRequest updateByQueryRequest = new UpdateByQueryRequest(indexName);
// ...
}