Skip to content

Commit

Permalink
Offline comments
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Jan 14, 2025
1 parent a7ececb commit 8c9e360
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ During a migration there is an opportunity change names and paths of index and d
#### Migration with a snapshot

1. Navigate to the bootstrap box and open the `cdk.context.json` with vim
2. Add/Update the key `reindexFromSnapshotExtraArgs` to include `--transformer-config-file /shared-logs-output/rfs-transform.json`
2. Add/Update the key `reindexFromSnapshotExtraArgs` to include `--doc-transformer-config-file /shared-logs-output/rfs-transform.json`

Check failure on line 23 in _migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md

View workflow job for this annotation

GitHub Actions / style-job

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'JSON' instead of 'json'. Raw Output: {"message": "[Vale.Terms] Use 'JSON' instead of 'json'.", "location": {"path": "_migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md", "range": {"start": {"line": 23, "column": 130}}}, "severity": "ERROR"}
3. Redeploy the Migration Assistant
4. Navigate on to the Migration Assistant console
5. Create a file with `vim /shared-logs-output/rfs-transform.json`

Check failure on line 26 in _migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md

View workflow job for this annotation

GitHub Actions / style-job

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'JSON' instead of 'json'. Raw Output: {"message": "[Vale.Terms] Use 'JSON' instead of 'json'.", "location": {"path": "_migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md", "range": {"start": {"line": 26, "column": 62}}}, "severity": "ERROR"}
Expand All @@ -31,7 +31,7 @@ During a migration there is an opportunity change names and paths of index and d
"JsonConditionalTransformerProvider": [
{
"JsonJMESPathPredicateProvider": {
"script": "index._index == '{{INDEX_ORIGINAL_NAME}}"
"script": "index._index == '{{INDEX_ORIGINAL_NAME}}'"
}
},
[
Expand All @@ -41,7 +41,7 @@ During a migration there is an opportunity change names and paths of index and d
"operation": "modify-overwrite-beta",
"spec": {
"index": {
"\\_index": "INDEX_NEW_NAME"
"\\_index": "{{INDEX_NEW_NAME}}"
}
}
}
Expand Down Expand Up @@ -81,5 +81,5 @@ During a migration there is an opportunity change names and paths of index and d
]
```
10. Replace both `{{INDEX_ORIGINAL_NAME}}` and `{{INDEX_NEW_NAME}}`
11. Run metadata migration with the additional parameter `console metadata migrate --transformer-config-file /shared-logs-output/metadata-transform.json`
11. Run metadata migration with the additional parameter `console metadata migrate --doc-transformer-config-file /shared-logs-output/rfs-transform.json`

Check failure on line 84 in _migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md

View workflow job for this annotation

GitHub Actions / style-job

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'JSON' instead of 'json'. Raw Output: {"message": "[Vale.Terms] Use 'JSON' instead of 'json'.", "location": {"path": "_migration-assistant/migration-phases/planning-your-migration/adjusting-settings-during-migration.md", "range": {"start": {"line": 84, "column": 148}}}, "severity": "ERROR"}
12. Run backfill as normal

0 comments on commit 8c9e360

Please sign in to comment.