-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathout.direct.txt
More file actions
63 lines (43 loc) · 3.15 KB
/
out.direct.txt
File metadata and controls
63 lines (43 loc) · 3.15 KB
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
62
63
>>> musterr [CLI] bundle destroy --auto-approve
Error: resources.pipelines.my_pipelines has lifecycle.prevent_destroy set, but the plan calls for this resource to be recreated or destroyed. To avoid this error, disable lifecycle.prevent_destroy for resources.pipelines.my_pipelines
resources.schemas.my_schema has lifecycle.prevent_destroy set, but the plan calls for this resource to be recreated or destroyed. To avoid this error, disable lifecycle.prevent_destroy for resources.schemas.my_schema
>>> errcode [CLI] bundle plan
recreate pipelines.my_pipelines
Plan: 1 to add, 0 to change, 1 to delete, 1 unchanged
>>> musterr [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/prevent-destroy/default/files...
Error: resources.pipelines.my_pipelines has lifecycle.prevent_destroy set, but the plan calls for this resource to be recreated or destroyed. To avoid this error, disable lifecycle.prevent_destroy for resources.pipelines.my_pipelines
>>> errcode [CLI] bundle plan
recreate pipelines.my_pipelines
recreate schemas.my_schema
Plan: 2 to add, 0 to change, 2 to delete, 0 unchanged
>>> musterr [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/prevent-destroy/default/files...
Error: resources.pipelines.my_pipelines has lifecycle.prevent_destroy set, but the plan calls for this resource to be recreated or destroyed. To avoid this error, disable lifecycle.prevent_destroy for resources.pipelines.my_pipelines
resources.schemas.my_schema has lifecycle.prevent_destroy set, but the plan calls for this resource to be recreated or destroyed. To avoid this error, disable lifecycle.prevent_destroy for resources.schemas.my_schema
>>> errcode [CLI] bundle plan
recreate pipelines.my_pipelines
recreate schemas.my_schema
Plan: 2 to add, 0 to change, 2 to delete, 0 unchanged
>>> [CLI] bundle deploy --auto-approve
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/prevent-destroy/default/files...
This action will result in the deletion or recreation of the following Lakeflow Spark Declarative Pipelines along with the Streaming Tables (STs) and Materialized Views (MVs) managed by them:
recreate resources.pipelines.my_pipelines
This action will result in the deletion or recreation of the following UC schemas along with all the tables and views they contain:
recreate resources.schemas.my_schema
Deploying resources...
Updating deployment state...
Deployment complete!
>>> errcode [CLI] bundle plan
delete pipelines.my_pipelines
delete schemas.my_schema
Plan: 0 to add, 0 to change, 2 to delete, 0 unchanged
>>> [CLI] bundle deploy --auto-approve
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/prevent-destroy/default/files...
This action will result in the deletion or recreation of the following Lakeflow Spark Declarative Pipelines along with the Streaming Tables (STs) and Materialized Views (MVs) managed by them:
delete resources.pipelines.my_pipelines
This action will result in the deletion or recreation of the following UC schemas along with all the tables and views they contain:
delete resources.schemas.my_schema
Deploying resources...
Updating deployment state...
Deployment complete!