Quando type
viene dichiarato come string
, Elasticsearch 6.0 mostrerà questo errore.
"name" => [
"type" => "string",
"analyzer" => "ik_max_word"
]
Quando type
viene dichiarato come string
, Elasticsearch 6.0 mostrerà questo errore.
"name" => [
"type" => "string",
"analyzer" => "ik_max_word"
]
Risposte:
Elasticsearch ha abbandonato il string
tipo e ora sta usando text
. Quindi il tuo codice dovrebbe essere qualcosa del genere
"name" => [
"type" => "text",
"analyzer" => "ik_max_word"
]