Re: Unable to create core Solr 8.6.2

2020-09-17 Thread Erick Erickson
Look in your solr log, there’s usually a more detailed message > On Sep 17, 2020, at 9:35 AM, Anuj Bhargava wrote: > > Getting the following error message while trying to create core > > # sudo su - solr -c "/opt/solr/bin/solr create_core -c 9lives" > WARNING: Using _default configset with data

Re: Unable to create core in Solr 8.6.0

2020-08-09 Thread Chris Larsson
Just to provide a little closure, it appears that this issue is fixed in Java 14.0.2. Chris On Mon, Jul 27, 2020 at 5:38 PM Chris Larsson wrote: > Nice... That's the code I was just looking at. > > > https://github.com/apache/lucene-solr/blob/branch_8_6/solr/core/src/java/org/apache/solr/update

Re: Unable to create core in Solr 8.6.0

2020-07-27 Thread Chris Larsson
Nice... That's the code I was just looking at. https://github.com/apache/lucene-solr/blob/branch_8_6/solr/core/src/java/org/apache/solr/update/processor/ParseDateFieldUpdateProcessorFactory.java >From the stack trace: Caused by: java.time.format.DateTimeParseException: Text '2020-07-27T18:02:42.0

Re: Unable to create core in Solr 8.6.0

2020-07-27 Thread Erick Erickson
I just remembered the issue and relayed the JIRA ;). As to why I suspect the Java issue, if this was a core Solr issue I’d expect it to be a show stopper, Solr isn’t much good if you can’t create cores. Of course weirder things have happened. Plus, the date is fine: "2020-07-27T18:02:42.069Z"

Re: Unable to create core in Solr 8.6.0

2020-07-27 Thread Chris Larsson
Thank you Erick. I appreciate you taking the time to respond. I have seen the post you shared and I know the work around does solve the issue. I am more concerned about why Solr doesn't work with the default settings. I am also not convinced it is solely a Java issue, but I would like to invest

Re: Unable to create core in Solr 8.6.0

2020-07-27 Thread Erick Erickson
Is there an echo in here? Take a look at: https://issues.apache.org/jira/browse/SOLR-13606 It’s actually a weirdness with Java. In that JIRA David Smiley suggest a way to deal with it, but I confess I haven’t a clue about the nuances there. Best, Erick > On Jul 27, 2020, at 3:01 PM, sa wrote

Re: Unable to create core in Solr 8.6.0

2020-07-27 Thread Erick Erickson
Take a look at: https://issues.apache.org/jira/browse/SOLR-13606 It’s actually a weirdness with Java. In that JIRA David Smiley suggest a way to deal with it, but I confess I haven’t a clue about the nuances there. Best, Erick > On Jul 27, 2020, at 3:12 PM, Chris Larsson wrote: > > Ran int

Re: Unable to create core [collection] Caused by: null

2017-07-28 Thread Lucas Pelegrino
Thanks Shawn and everyone! Solved. 2017-07-27 18:29 GMT-04:00 Shawn Heisey : > On 7/25/2017 5:21 PM, Lucas Pelegrino wrote: > > Trying to make solr work here, but I'm getting this error from this > command: > > > > $ ./solr create -c products -d /Users/lucaswxp/reduza-solr/ > products/conf/ > >

Re: Unable to create core [collection] Caused by: null

2017-07-27 Thread Shawn Heisey
On 7/25/2017 5:21 PM, Lucas Pelegrino wrote: > Trying to make solr work here, but I'm getting this error from this command: > > $ ./solr create -c products -d /Users/lucaswxp/reduza-solr/products/conf/ > > Error CREATEing SolrCore 'products': Unable to create core [products] > Caused by: null > > I

Re: Unable to create core [collection] Caused by: null

2017-07-27 Thread Nawab Zada Asad Iqbal
Lucas may be hitting this issue: https://stackoverflow.com/questions/4659151/recurring-exception-without-a-stack-trace-how-to-reset Could you try running your server with jvm value: -XX:-OmitStackTraceInFastThrow ? Nawab On Wed, Jul 26, 2017 at 11:42 AM, Anshum Gupta wrote: > Hi Lucas, > >

Re: Unable to create core [collection] Caused by: null

2017-07-26 Thread Anshum Gupta
Hi Lucas, It would be super useful if you provided more information with the question. A few things you might want to include are - version of Solr, how did you start it, stack trace from the log etc. -Anshum > On Jul 25, 2017, at 4:21 PM, Lucas Pelegrino wrote: > > Hey guys. > > Trying

Re: Unable to create core [collection] Caused by: null

2017-07-25 Thread Rick Leir
Lucas, What is in the log before that stackdump? The stackdump seems to indicate that Solr is trying to run with a managed schema. Looking at the cwiki, "When a ||is not explicitly declared in a |solrconfig.xml|file, Solr implicitly uses a|ManagedIndexSchemaFactory|, which is by default|"muta

RE: Unable to create core

2016-07-28 Thread Alexandre Drouin
Subject: Re: Unable to create core Importance: High What do you see in the Admin UI? Is it there? Also, deleting the core - I believe - still leaves the underlying directory on the filesystem in place. So perhaps it is actually complaining about the leftover filesystem directory when you try to

Re: Unable to create core

2016-07-28 Thread Alexandre Rafalovitch
What do you see in the Admin UI? Is it there? Also, deleting the core - I believe - still leaves the underlying directory on the filesystem in place. So perhaps it is actually complaining about the leftover filesystem directory when you try to create a new core with the same name/location. Check th