From 774152b1817a529c1cb4e08bd099ade0bc6af046 Mon Sep 17 00:00:00 2001 From: Adam Locke Date: Wed, 24 Feb 2021 11:39:43 -0500 Subject: [PATCH] [DOCS] [7.x] Remove beta admonition for runtime fields. --- .../painless-runtime-fields-context.asciidoc | 1 - .../painless-guide/painless-runtime-fields.asciidoc | 1 - docs/reference/mapping/runtime.asciidoc | 6 ------ 3 files changed, 8 deletions(-) diff --git a/docs/painless/painless-contexts/painless-runtime-fields-context.asciidoc b/docs/painless/painless-contexts/painless-runtime-fields-context.asciidoc index 25f0c48f44fde..7022e187635ac 100644 --- a/docs/painless/painless-contexts/painless-runtime-fields-context.asciidoc +++ b/docs/painless/painless-contexts/painless-runtime-fields-context.asciidoc @@ -1,6 +1,5 @@ [[painless-runtime-fields-context]] === Runtime fields context -beta::[] Use a Painless script to calculate and emit <> values. diff --git a/docs/painless/painless-guide/painless-runtime-fields.asciidoc b/docs/painless/painless-guide/painless-runtime-fields.asciidoc index c900c6bf612d4..11df87af0ad3f 100644 --- a/docs/painless/painless-guide/painless-runtime-fields.asciidoc +++ b/docs/painless/painless-guide/painless-runtime-fields.asciidoc @@ -1,6 +1,5 @@ [[painless-runtime-fields]] === Use Painless scripts in runtime fields -beta::[] A runtime field is a field that is evaluated at query time. When you define a runtime field, you can immediately use it in search requests, aggregations, filtering, and sorting. diff --git a/docs/reference/mapping/runtime.asciidoc b/docs/reference/mapping/runtime.asciidoc index 155bfd218ecf7..f252eb7a88942 100644 --- a/docs/reference/mapping/runtime.asciidoc +++ b/docs/reference/mapping/runtime.asciidoc @@ -1,6 +1,5 @@ [[runtime]] == Runtime fields -beta::[] A _runtime field_ is a field that is evaluated at query time. Runtime fields enable you to: @@ -71,7 +70,6 @@ against runtime fields. [[runtime-mapping-fields]] === Map a runtime field -beta::[] You map runtime fields by adding a `runtime` section under the mapping definition and defining <>. This script has access to the @@ -199,7 +197,6 @@ to `boolean`, or if the runtime field is removed. [[runtime-search-request]] === Define runtime fields in a search request -beta::[] You can specify a `runtime_mappings` section in a search request to create runtime fields that exist only as part of the query. You specify a script as part of the `runtime_mappings` section, just as you would if adding a @@ -246,7 +243,6 @@ section of the index mapping. [[runtime-override-values]] === Override field values at query time -beta::[] If you create a runtime field with the same name as a field that already exists in the mapping, the runtime field shadows the mapped field. At query time, {es} evaluates the runtime field, calculates a value based on the @@ -441,7 +437,6 @@ which still returns in the response: [[runtime-retrieving-fields]] === Retrieve a runtime field -beta::[] Use the <> parameter on the `_search` API to retrieve the values of runtime fields. Runtime fields won't display in `_source`, but the `fields` API works for all fields, even those that were not sent as part of @@ -622,7 +617,6 @@ address. [[runtime-examples]] === Explore your data with runtime fields -beta::[] Consider a large set of log data that you want to extract fields from. Indexing the data is time consuming and uses a lot of disk space, and you just want to explore the data structure without committing to a schema up front.