Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions specification/ml/update_job/MlUpdateJobRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,20 @@ export interface Request extends RequestBase {
allow_lazy_open?: boolean
analysis_limits?: AnalysisMemoryLimit
/**
* Advanced configuration option. The time between each periodic persistence of the model. See Job resources.
* @doc_url https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-job-resource.html
* Advanced configuration option. The time between each periodic persistence of the model.
* The default value is a randomized value between 3 to 4 hours, which avoids all jobs persisting at exactly the same time. The smallest allowed value is 1 hour.
* For very large models (several GB), persistence could take 10-20 minutes, so do not set the value too low.
* If the job is open when you make the update, you must stop the datafeed, close the job, then reopen the job and restart the datafeed for the changes to take effect.
*/
background_persist_interval?: Time
/**
* Advanced configuration option. Contains custom meta data about the job. For example, it can contain custom URL information as shown in Adding custom URLs to machine learning results.
* @doc_url https://www.elastic.co/guide/en/machine-learning/7.12/ml-configuring-url.html
* @doc_id ml.customUrls
*/
custom_settings?: Dictionary<string, UserDefinedValue>
categorization_filters?: string[]
/**
* A description of the job. See Job resources.
* @doc_url https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-job-resource.html
* A description of the job.
*/
description?: string
model_plot_config?: ModelPlotConfig
Expand Down