Ihr Typ ist nicht konsistent, im API-Aufruf ist der Typ my_type
curl -XPUT http://localhost:9200/my_index/_mapping/my_type
dann wird es zu sale_test in der JSON-Nachricht.
Ein konsistenter Typ wird Ihr Problem lösen:
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" }
}
}
}'
Hier haben Sie sowohl einen neuen Index und ein neuer Typ :
curl -XGET http://localhost:9200/dgses/sale_test_river/_mapping
Das Korrigieren des Index und des Typs ergibt:
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"
}
}
}
}
}
}