0
我有一個字段叫last_post_date存儲在elasticsearch中。Elasticsearch在服從索引後不服從_mapping
它表現爲:
...
"last_post_date": "1485281760000",
...
而且具有映射爲:
"last_post_date": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
現在我創建一個映射爲一個新的指標:
...
"last_post_date": {
"type": "date",
"format": "epoch_millis",
"index": true,
"doc_values": true
},
...
,並做了充分reindex via: http://127.0.0.1:9200/_reindex
的問題是,即使重建索引字段的值後,而映射顯示存儲爲字符串,而不是日期:
...
"last_post_date": {
"type": "date",
"store": true,
"format": "epoch_millis"
},
...
任何想法,爲什麼?
哇,實際上現在整理作品,所以我認爲你是對的!謝謝(你的)信息。 –
酷,很高興它幫助! – Val