A field _indexed_at_tdt added when I index documents.

2015-12-17 Thread Guillermo Ortiz
I'm indexing documents in solr with Spark and it's missing the a field _indexed_at_tdt who is doesn't exist in my documents. I have added this field in my schema, why is this field being added? any solution?

Re: A field _indexed_at_tdt added when I index documents.

2015-12-17 Thread Pushkar Raste
You must have this field in your schema with some default value assigned to it (most probably default value is NOW). This field is usually used to determine latest timestamp when this document was last indexed. On 17 December 2015 at 04:51, Guillermo Ortiz wrote: > I'm