Re: Warning : no lockType configured for...

2010-03-14 Thread Lance Norskog
Doing an exhaustive scan of this problem, I did find this one hole: This constructor is not deprecated, but it uses a super() call that is deprecated. Also, this constructor is not used anywhere. I nominate it for deprecation as well. SolrIndexWriter.java, around line 170 /** * */ publi

Re: Warning : no lockType configured for...

2010-03-09 Thread Chris Hostetter
: Ok I think I know where the problem is ... : It's the constructor used by SolrCore in r772051 Ughhh... so to be clear: you haven't been using Solr 1.4 at any point in this thread? that explains why no one else could recreate the problem you were describing. For future refrence: if

Re: Warning : no lockType configured for...

2010-03-09 Thread Mani EZZAT
Ok I think I know where the problem is @Deprecated 169 public SolrIndexWriter(String name, String path, DirectoryFactory dirFactory, boolean create, IndexSchema schema, SolrIndexConfig config) throws IOException { 170super(getDirectory(path, dirFactory, null), config.luceneAutoCom

Re: Warning : no lockType configured for...

2010-03-05 Thread Mani EZZAT
Should I fill a bug ? Mani EZZAT wrote: I tired using the default solrconfig and schema (from the example in 1.3 release) and I still get the same warnings When I look at the log, the solrconfig seems correcly loaded, but something is strange : newSearcher warming query from solrconfig.xml}]

Re: Warning : no lockType configured for...

2010-03-04 Thread Mani EZZAT
I tired using the default solrconfig and schema (from the example in 1.3 release) and I still get the same warnings When I look at the log, the solrconfig seems correcly loaded, but something is strange : newSearcher warming query from solrconfig.xml}]} 2010-03-04 10:35:32,545 DEBUG [Config] s

Re: Warning : no lockType configured for...

2010-03-02 Thread Mani EZZAT
I don't know, I didn't try because I have the need to create a different core each time. I'll do some tests with the default config and will report back to all of you Thank you for your time Tom Hill. wrote: Hi Mani, Mani EZZAT wrote: I'm dynamically creating cores with a new index, usin

Re: Warning : no lockType configured for...

2010-03-02 Thread Tom Hill.
Hi Mani, Mani EZZAT wrote: > I'm dynamically creating cores with a new index, using the same schema > and solrconfig.xml Does the problem occur if you use the same configuration in a single, static core? Tom -- View this message in context: http://old.nabble.com/Re%3A-Warning-%3A-no-lockTyp

Re: Warning : no lockType configured for...

2010-03-01 Thread Chris Hostetter
: I'm dynamically creating cores with a new index, using the same schema ... : 2010-02-24 16:24:54,176 DEBUG [Config] solrconfig.xml : mainIndex/lockType=simple ... : 2010-02-24 16:24:54,540 WARN [SolrIndexWriter] No lockType configured for : /home/dev/Desktop/athena-alerts-serv

Re: Warning : no lockType configured for...

2010-02-28 Thread Mani EZZAT
Anyone got an idea ? I'm stuck on this and I can't find the solution Mani EZZAT wrote: Hello, I have this warning even if (I think) everything is setted correctly I'm dynamically creating cores with a new index, using the same schema and solrconfig.xml I looked at the solr code (SolrCore, Con