0
嗨索引我已經使用彈性1.6版之前,做了如下指標映射,無法映射彈性5.6
//jarSetup.json
mappings": {
"jardata": {
"properties": {
"groupID": {
"index": "not_analyzed",
"type": "string"
},
"artifactID": {
"index": "not_analyzed",
"type": "string"
},
"directory": {
"type": "string"
},
"jarFileName": {
"index": "not_analyzed",
"type": "string"
},
"version": {
"index": "not_analyzed",
"type": "string"
}
}
}
}
我運行命令curl -XPOST http://localhost:9200/testjar -d @jarSetup.json
到做映射。它在彈性版本1.6中運行良好。但是當我在5.6版中嘗試完全一樣的東西時,它給了我一個錯誤
No handler found for uri [/testjardata] and method [POST]
我找不出什麼問題。如果有人對此有所瞭解,請幫助我。