Class Settings
java.lang.Object
co.elastic.clients.elasticsearch.transform.Settings
- All Implemented Interfaces:
JsonpSerializable
The source of the data for the transform.
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final JsonpDeserializer<Settings>Json deserializer forSettings -
Method Summary
Modifier and TypeMethodDescriptionfinal BooleanSpecifies whether the transform checkpoint ranges should be optimized for performance.final BooleanDefines if dates in the ouput should be written as ISO formatted string or as millis since epoch.final BooleanSpecifies whether the transform should deduce the destination index mappings from the transform configuration.final FloatSpecifies a limit on the number of input documents per second.final IntegerDefines the initial page size to use for the composite aggregation for each checkpoint.static Settingsvoidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) protected static voidtoString()final BooleanIftrue, the transform runs in unattended mode.final BooleanSpecifies whether the transform checkpoint will use the Point In Time API while searching over the source index.
-
Field Details
-
_DESERIALIZER
Json deserializer forSettings
-
-
Method Details
-
of
-
alignCheckpoints
Specifies whether the transform checkpoint ranges should be optimized for performance. Such optimization can align checkpoint ranges with the date histogram interval when date histogram is specified as a group source in the transform config. As a result, less document updates in the destination index will be performed thus improving overall performance.API name:
align_checkpoints -
datesAsEpochMillis
Defines if dates in the ouput should be written as ISO formatted string or as millis since epoch. epoch_millis was the default for transforms created before version 7.11. For compatible output set this value totrue.API name:
dates_as_epoch_millis -
deduceMappings
Specifies whether the transform should deduce the destination index mappings from the transform configuration.API name:
deduce_mappings -
docsPerSecond
Specifies a limit on the number of input documents per second. This setting throttles the transform by adding a wait time between search requests. The default value is null, which disables throttling.API name:
docs_per_second -
maxPageSearchSize
Defines the initial page size to use for the composite aggregation for each checkpoint. If circuit breaker exceptions occur, the page size is dynamically adjusted to a lower value. The minimum value is10and the maximum is65,536.API name:
max_page_search_size -
usePointInTime
Specifies whether the transform checkpoint will use the Point In Time API while searching over the source index. In general, Point In Time is an optimization that will reduce pressure on the source index by reducing the amount of refreshes and merges, but it can be expensive if a large number of Point In Times are opened and closed for a given index. The benefits and impact depend on the data being searched, the ingest rate into the source index, and the amount of other consumers searching the same source index.API name:
use_point_in_time -
unattended
Iftrue, the transform runs in unattended mode. In unattended mode, the transform retries indefinitely in case of an error which means the transform never fails. Setting the number of retries other than infinite fails in validation.API name:
unattended -
serialize
Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
-
toString
-
setupSettingsDeserializer
-