Re: AtomicUpdate on SolrCloud is not working

2020-07-20 Thread Shawn Heisey
On 7/19/2020 1:37 AM, yo tomi wrote: I have no choice but use post-processor. However bug of SOLR-8030 makes me not feel like using it. Can you explain why you need the trim field and remove blank field processors to be post processors? When I think about these functionalities, they should w

Re: AtomicUpdate on SolrCloud is not working

2020-07-19 Thread yo tomi
Hi Jörn & shown "does not work properly" means pre-processors (TrimFieldUpdateProcessorFactory and RemoveBlankFieldUpdateProcessorFactory) don't trim and remove blank for string fields. example: When the following schema: --- --- update following documents with "Documents" of solr admin: -

Re: AtomicUpdate on SolrCloud is not working

2020-07-18 Thread Shawn Heisey
On 7/17/2020 1:32 AM, yo tomi wrote: When I did AtomicUpdate on SolrCloud by the following setting, it does not work properly. As Jörn Franke already mentioned, you haven't said exactly what "does not work properly" actually means in your situation. Without that information, it will be very

Re: AtomicUpdate on SolrCloud is not working

2020-07-17 Thread Issei Nishigata
I have the same problem in my Solr8. I think it's because in the first way, TrimFieldUpdateProcessorFactory and RemoveBlankFieldUpdateProcessorFactory is not taking effect. On SolrCloud, TrimFieldUpdateProcessorFactory, RemoveBlankFieldUpdateProcessorFactory and other processors only run on the fi

Re: AtomicUpdate on SolrCloud is not working

2020-07-17 Thread Jörn Franke
What does „not work correctly mean“? Have you checked that all fields are stored or doc values? > Am 17.07.2020 um 11:26 schrieb yo tomi : > > Hi All > > Sorry, above settings are contrary with each other. > Actually, following setting does not work properly. > --- > > > > > > > --- > An

Re: AtomicUpdate on SolrCloud is not working

2020-07-17 Thread yo tomi
Hi All Sorry, above settings are contrary with each other. Actually, following setting does not work properly. --- --- And follows is working as expected. --- --- Thanks, Yoshiaki 2020年7月17日(金) 16:32 yo tomi : > Hi, All > When I did AtomicUpdate on SolrCloud by the follow