-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigration-vocabulary.yaml
More file actions
330 lines (320 loc) · 9.08 KB
/
Copy pathmigration-vocabulary.yaml
File metadata and controls
330 lines (320 loc) · 9.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
vocabulary: "1.0.0"
info:
provider: Migration
description: Vocabulary for the migration topic, covering cloud migration, database migration, data movement, schema migration, tenant migration, and API/code migration platforms.
created: '2026-05-19'
modified: '2026-05-19'
operational:
apis:
- name: AWS Database Migration Service
namespace: amazon-dms
status: active
- name: AWS Application Migration Service
namespace: amazon-migration-hub
status: active
- name: Azure Migrate
namespace: microsoft-azure-migrate
status: active
- name: Google Cloud Migration Center
namespace: google-cloud-migration-center
status: active
- name: Google Cloud Datastream
namespace: google-cloud-datastream
status: active
- name: Airbyte
namespace: airbyte
status: active
- name: Fivetran
namespace: fivetran
status: active
- name: Oracle GoldenGate
namespace: oracle-goldengate
status: active
- name: Debezium
namespace: debezium
status: active
- name: dbt
namespace: dbt
status: active
resources:
- name: migration-projects
description: Top-level migration efforts moving workloads, data, or schemas from a source to a target
actions:
- list
- get
- create
- update
- delete
- start
- pause
- resume
- cancel
- name: cutover-plans
description: Ordered runbooks coordinating the production cutover from source to target
actions:
- list
- get
- create
- update
- approve
- execute
- rollback
- name: migration-steps
description: Individual steps within a cutover plan or migration runbook
actions:
- list
- get
- start
- complete
- skip
- fail
- name: replication-streams
description: Continuous replication streams or change data capture pipelines between source and target
actions:
- create
- get
- list
- pause
- resume
- delete
- name: validation-results
description: Output of validation gates run before, during, and after cutover
actions:
- list
- get
- run
- name: assessments
description: Discovery and assessment reports of source workloads, dependencies, and sizing
actions:
- create
- get
- list
actions:
- name: list
description: Enumerate resources
httpMethod: GET
pattern: read
- name: get
description: Retrieve a single resource
httpMethod: GET
pattern: read
- name: create
description: Create a new resource
httpMethod: POST
pattern: write
- name: update
description: Update an existing resource
httpMethod: PUT
pattern: write
- name: delete
description: Remove a resource
httpMethod: DELETE
pattern: destructive
- name: start
description: Start a migration, replication, or step
httpMethod: POST
pattern: action
- name: pause
description: Pause an in-progress migration or replication stream
httpMethod: POST
pattern: action
- name: resume
description: Resume a paused migration or replication stream
httpMethod: POST
pattern: action
- name: cancel
description: Cancel a migration before completion
httpMethod: POST
pattern: action
- name: approve
description: Approve a cutover plan to proceed
httpMethod: POST
pattern: action
- name: execute
description: Execute a cutover plan
httpMethod: POST
pattern: action
- name: rollback
description: Roll back to the source after a failed cutover
httpMethod: POST
pattern: destructive
- name: run
description: Run a validation check or assessment
httpMethod: POST
pattern: action
schemas:
core:
- name: MigrationProject
description: A migration project moving workloads, data, or schemas between environments
properties:
- id
- name
- migration_type
- strategy
- source
- target
- tool
- status
- started_at
- target_cutover_at
- completed_at
- owners
- tags
- name: CutoverPlan
description: An ordered runbook for executing the production cutover during a migration
properties:
- id
- migration_project_id
- name
- cutover_window
- downtime_budget_minutes
- steps
- validation_gates
- rollback_plan
- status
- approvers
enums:
migration_types:
- cloud
- database
- data
- tenant
- schema
- api
- code
- content
migration_strategies:
- rehost
- replatform
- refactor
- repurchase
- retire
- retain
project_statuses:
- planning
- assessment
- in-progress
- cutover
- validation
- completed
- rolled-back
- cancelled
cutover_statuses:
- draft
- scheduled
- in-progress
- completed
- rolled-back
- cancelled
step_statuses:
- pending
- in-progress
- completed
- failed
- skipped
capability:
workflows:
- name: Cloud Lift and Shift
description: Discover, assess, replicate, and cut over on-premise workloads to a cloud provider with minimal application changes
apis:
- amazon-migration-hub
- microsoft-azure-migrate
- google-cloud-migration-center
personas:
- Cloud Migration Engineer
domains:
- Cloud Migration
- name: Heterogeneous Database Migration
description: Migrate transactional data between different database engines using continuous replication and a final cutover
apis:
- amazon-dms
- oracle-goldengate
- google-cloud-datastream
personas:
- Database Migration Engineer
domains:
- Database Migration
- name: SaaS Data Onboarding and Sync
description: Backfill and incrementally sync SaaS source data into a warehouse for analytics and downstream systems
apis:
- airbyte
- fivetran
- hotglue
personas:
- Data Engineer
domains:
- Data Movement
- name: Schema Migration at Deploy Time
description: Version and apply database schema and transformation changes alongside application code
apis:
- dbt
personas:
- Application Developer
domains:
- Schema Migration
personas:
- id: cloud-migration-engineer
name: Cloud Migration Engineer
description: Engineers responsible for planning and executing migrations of workloads from on-premise to cloud
workflows:
- Cloud Lift and Shift
- id: database-migration-engineer
name: Database Migration Engineer
description: Engineers responsible for replicating and cutting over databases between engines or environments
workflows:
- Heterogeneous Database Migration
- id: data-engineer
name: Data Engineer
description: Engineers moving and modeling data from operational sources into warehouses and lakes
workflows:
- SaaS Data Onboarding and Sync
- id: application-developer
name: Application Developer
description: Developers shipping schema and code changes alongside application releases
workflows:
- Schema Migration at Deploy Time
domains:
- name: Cloud Migration
description: Platforms and services for moving workloads from on-premise data centers or other clouds into a target cloud provider
- name: Database Migration
description: Tools that migrate and replicate data between database engines, often across different vendors
- name: Data Movement
description: ETL/ELT and change data capture platforms that continuously move data between operational and analytical systems
- name: Schema Migration
description: Tooling that versions and applies schema and transformation changes through source-controlled migration files
crossReference:
- resource: migration-projects
operations:
- list
- get
- create
- start
workflows:
- Cloud Lift and Shift
- Heterogeneous Database Migration
personas:
- Cloud Migration Engineer
- Database Migration Engineer
- resource: cutover-plans
operations:
- create
- approve
- execute
- rollback
workflows:
- Cloud Lift and Shift
- Heterogeneous Database Migration
personas:
- Cloud Migration Engineer
- Database Migration Engineer
- resource: replication-streams
operations:
- create
- pause
- resume
workflows:
- Heterogeneous Database Migration
- SaaS Data Onboarding and Sync
personas:
- Database Migration Engineer
- Data Engineer