Skip to content

Commit

Permalink
[DOCS] Rollup V2: Fix rollup index def (#65770) (#66048)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig authored Dec 8, 2020
1 parent 0f1552d commit 06fade7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/reference/glossary.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,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

0 comments on commit 06fade7

Please sign in to comment.