Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.8] [DOCS] Add soft redirect for sliced scroll (#60699) #60735

Merged
merged 1 commit into from
Aug 5, 2020
Merged
Show file tree
Hide file tree
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/docs/delete-by-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ This is "bursty" instead of "smooth".
[[docs-delete-by-query-slice]]
===== Slicing

Delete by query supports <<sliced-scroll, sliced scroll>> to parallelize the
Delete by query supports <<slice-scroll, sliced scroll>> to parallelize the
delete process. This can improve efficiency and provide a
convenient way to break the request down into smaller parts.

Expand Down Expand Up @@ -480,7 +480,7 @@ Which results in a sensible `total` like this one:
===== Use automatic slicing

You can also let delete-by-query automatically parallelize using
<<sliced-scroll, sliced scroll>> to slice on `_id`. Use `slices` to specify
<<slice-scroll, sliced scroll>> to slice on `_id`. Use `slices` to specify
the number of slices to use:

[source,console]
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/docs/reindex.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ timeouts.
[[docs-reindex-slice]]
===== Slicing

Reindex supports <<sliced-scroll>> to parallelize the reindexing process.
Reindex supports <<slice-scroll>> to parallelize the reindexing process.
This parallelization can improve efficiency and provide a convenient way to
break the request down into smaller parts.

Expand Down Expand Up @@ -247,7 +247,7 @@ which results in a sensible `total` like this one:
[[docs-reindex-automatic-slice]]
====== Automatic slicing

You can also let `_reindex` automatically parallelize using <<sliced-scroll>> to
You can also let `_reindex` automatically parallelize using <<slice-scroll>> to
slice on `_id`. Use `slices` to specify the number of slices to use:

[source,console]
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/docs/update-by-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ This is "bursty" instead of "smooth".
[[docs-update-by-query-slice]]
===== Slicing

Update by query supports <<sliced-scroll, sliced scroll>> to parallelize the
Update by query supports <<slice-scroll, sliced scroll>> to parallelize the
update process. This can improve efficiency and provide a
convenient way to break the request down into smaller parts.

Expand Down Expand Up @@ -593,7 +593,7 @@ Which results in a sensible `total` like this one:
===== Use automatic slicing

You can also let update by query automatically parallelize using
<<sliced-scroll>> to slice on `_id`. Use `slices` to specify the number of
<<slice-scroll>> to slice on `_id`. Use `slices` to specify the number of
slices to use:

[source,console]
Expand Down
10 changes: 10 additions & 0 deletions docs/reference/redirects.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,16 @@ See <<how-es-highlighters-work-internally>>.

See <<scroll-search-results>>.

[[_clear_scroll_api]]
===== Clear scroll API

See <<clear-scroll-api>>.

[[sliced-scroll]]
===== Sliced scroll

See <<slice-scroll>>.

[role="exclude",id="request-body-search-search-after"]
==== Search After

Expand Down