Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/indices/refresh.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ stream, index, or alias.
[[refresh-api-desc]]
==== {api-description-title}

Use the refresh API to explicitly make all operations performed on one or more
Use the refresh API to explicitly make all write operations performed on one or more
indices since the last refresh available for search.
If the request targets a data stream, it refreshes the stream's backing indices.

// tag::refresh-interval-default[]
By default, Elasticsearch periodically refreshes indices every second, but only on
indices that have received one search request or more in the last 30 seconds.
indices that have NOT received one search request or more in the last 30 seconds.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think that's accurate. I think there are no refreshes in idle shards.

// end::refresh-interval-default[]
You can change this default interval
using the <<index-refresh-interval-setting,`index.refresh_interval`>> setting.
Expand Down
Loading