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
* A short version of the Accept header, for example `json` or `yaml`.
54
54
*/
55
55
format?: EsqlFormat
56
-
/**
57
-
* The period for which the query and its results are stored in the cluster.
58
-
* The default period is five days.
59
-
* When this period expires, the query and its results are deleted, even if the query is still ongoing.
60
-
* If the `keep_on_completion` parameter is false, Elasticsearch only stores async queries that do not complete within the period set by the `wait_for_completion_timeout` parameter, regardless of this value.
61
-
* @server_default 5d
62
-
*/
63
-
keep_alive?: Duration
64
-
/**
65
-
* Indicates whether the query and its results are stored in the cluster.
66
-
* If false, the query and its results are stored in the cluster only if the request does not complete during the period set by the `wait_for_completion_timeout` parameter.
67
-
* @server_default false
68
-
*/
69
-
keep_on_completion?: boolean
70
-
/**
71
-
* The period to wait for the request to finish.
72
-
* By default, the request waits for 1 second for the query results.
73
-
* If the query completes during this period, results are returned
74
-
* Otherwise, a query ID is returned that can later be used to retrieve the results.
75
-
* @server_default 1s
76
-
*/
77
-
wait_for_completion_timeout?: Duration
78
56
}
79
57
/**
80
58
* Use the `query` element to start a query. Use `time_zone` to specify an execution time zone and `columnar` to format the answer.
* The period for which the query and its results are stored in the cluster.
112
+
* The default period is five days.
113
+
* When this period expires, the query and its results are deleted, even if the query is still ongoing.
114
+
* If the `keep_on_completion` parameter is false, Elasticsearch only stores async queries that do not complete within the period set by the `wait_for_completion_timeout` parameter, regardless of this value.
115
+
* @server_default 5d
116
+
*/
117
+
keep_alive?: Duration
118
+
/**
119
+
* Indicates whether the query and its results are stored in the cluster.
120
+
* If false, the query and its results are stored in the cluster only if the request does not complete during the period set by the `wait_for_completion_timeout` parameter.
0 commit comments