Sometimes you need to rename an Elasticsearch index—maybe to reuse the name for an alias. Officially, this isn’t supported. But with some manual edits and caution, it can be done.
⚠️ Warning: This is dangerous and unsupported. Back up your data first.
Recommended Alternatives
If these don’t work for your case, read on.
The Hacky Method
Stop the Elasticsearch node.
Find the metadata files:
grep -rF --include '*.st' 'my-old-index' data/
- You’ll usually find matches in
state-*.st
files in index folders. - Sometimes also in
global-*.st
files.
- You’ll usually find matches in
Edit each match using a hex editor:
- Replace
my-old-index
withmy-new-index
. - Keep lengths equal to preserve file structure.
- Replace
Recalculate the CRC32 checksum:
- Many editors like HxD support this.
- CRC32 covers the entire file except the last 8 bytes.
- Only the last 4 bytes (of those 8) are used.
Double-check:
- Re-run the
grep
to ensure all instances were changed.
- Re-run the
Restart Elasticsearch.
Notes & Sources
- CodecUtil docs explain the checksum structure.
- Elastic blog on file formats
Tested On
Elasticsearch 6.8.12 (single-node, Docker). Renamed to a name of the same length. A new alias was then created for the old name, successfully routing writes to a new index.