field mapping :
"time": {
"format": "epoch_millis",
"store": true,
"type": "date"
}
search query :
{
"fields": [
"*",
"_source"
],
"fielddata_fields": [
"time"
]
}
it's reponse :
"time": [
"1479144300000",
1479144300000
]
but ,if mapping as :
"time": {
"format": "epoch_millis",
"type": "date"
}
the same search ,but response is:
"time": [
1479144300000
]
when field is set store ,how solve it,response as not store?
I want to know ,two search result have such diff ,why?
When using kibana 4.3.3 ,config Discovery ,search the first mapping type( "store": true), it cann't resove the wrong "date type field" result:
"time": [
"1479144300000",
1479144300000
]
it's expect a result :
"time": [
1479144300000
]