Get feature migration information Added in 7.16.0
Version upgrades sometimes require changes to how features store configuration information and data in system indices. Check which features need to be migrated and the status of any migrations that are in progress.
TIP: This API is designed for indirect use by the Upgrade Assistant. We strongly recommend you use the Upgrade Assistant.
GET
/_migration/system_features
curl \
-X GET http://api.example.com/_migration/system_features
Response examples (200)
{
"features": [
{
"feature_name": "string",
"minimum_index_version": "string",
"migration_status": "NO_MIGRATION_NEEDED",
"indices": [
{
"index": "string",
"version": "string",
"failure_cause": {
"type": "string",
"reason": "string",
"stack_trace": "string",
"caused_by": {},
"root_cause": [
{}
],
"suppressed": [
{}
]
}
}
]
}
],
"migration_status": "NO_MIGRATION_NEEDED"
}