Loại của bạn không nhất quán, trong lệnh gọi API, loại là my_type
curl -XPUT http://localhost:9200/my_index/_mapping/my_type
thì nó trở thành sale_test trong tin nhắn JSON.
Có một loại nhất quán sẽ khắc phục được sự cố của bạn:
curl -XPUT http://localhost:9200/my_index/_mapping/sale_test -d '
{
"sale_test": {
"properties": {
"Client": {"type": "string", "index": "not_analyzed" },
"OfferRGU": { "type": "long" },
"SaleDate": { "type": "date", "format": "dateOptionalTime" },
"State": { "type": "string" }
}
}
}'
Ở đây bạn có cả chỉ mục mới và một loại mới :
curl -XGET http://localhost:9200/dgses/sale_test_river/_mapping
Việc sửa chỉ mục và loại cho tôi:
curl -XGET http://localhost:9200/my_index/sale_test/_mapping?pretty
{
"myindex" : {
"mappings" : {
"sale_test" : {
"properties" : {
"Client" : {
"type" : "string",
"index" : "not_analyzed"
},
"OfferRGU" : {
"type" : "long"
},
"SaleDate" : {
"type" : "date",
"format" : "dateOptionalTime"
},
"State" : {
"type" : "string"
}
}
}
}
}
}