Re: concurrency problem with delta-import (indexing various cores simultaniously)

2009-02-27 Thread Ryuuichi KUMAI
Hello Marc, I faced the similar problem, and I found a workaround. If the performance degradation in your application is caused by GC, this information might help you: https://issues.apache.org/jira/browse/SOLR-1042 Regards, Ryuuichi Kumai. 2009/2/21 Marc Sturlese : > > I am working

Re: index size tripled during optimization

2009-01-28 Thread Ryuuichi KUMAI
ltifile format first and then creates the compound index. So in the state immediately before optimization ends the size almost triples. Regards, Ryuuichi Kumai. 2009/1/28 Qingdi : > > > Hi, > > Starting about one week ago, our index size gets tripled during > optimization. > >

Re: Concurrency problem with delta-import

2009-01-26 Thread Ryuuichi KUMAI
rstood. Many thanks!! Regards, Ryuuichi Kumai. 2009/1/26 Shalin Shekhar Mangar : > The lists are OK since they are modified only in the constructor. The map > needs to be changed to a ConcurrentHashMap as you did in the patch. > > On Mon, Jan 26, 2009 at 7:23 PM, Shalin Shekhar Ma

Concurrency problem with delta-import

2009-01-26 Thread Ryuuichi KUMAI
= cache.putIfAbsent(string, ts); + if (cachedTs != null) +ts = cachedTs; } return ts.fillTokens(resolver); } Does anyone has a better idea? I appreciate any help anyone can give me. Regards, Ryuuichi Kumai.