我有一個索引:(Elasticsearch 5.5.1)elasticsearch -no映射發現
PUT myindex
{
"settings" : {
"number_of_shards" : 3,
"number_of_replicas" : 2
},
"mappings" : {
"mymap" : {
"properties" : {
"data" : {
"type": "text"
}
}
}
}
}
現在,當我執行以下步驟:
GET myindex/_search?q=content:*&filter_path=hits.hits._source.path.real&sort=file.last_modified:desc&size=10
我接收的數據是我期望所有的數據好。
,如果我改變呼叫直接對Elasticsearch工作:
GET localhost:9200/myindex/_search?q=content:*&filter_path=hits.hits._source.path.real&sort=file.last_modified:desc&size=10
它抱怨有以排序發現[file.last_modified]沒有映射。
爲什麼這種差異?
第一個要求是Kibana? – aclokay
@aclokay我使用Kibana作爲我的測試工具,但是我想將它移除到我的應用程序,並直接調用Elastic。我需要改變以使它與Elastic一起使用? – bilpor