Fixed page size description
Signed-off-by: keithhc2 <keithhc2@users.noreply.github.com>
This commit is contained in:
parent
49e596c20b
commit
155cbaaf5e
|
@ -135,7 +135,7 @@ metadata_id | String | Any metadata to be associated with the transform job. | N
|
||||||
source_index | String | The source index whose data to transform. | Yes
|
source_index | String | The source index whose data to transform. | Yes
|
||||||
target_index | String | The target index the newly transformed data is added into. You can create a new index or update an existing one. | Yes
|
target_index | String | The target index the newly transformed data is added into. You can create a new index or update an existing one. | Yes
|
||||||
data_selection_query | Object | The query DSL to use to filter a subset of the source index for the transform job. See [query DSL]({{site.url}}{{site.baseurl}}/opensearch/query-dsl) for more information. | Yes
|
data_selection_query | Object | The query DSL to use to filter a subset of the source index for the transform job. See [query DSL]({{site.url}}{{site.baseurl}}/opensearch/query-dsl) for more information. | Yes
|
||||||
page_size | Integer | The number of fields to transform at a time. Higher number means higher performance but requires more memory and can cause higher latency. Default is 1. | Yes
|
page_size | Integer | The maximum number of buckets OpenSearch can use to transform data. Higher number means higher performance but requires more memory and can cause higher latency. Default is 1. | Yes
|
||||||
groups | Array | Specifies the grouping(s) to use in the transform job. Supported groups are `terms`, `histogram`, and `date_histogram`. For more information, see [Bucket Aggregations]({{site.url}}{{site.baseurl}}/opensearch/bucket-agg). | Yes if not using aggregations
|
groups | Array | Specifies the grouping(s) to use in the transform job. Supported groups are `terms`, `histogram`, and `date_histogram`. For more information, see [Bucket Aggregations]({{site.url}}{{site.baseurl}}/opensearch/bucket-agg). | Yes if not using aggregations
|
||||||
source_field | String | The field(s) to transform | Yes
|
source_field | String | The field(s) to transform | Yes
|
||||||
aggregations | Object | The aggregations to use in the transform job. Supported aggregations are: `sum`, `max`, `min`, `value_count`, `avg`, `scripted_metric`, and `percentiles`. For more information, see [Metric Aggregations]({{site.url}}{{site.baseurl}}/opensearch/metric-agg). | Yes if not using groups
|
aggregations | Object | The aggregations to use in the transform job. Supported aggregations are: `sum`, `max`, `min`, `value_count`, `avg`, `scripted_metric`, and `percentiles`. For more information, see [Metric Aggregations]({{site.url}}{{site.baseurl}}/opensearch/metric-agg). | Yes if not using groups
|
||||||
|
|
Loading…
Reference in New Issue