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
Copy file name to clipboardExpand all lines: specification/transform/upgrade_transforms/UpgradeTransformsRequest.ts
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,12 +21,20 @@ import { RequestBase } from '@_types/Base'
21
21
import{Duration}from'@_types/Time'
22
22
23
23
/**
24
-
* Upgrades all transforms.
25
-
* This API identifies transforms that have a legacy configuration format and upgrades them to the latest version. It
26
-
* also cleans up the internal data structures that store the transform state and checkpoints. The upgrade does not
27
-
* affect the source and destination indices. The upgrade also does not affect the roles that transforms use when
28
-
* Elasticsearch security features are enabled; the role used to read source data and write to the destination index
29
-
* remains unchanged.
24
+
* Upgrade all transforms.
25
+
* Transforms are compatible across minor versions and between supported major versions.
26
+
* However, over time, the format of transform configuration information may change.
27
+
* This API identifies transforms that have a legacy configuration format and upgrades them to the latest version.
28
+
* It also cleans up the internal data structures that store the transform state and checkpoints.
29
+
* The upgrade does not affect the source and destination indices.
30
+
* The upgrade also does not affect the roles that transforms use when Elasticsearch security features are enabled; the role used to read source data and write to the destination index remains unchanged.
31
+
*
32
+
* If a transform upgrade step fails, the upgrade stops and an error is returned about the underlying issue.
33
+
* Resolve the issue then re-run the process again.
34
+
* A summary is returned when the upgrade is finished.
35
+
*
36
+
* To ensure continuous transforms remain running during a major version upgrade of the cluster – for example, from 7.16 to 8.0 – it is recommended to upgrade transforms before upgrading the cluster.
37
+
* You may want to perform a recent cluster backup prior to the upgrade.
0 commit comments