forked from elastic/elasticsearch-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMlEstimateModelMemoryRequest.ts
61 lines (59 loc) · 2.52 KB
/
MlEstimateModelMemoryRequest.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { AnalysisConfig } from '@ml/_types/Analysis'
import { Dictionary } from '@spec_utils/Dictionary'
import { RequestBase } from '@_types/Base'
import { Field } from '@_types/common'
import { long } from '@_types/Numeric'
/**
* Makes an estimation of the memory usage for an anomaly detection job model.
* It is based on analysis configuration details for the job and cardinality
* estimates for the fields it references.
* @rest_spec_name ml.estimate_model_memory
* @since 7.7.0
* @stability stable
* @cluster_privileges manage_ml
*/
export interface Request extends RequestBase {
body: {
/**
* For a list of the properties that you can specify in the
* `analysis_config` component of the body of this API.
*/
analysis_config?: AnalysisConfig
/**
* Estimates of the highest cardinality in a single bucket that is observed
* for influencer fields over the time period that the job analyzes data.
* To produce a good answer, values must be provided for all influencer
* fields. Providing values for fields that are not listed as `influencers`
* has no effect on the estimation.
*/
max_bucket_cardinality?: Dictionary<Field, long>
/**
* Estimates of the cardinality that is observed for fields over the whole
* time period that the job analyzes data. To produce a good answer, values
* must be provided for fields referenced in the `by_field_name`,
* `over_field_name` and `partition_field_name` of any detectors. Providing
* values for other fields has no effect on the estimation. It can be
* omitted from the request if no detectors have a `by_field_name`,
* `over_field_name` or `partition_field_name`.
*/
overall_cardinality?: Dictionary<Field, long>
}
}