I am using Solr 5.3.1 in schemaless mode. The server is running.
I can add a timestamp
field to my managed-schema
<field name="timestamp" type="date" indexed="true" stored="true" default="NOW" multiValued="false"/>
By POST'ing to the /schema
endpoint.
That's fine. But afterwards, Solr doesn't automatically add the field to my documents when they are being inserted.
Do I need to restart?
Do I have to index the document with timestamp
specified but blank?
Is there a way to automatically add it to all documents regardless of if it has a timestamp
attribute?