A newer version is available. For the latest information, see the
current release documentation.
refresh
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
refresh
editThis setting is only used by the reindex action.
actions: 1: description: "Reindex index1 into index2" action: reindex options: wait_interval: 9 max_wait: -1 refresh: True request_body: source: index: index1 dest: index: index2 filters: - filtertype: none
Setting refresh
to True
will cause all re-indexed indexes to be refreshed.
This differs from the Index API’s refresh parameter which causes just the
shard that received the new data to be refreshed.
Read more about this setting at http://www.elastic.co/guide/en/elasticsearch/reference/5.4/docs-reindex.html
The default value is True
.