-
Notifications
You must be signed in to change notification settings - Fork 30
Backfill Execution
The Migration Assistant provides a tool called Reindex-from-Snapshot (RFS) to move the existing documents in your Source Cluster to the Target Cluster. The premise of RFS is that we can take a Snapshot of a Source Cluster then have a separate process (or processes) parse the Snapshot to extract the documents and reindex them on the Target Cluster without having to involve the Source Cluster again after the snapshot is finished. The format of Elasticsearch/OpenSearch indices is such that each shard of each index can be parsed, extracted, and independently, meaning the work can be fanned out at the shard level.
This approach improves the migration experience by:
- Removing load from the source cluster during backfill migration after the Source Cluster Snapshot is taken
- Enabling “hopping” across multiple major versions without having to pass through the intermediate versions
- Creating a migration path from post-fork versions of Elasticsearch to OpenSearch
- Increasing the speed of backfill migration by parallelizing work at the shard level
- Making pausing/resuming a migration trivial
You can gain more context on the problem it solves by looking at this RFC and this design doc.
RFS is under active development as its capabilities are expanded. With that in mind, here are some current known limitations:
- Source Version: RFS supports a subset of the available Elasticsearch and OpenSearch clusters.
- Target Version: RFS supports a subset of the available OpenSearch versions.
- Authentication: RFS supports several authentication options for the cluster cluster including no-auth, basic auth, and sigv4.
All the following operations should be performed on the Migration Console using the Console CLI. You can learn more about the individual commands and additional options they have with the --help
flag. You can also look at the documentation for the Console CLI here for additional details about the operations.
You can see the indices that are currently on the source and target cluster by running the command:
console clusters cat-indices
This step kicks off a fleet of Amazon ECS workers which are responsible for transferring the documents from the Source Snapshot to the Target Cluster. This fleet of workers can be scaled up and down using the Console CLI to increase the rate at which documents are transferred to the Target Cluster, at the expense of increased load on the target cluster. The workers coordinate using metadata stored in a special index on the Target Cluster, and each worker is responsible to moving one shard from the Source Cluster's Snapshot at a time. The work they perform is independent, so they can hypothetically be scaled up to match the number of shards present in the snapshot - if the target cluster can handle that volume of ingest traffic.
We can start the process by running the following command, which will scale up the worker fleet from 0 -> 1:
console backfill start
Because this command spins up an ECS Container, it may take a couple minutes before work starts happening. After beginning the document migration, you can check progress in a couple ways. First, you can see the states indices on the target cluster (how many docs they have, how much data) using the command:
console clusters cat-indices
To speed up the transfer, you can scale the number of workers with its own command. As before, it may take a few minutes for these additional workers to come online. This will update the worker fleet to a size of ten:
console backfill scale 10
You can use the status check command to see more detail about things like the number of shards completed, in progress, remaining, and the overall status of the operation:
console backfill status --deep-check
BackfillStatus.RUNNING
Running=10
Pending=0
Desired=10
Shards total: 48
Shards completed: 16
Shards incomplete: 32
Shards in progress: 0
Shards unclaimed: 32
When the operation is finished, the console backfill status --deep-check
command will report that all shards are completed:
console backfill status --deep-check
BackfillStatus.RUNNING
Running=2
Pending=8
Desired=10
Shards total: 48
Shards completed: 48
Shards incomplete: 0
Shards in progress: 0
Shards unclaimed: 0
Note that the status will still be "RUNNING". This is an indication that the worker fleet is still active, even though all the shards in the snapshot have been migrated. You can spin down all the workers with the command:
console backfill stop
You can also scale the cluster down just like you scaled it up:
console backfill scale 0
There are several considerations when picking a number of RFS workers to run. RFS is theoretically capable of migrating every shard, simultaneously, in parallel. This is due to the work for each shard being independent. In practice, however, the ability to parallelize the work of migrating documents will be limited by the ability of the Target Cluster to handle the ingest traffic from the RFS workers.
It is recommended to scale up the RFS worker fleet slowly while monitoring the health metrics of the Target Cluster to avoid over-saturating it. Amazon OpenSearch Domains provide a number of metrics and logs that can provide this insight; refer to the official documentation on the subject. The AWS Console for Amazon Opensearch Service surfaces details that can be useful for this as well.
TODO: Break this doc into smaller parts
Encountering a compatibility issue or missing feature?
- Search existing issues to see if it’s already reported. If it is, feel free to upvote and comment.
- Can’t find it? Create a new issue to let us know.
- Migration Assistant Overview
- Is Migration Assistant Right for You?
- Existing Data Migration - Quick Start Guide
- A. Snapshot Creation Verification
- B. Client Traffic Switchover Verification
- C. Traffic Capture Verification
- D. System Reset Before Migration