When inserting docs, I store my own timestamp value in the default "_timestamp" field. Then I search docs and fetch both "_source" and "_timestamp" fields. I notice that the value of _source._timestamp correctly has my value. But, fields._timestamp is different.
Is ES maintaining _timestamp in two different places, even if I am overriding it?
}, {
"_index" : "myindex",
"_type" : "message",
"_id" : "3c60f48b-7e28-11e2-8081-000c29c275f9",
"_score" : null, "_source" : {"_id":"3c60f48b-7e28-11e2-8081-000c29c275f9","timestamp":1361672205131,"msg":"hello there"},
"fields" : {
"_timestamp" : 1361672211995
},
"sort" : [ 1361672211995 ]
} ]
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.