DSM
DSM

Reputation: 1

Getting mapper_parsing_exception on creating a deleted elastic index again

I have deleted an existing elastic index as part of reindexing, created a temp index and moved all the documents to the temp index before deleting this index. Now I'm getting this error when I'm trying to create the deleted index again.

{
  "error": {
    "root_cause": [
      {
        "type": "mapper_parsing_exception",
        "reason": "unknown parameter [normalizer] on mapper [Type] of type [text]"
      }
    ],
    "type": "mapper_parsing_exception",
    "reason": "Failed to parse mapping [universal_profile]: unknown parameter [normalizer] on mapper [Type] of type [text]",
    "caused_by": {
      "type": "mapper_parsing_exception",
      "reason": "unknown parameter [normalizer] on mapper [Type] of type [text]"
    }
  },
  "status": 400
} 

What is the issue and how can I create that index again. any help would be greatly appreciated. Thanks!

I'm not sure why this is happening. I'm not able to create even an empty index with the existing index name.

Upvotes: 0

Views: 56

Answers (0)

Related Questions