Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-27 Thread Erick Erickson
alueUpdateProcessorFactory"> > index_time_stamp_create "solr.RunUpdateProcessorFactory" /> > > I think MinFieldValueUpdateProcessorFactory keeps the min value in a > multivalued field which index_time_stamp_create is not. > > On Tue, May 26, 2020 at 2:31 PM

Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-27 Thread gnandre
ory updates the field even if the > value > : if present > : > : Hi, > : > : Following is the update request processor chain. > : > : > < > : processor class="solr.TimestampUpdateProcessorFactory"> : "fieldName"&

Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-26 Thread Chris Hostetter
: Subject: TimestampUpdateProcessorFactory updates the field even if the value : if present : : Hi, : : Following is the update request processor chain. : : < : processor class="solr.TimestampUpdateProcessorFactory"> index_time_stamp_create : : And, here is how the fie

Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-21 Thread Furkan KAMACI
Hi, Do you have an id field for your documents? On the other hand, does your document count increases when you index it again? Kind Regards, Furkan KAMACI On Fri, May 22, 2020 at 1:03 AM gnandre wrote: > Hi, > > I do not pass that field at all. > > Here is the document that I index again and a

Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-21 Thread gnandre
Hi, I do not pass that field at all. Here is the document that I index again and again to test through Solr Admin UI. { asset_id:"x:1", title:"x" } On Thu, May 21, 2020 at 5:25 PM Furkan KAMACI wrote: > Hi, > > How do you index that document? Do you index it with an empty > *index_time

Re: TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-21 Thread Furkan KAMACI
Hi, How do you index that document? Do you index it with an empty *index_time_stamp_create* field as the second time too? Kind Regards, Furkan KAMACI On Fri, May 22, 2020 at 12:05 AM gnandre wrote: > Hi, > > Following is the update request processor chain. > > > < > processor class="solr.Time

TimestampUpdateProcessorFactory updates the field even if the value if present

2020-05-21 Thread gnandre
Hi, Following is the update request processor chain. < processor class="solr.TimestampUpdateProcessorFactory"> index_time_stamp_create And, here is how the field is defined in schema.xml Every time I index the same document, above field changes its value with latest timestamp. According