Re: Disable All kind of caching in Solr/Lucene

2017-05-23 Thread Nilesh Kamani
Thanks Pushkar. I will upgrade to latest solar version and check if it is working now. On Tue, May 23, 2017 at 7:13 PM Pushkar Raste wrote: > What version are you on. There was a bug where if you use cache size 0, it > would still create a cache with size 2 (or may be

Re: Disable All kind of caching in Solr/Lucene

2017-05-23 Thread Pushkar Raste
What version are you on. There was a bug where if you use cache size 0, it would still create a cache with size 2 (or may be just 1). It was fixed under https://issues.apache.org/jira/browse/SOLR-9886?filter=-2 On Apr 3, 2017 9:26 AM, "Nilesh Kamani" wrote: > @Yonik

Re: Disable All kind of caching in Solr/Lucene

2017-04-03 Thread Nilesh Kamani
@Yonik even though the code change is in SolrIndexer class, it has nothing do with index itself. After fetching docIds, I am filtering them on one more criteria. (Very weird code it is). I tried q={!cache=false}, but not working. Subsequent search is done under 2 milliseconds. Does anybdody have

Re: Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Yonik Seeley
On Fri, Mar 31, 2017 at 1:53 PM, Nilesh Kamani wrote: > @Alexandre - Could you please point me to reference doc to remove default > cache settings ? > > @Yonik - The code change is in Solr Indexer to sort the results. OK, so to test indexing performance, there are no

Re: Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Nilesh Kamani
@Alexandre - Could you please point me to reference doc to remove default cache settings ? @Yonik - The code change is in Solr Indexer to sort the results. On Fri, Mar 31, 2017 at 10:34 AM, Yonik Seeley wrote: > On Fri, Mar 31, 2017 at 9:44 AM, Nilesh Kamani

Re: Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Yonik Seeley
On Fri, Mar 31, 2017 at 9:44 AM, Nilesh Kamani wrote: > I am planning to do load testing for some of my code changes and I need to > disable all kind of caching. Perhaps you should be aiming to either: 1) seek a config + query load that maximizes time spent in your code

Re: Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Alexandre Rafalovitch
I think there are default caching settings. You may need to explicitly disable them. Regards, Alex On 31 Mar 2017 9:44 AM, "Nilesh Kamani" wrote: > Hello All, > > I am planning to do load testing for some of my code changes and I need to > disable all kind of

Re: Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Charlie Hull
On 31/03/2017 14:44, Nilesh Kamani wrote: Hello All, I am planning to do load testing for some of my code changes and I need to disable all kind of caching. I removed all caching related elements from solr config (in zookeeper). This is the document I referred.

Disable All kind of caching in Solr/Lucene

2017-03-31 Thread Nilesh Kamani
Hello All, I am planning to do load testing for some of my code changes and I need to disable all kind of caching. I removed all caching related elements from solr config (in zookeeper). This is the document I referred.