elasticsearch/docs/reference/transform/apis/reset-transform.asciidoc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.5 KiB
Plaintext
Raw Normal View History

[role="xpack"]
[testenv="basic"]
[[reset-transform]]
= Reset {transform} API
[subs="attributes"]
++++
<titleabbrev>Reset {transform}</titleabbrev>
++++
Resets a {transform}.
[[reset-transform-request]]
== {api-request-title}
`POST _transform/<transform_id>/_reset`
[[reset-transform-prereqs]]
== {api-prereq-title}
* Requires the `manage_transform` cluster privilege. This privilege is included
in the `transform_admin` built-in role.
[reset-transform-desc]]
== {api-description-title}
Before you can reset the {transform}, you must stop it; alternatively, use the
`force` query parameter.
If the destination index was created by the transform, it is deleted.
[[reset-transform-path-parms]]
== {api-path-parms-title}
`<transform_id>`::
(Required, string)
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=transform-id]
[[reset-transform-query-parms]]
== {api-query-parms-title}
`force`::
(Optional, Boolean)
If this value is `true`, the {transform} is reset regardless of its current
state. If it's false, the {transform} must be `stopped` before it can be reset.
The default value is `false`
[[reset-transform-examples]]
== {api-examples-title}
[source,console]
--------------------------------------------------
POST _transform/ecommerce_transform/_reset
--------------------------------------------------
// TEST[skip:setup kibana sample data]
When the {transform} is reset, you receive the following results:
[source,console-result]
----
{
"acknowledged" : true
}
----