困っていること
Elasticsearch7で下記のようmapping定義をしたいのですが、
「Root mapping definition has unsupportedparameters」エラーが発生します。
解決方法をご教授願えないでしょうか?
もし、Elasticsearch7特有のエラーで何かをインストール必要があるなど情報ありましたらそちらもよろしくお願いいたします
発生している問題・エラーメッセージ
curl -XPUT 'http://localhost:9200/my_index44?pretty' -H 'Content-Type: application/json' -d' > { > "mappings" : { > "my_type" : { > "properties" : { > "message": {"type":"text"} > }}}}' { "error" : { "root_cause" : [ { "type" : "mapper_parsing_exception", "reason" : "Root mapping definition has unsupported parameters: [my_type : {properties={message={type=text}}}]" } ], "type" : "mapper_parsing_exception", "reason" : "Failed to parse mapping [_doc]: Root mapping definitionhas unsupported parameters: [my_type :{properties={message={type=text}}}]", "caused_by" : { "type" : "mapper_parsing_exception", "reason" : "Root mapping definition has unsupported parameters: [my_type : {properties={message={type=text}}}]" } }, "status" : 400 }
試したこと
スペルミスが無いかチェックした →問題なし
パラメータがサポートされていないとのことなので、textをstring、longに変更してみた →エラー内容は同じ
補足情報(FW/ツールのバージョンなど)
CentOS8
Elasticsearch7.10
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/27 23:28