[[archived-settings]] == Archived settings If you upgrade a cluster with a deprecated persistent cluster setting to a version that no longer supports the setting, {es} automatically archives that setting. Similarly, if you upgrade a cluster that contains an index with an unsupported index setting, {es} archives the index setting. We recommend you remove any archived settings after upgrading. Archived settings are considered invalid and can interfere with your ability to configure other settings. Archived settings start with the `archived.` prefix. [discrete] [[archived-cluster-settings]] === Archived cluster settings Use the following <> request to check for archived cluster settings. If the request returns an empty object (`{ }`), there are no archived cluster settings. [source,console] ---- GET _cluster/settings?flat_settings=true&filter_path=persistent.archived* ---- To remove any archived cluster settings, use the following <> request. [source,console] ---- PUT _cluster/settings { "persistent": { "archived.*": null } } ---- {es} doesn't archive transient cluster settings or settings in `elasticsearch.yml`. If a node includes an unsupported setting in `elasticsearch.yml`, it will return an error at startup. [discrete] [[archived-index-settings]] === Archived index settings IMPORTANT: Before you upgrade, remove any unsupported index settings from index and component templates. {es} doesn't archive unsupported index settings in templates during an upgrade. Attempts to use a template that contains an unsupported index setting will fail and return an error. This includes automated operations, such the {ilm-init} rollover action. Archived index settings don't affect an index's configuration or most index operations, such as indexing or search. However, you'll need to remove them before you can configure other settings for the index, such as `index.hidden`. Use the following <> request to get a list indices with archived settings. If the request returns an empty object (`{ }`), there are no archived index settings. [source,console] ---- GET */_settings?flat_settings=true&filter_path=**.settings.archived* ---- // TEST[s/^/PUT my-index\n/] To remove any archived index settings, use the following <> request. [source,console] ---- PUT /my-index/_settings { "archived.*": null } ---- // TEST[s/^/PUT my-index\n/]