|
6 | 6 | # wait for long enough that we give delayed unassigned shards to stop being delayed
|
7 | 7 | timeout: 70s
|
8 | 8 | ---
|
9 |
| -"Get start, stop, and delete old and mixed cluster batch data frame transforms": |
10 |
| - - skip: |
11 |
| - version: "all" |
12 |
| - reason: "https://github.com/elastic/elasticsearch/issues/47943" |
| 9 | +"Get start, stop, and delete old cluster batch data frame transforms": |
13 | 10 | # Simple and complex OLD transforms
|
14 | 11 | - do:
|
15 | 12 | transform.get_transform:
|
@@ -77,7 +74,17 @@ setup:
|
77 | 74 | - match: { count: 1 }
|
78 | 75 | - match: { transforms.0.id: "old-complex-transform" }
|
79 | 76 | - match: { transforms.0.state: "stopped" }
|
| 77 | + # Delete old transform |
| 78 | + - do: |
| 79 | + transform.delete_transform: |
| 80 | + transform_id: "old-simple-transform" |
| 81 | + - do: |
| 82 | + transform.get_transform_stats: |
| 83 | + transform_id: "old-simple-transform" |
| 84 | + - match: { count: 0 } |
80 | 85 |
|
| 86 | +--- |
| 87 | +"Get start, stop mixed cluster batch data frame transforms": |
81 | 88 | # Simple and complex Mixed cluster transforms
|
82 | 89 | - do:
|
83 | 90 | transform.get_transform:
|
@@ -146,26 +153,20 @@ setup:
|
146 | 153 | - match: { count: 1 }
|
147 | 154 | - match: { transforms.0.id: "mixed-complex-transform" }
|
148 | 155 | - match: { transforms.0.state: "stopped" }
|
149 |
| - |
150 |
| -# Delete all old and mixed transforms |
| 156 | + # Delete mixed transform |
151 | 157 | - do:
|
152 | 158 | transform.delete_transform:
|
153 |
| - transform_id: "old-simple-transform" |
154 |
| - |
| 159 | + transform_id: "mixed-simple-transform" |
155 | 160 | - do:
|
156 | 161 | transform.delete_transform:
|
157 |
| - transform_id: "mixed-simple-transform" |
158 |
| - |
| 162 | + transform_id: "mixed-complex-transform" |
159 | 163 | - do:
|
160 | 164 | transform.get_transform_stats:
|
161 |
| - transform_id: "old-simple-transform,mixed-simple-transform" |
| 165 | + transform_id: "mixed-simple-transform,mixed-complex-transform" |
162 | 166 | - match: { count: 0 }
|
163 | 167 |
|
164 | 168 | ---
|
165 |
| -"Test GET, stop, delete, old and mixed continuous transforms": |
166 |
| - - skip: |
167 |
| - version: "all" |
168 |
| - reason: "https://github.com/elastic/elasticsearch/issues/47943" |
| 169 | +"Test GET, stop, delete, old continuous transforms": |
169 | 170 | - do:
|
170 | 171 | transform.get_transform:
|
171 | 172 | transform_id: "old-simple-continuous-transform"
|
@@ -210,7 +211,8 @@ setup:
|
210 | 211 | - do:
|
211 | 212 | transform.delete_transform:
|
212 | 213 | transform_id: "old-simple-continuous-transform"
|
213 |
| - |
| 214 | +--- |
| 215 | +"Test GET, mixed continuous transforms": |
214 | 216 | - do:
|
215 | 217 | transform.get_transform:
|
216 | 218 | transform_id: "mixed-simple-continuous-transform"
|
@@ -257,9 +259,6 @@ setup:
|
257 | 259 | transform_id: "mixed-simple-continuous-transform"
|
258 | 260 | ---
|
259 | 261 | "Test index mappings for latest internal index":
|
260 |
| - - skip: |
261 |
| - version: "all" |
262 |
| - reason: "https://github.com/elastic/elasticsearch/issues/47943" |
263 | 262 | - do:
|
264 | 263 | transform.put_transform:
|
265 | 264 | transform_id: "upgraded-simple-transform"
|
|
0 commit comments