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
: 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
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
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}]
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
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
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
: 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
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