TheUnknown
TheUnknown

Reputation: 39

Importing data Elasticsearch returns illegal_argument_exception unknown setting index.analysis

When importing data in ElasticSearch 7.12.0 returns error about illegal_argument_exception.

Trying to import model using Laravel 10 scout (php artisan scout:import).

Maybe this is a known problem? Or does anyone understand the cause of the problem.

Thanks for any help.

Returned error:

{
  "error": {
    "root_cause": [
      {
        "type": "illegal_argument_exception",
        "reason": "unknown setting [index.analysis] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"
      }
    ],
    "type": "illegal_argument_exception",
    "reason": "unknown setting [index.analysis] please check that any required plugins are installed, or check the breaking changes documentation for removed settings",
    "suppressed": [
      {
        "type": "illegal_argument_exception",
        "reason": "unknown setting [index.index] did you mean any of [index.hidden, index.codec]?"
      }
    ]
  },
  "status": 400
}

Upvotes: 0

Views: 33

Answers (0)

Related Questions