Re: ConcurrentModificationException in SolrInputDocument writeMap

2019-11-18 Thread Tim Swetland
Finally had a chance to get back to this and figured out what our problem was. Thanks to Mikhail for pointing me in the right direction. For some reason one of our custom UpdateRequestProcessors was calling super.processAdd as the first line in ou

Re: ConcurrentModificationException in SolrInputDocument writeMap

2019-11-07 Thread Shawn Heisey
On 11/6/2019 8:17 AM, Tim Swetland wrote: I'm currently running into a ConcurrentModificationException ingesting data as we attempt to upgrade from Solr 8.1 to 8.2. It's not every document, but it definitely appears regularly in our logs. We didn't run into this problem in 8.1, so I'm not sure wh

Re: ConcurrentModificationException in SolrInputDocument writeMap

2019-11-07 Thread Edward Ribeiro
You probably hit https://issues.apache.org/jira/projects/SOLR/issues/SOLR-8028 Regards, Edward Em qua, 6 de nov de 2019 13:23, Mikhail Khludnev escreveu: > Hello, Tim. > Please confirm my understanding. Does exception happens in standalone Java > ingesting app? > If, it's so, Does it reuse ei

Re: ConcurrentModificationException in SolrInputDocument writeMap

2019-11-06 Thread Mikhail Khludnev
Hello, Tim. Please confirm my understanding. Does exception happens in standalone Java ingesting app? If, it's so, Does it reuse either SolrInputDocument instances of fields/values collections between update calls? On Wed, Nov 6, 2019 at 8:00 AM Tim Swetland wrote: > Nevermind my comment on not

Re: ConcurrentModificationException in SolrInputDocument writeMap

2019-11-06 Thread Tim Swetland
Nevermind my comment on not having this problem in 8.1. We do have it there as well, I just didn't look far enough back in our logs on my initial search. Would still appreciate whatever thoughts anyone might have on the exception. On Wed, Nov 6, 2019 at 10:17 AM Tim Swetland wrote: > I'm current

ConcurrentModificationException in SolrInputDocument writeMap

2019-11-06 Thread Tim Swetland
I'm currently running into a ConcurrentModificationException ingesting data as we attempt to upgrade from Solr 8.1 to 8.2. It's not every document, but it definitely appears regularly in our logs. We didn't run into this problem in 8.1, so I'm not sure what might have changed. I feel like this is p