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

[DOCS] Rollup V2: Fix rollup index def #65770

Merged
merged 6 commits into from
Dec 8, 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
2 changes: 1 addition & 1 deletion docs/reference/glossary.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ ifdef::permanently-unreleased-branch[]

[[glossary-rollup]] rollup ::
// tag::rollup-def[]
Aggregates an index's time series data and stores the results in another index.
Aggregates an index's time series data and stores the results in a new index.
For example, you can roll up hourly data into daily or weekly summaries.
// end::rollup-def[]

Expand Down
13 changes: 7 additions & 6 deletions docs/reference/rollup/apis/rollup-api.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<titleabbrev>Rollup</titleabbrev>
++++

Aggregates an index's time series data and stores the results in another index.
Aggregates an index's time series data and stores the results in a new index.
For example, you can roll up hourly data into daily or weekly summaries.

[source,console]
Expand Down Expand Up @@ -67,12 +67,13 @@ syntax>> or wildcards (`*`).

`rollup_index`::
(Required, string)
Index that stores the rollup results. Cannot be a <<data-streams,data stream>>
or <<indices-aliases,index alias>>.
New index that stores the rollup results. Cannot be an existing index,
a <<data-streams,data stream>>, or an <<indices-aliases,index alias>>.
+
If this index does not exist, the request creates it. If the `<index>` is a
backing index for a data stream, this new index is a backing index for the same
stream.
The request creates this index with
<<index-modules-blocks,`index.blocks.write`>> set to `true`. If the original
`<index>` is a backing index for a data stream, this index is a backing index
for the same stream.

`groups`::
(Required, object)
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/rollup/rollup-apis.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ifdef::permanently-unreleased-branch[]

A rollup aggregates an index's time series data and stores the results in
another index. For example, you can roll up hourly data into daily or weekly
a new index. For example, you can roll up hourly data into daily or weekly
summaries.

* <<rollup-api,Rollup API>>
Expand Down