我相信我正在遵循以下步驟:client, err := elastic.NewClient()if err != nil {? ? // Handle error? ? panic(err)}// Create a new index.mapping := `{? ? "settings":{? ? ? ? "number_of_shards":1,? ? ? ? "number_of_replicas":0? ? },? ? "mappings":{? ? ? ? "properties":{? ? ? ? ? ? "tags":{? ? ? ? ? ? ? ? "type":"keyword"? ? ? ? ? ? },? ? ? ? ? ? "location":{? ? ? ? ? ? ? ? "type":"geo_point"? ? ? ? ? ? },? ? ? ? ? ? "suggest_field":{? ? ? ? ? ? ? ? "type":"completion",? ? ? ? ? ? ? ? "payloads":true? ? ? ? ? ? }? ? ? ? }? ? }}`ctx := context.Background()createIndex, err := client.CreateIndex("twitter").BodyString(mapping).Do(ctx)if err != nil {? ? // Handle error? ? panic(err)}if !createIndex.Acknowledged {? ? // Not acknowledged}但我收到一個(gè)錯(cuò)誤:Failed to parse mapping [properties]: Root mapping definition has unsupported parameters: [location : {type=geo_point}] [suggest_field : {payloads=true, type=completion}] [tags : {type=keyword}] [type=mapper_parsing_exception]我知道Elasticsearch V7 中已刪除映射類型,但不知道這會(huì)如何產(chǎn)生上述錯(cuò)誤。我也在相應(yīng)的倉庫中報(bào)告了這個(gè)問題。
1 回答

大話西游666
TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超14個(gè)贊
原因是
"payloads": true
刪除“payloads”:true后,它可以工作。
請注意,當(dāng)您在 Elastic V6 上運(yùn)行但意外使用 V7 的 golang 客戶端時(shí),您會(huì)收到類似的錯(cuò)誤消息。
- 1 回答
- 0 關(guān)注
- 158 瀏覽
添加回答
舉報(bào)
0/150
提交
取消