You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
peternied opened this issue
Feb 21, 2024
· 4 comments
· Fixed by #13067
Assignees
Labels
bugSomething isn't workingIndexingIndexing, Bulk Indexing and anything related to indexingv2.15.0Issues and PRs related to version 2.15.0v3.0.0Issues and PRs related to version 3.0.0
index.mapper.dynamic's deprecation predates OpenSearch. We should remove any traces of this legacy setting from the system except to warn that the setting won't be actioned on.
The INDEX_MAPPER_DYNAMIC_SETTING should be ignored, it won't be, org.opensearch.action.support.AutoCreateIndex:
@peternied We need to fix this ASAP now that #11193 allows for indices to be created with this deprecated setting present, right?
So we need to check the indexVersionCreated and if the version is on or after V_2_0_0, we should reject index creation, the same we have to do for 2.x backport but lower the version to ~1.1.0 since we do not expect any indices created by OpenSearch to have this setting).
bugSomething isn't workingIndexingIndexing, Bulk Indexing and anything related to indexingv2.15.0Issues and PRs related to version 2.15.0v3.0.0Issues and PRs related to version 3.0.0
Description
index.mapper.dynamic
's deprecation predates OpenSearch. We should remove any traces of this legacy setting from the system except to warn that the setting won't be actioned on.The
INDEX_MAPPER_DYNAMIC_SETTING
should be ignored, it won't be,org.opensearch.action.support.AutoCreateIndex
:index.mapper.dynamic
usage instead of erroring #11193 (comment)Expected Result
Remove this legacy settings usage expect for purposes of warning about its removal and non-functionality.
The text was updated successfully, but these errors were encountered: