Вашият тип не е последователен, в извикването на API типът е my_type
curl -XPUT http://localhost:9200/my_index/_mapping/my_type
след това става sale_test в JSON съобщението.
Наличието на последователен тип ще реши проблема ви:
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" }
}
}
}'
Тук имате и двата нов индекс и нов тип :
curl -XGET http://localhost:9200/dgses/sale_test_river/_mapping
Коригирането на индекса и типа ми дава:
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"
}
}
}
}
}
}