You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Specifies whether the transform checkpoint ranges should be optimized for performance. Default value is true.",
203
+
Type: schema.TypeBool,
204
+
Optional: true,
205
+
Default: true,
206
+
},
207
+
"dates_as_epoch_millis": {
208
+
Description: "Defines if dates in the output should be written as ISO formatted string (default) or as millis since epoch.",
209
+
Type: schema.TypeBool,
210
+
Optional: true,
211
+
Default: false,
212
+
},
213
+
"deduce_mappings": {
214
+
Description: "Specifies whether the transform should deduce the destination index mappings from the transform config. The default value is true",
215
+
Type: schema.TypeBool,
216
+
Optional: true,
217
+
Default: true,
218
+
},
219
+
"docs_per_second": {
220
+
Description: "Specifies a limit on the number of input documents per second. Default value is null, which disables throttling.",
221
+
Type: schema.TypeFloat,
222
+
Optional: true,
223
+
},
224
+
"max_page_search_size": {
225
+
Description: "Defines the initial page size to use for the composite aggregation for each checkpoint. The default value is 500.",
226
+
Type: schema.TypeInt,
227
+
Optional: true,
228
+
},
229
+
"num_failure_retries": {
230
+
Description: "Defines the number of retries on a recoverable failure before the transform task is marked as failed. The default value is the cluster-level setting num_transform_failure_retries.",
231
+
Type: schema.TypeInt,
232
+
Optional: true,
233
+
},
234
+
"unattended": {
235
+
Description: "In unattended mode, the transform retries indefinitely in case of an error which means the transform never fails. Defaults to false.",
236
+
Type: schema.TypeBool,
237
+
Optional: true,
238
+
Default: false,
239
+
},
240
+
},
241
+
},
242
+
},
131
243
"defer_validation": {
132
244
Type: schema.TypeBool,
133
245
Description: "When true, deferrable validations are not run upon creation, but rather when the transform is started. This behavior may be desired if the source index does not exist until after the transform is created.",
0 commit comments