-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
solrconfig.xml provided in solr/conf compatibility with Solr 9 #6094
Comments
@sgurnick I thought the config in |
I started a fresh solr 9.7 locally and it loaded the the solr core for me with the config in |
@sgurnick Are you still having problems with this? |
@cjcolvar No changes in behavior since I posted this issue. My workaround is what I stated in this issue's description, where I modify lines 31-37 in I am running the Avalon stack on separate virtual machines (we're not using Docker for our deployment). Each of the following are running on standalone virtual machines:
When I install Solr 9, I'm using their built-in provisioning scripts. And when I set-up the Avalon core, I'm using their built-in So to answer your question, yes, this issue persists for me. My workaround seems to get me going, but does require manual intervention and tracking of a |
I hadn't considered that the official docker image would be that different from the non-docker install. I'll take another look. Thanks! |
I provisioned a fresh Solr 9.7 server in conjunction with an upgrade of Avalon from
7.6
to7.7.2
. It is my understanding that Avalon7.7.2
does support the use of Solr 9.After I confirmed my standalone Solr 9 instance was up and running, I created a new core and used the files provided in solr/conf of the Avalon repo for the
7.7.2
tag.After restarting Solr, the core could not load. These warnings and errors appeared in the
solr.log
file:It appears the problem is caused by lines 31-37 in the
solrconfig.xml
file:avalon/solr/conf/solrconfig.xml
Lines 31 to 37 in c1a19e0
In a fresh install of Solr 9:
contrib
anddist
sub-directories within the solr install directory are no longer presentsolr-cell-\d.*\.jar
file no longer existsThese are reflected in the Other section of the Major Changes in Solr 9 page:
solr-extraction-
jar instead ofsolr-cell-
jars.To get the avalon core loaded in my Solr 9 instance, I updated the lines 31-37 to just the following lines:
After restarting Solr, the core loaded successfully without the above mentioned warnings/errors.
Questions:
solr/conf
in the avalon repo what I should be using when creating a new Solr 9 core for use with Avalon 7.7 or higher?Thank you for your help and guidance.
The text was updated successfully, but these errors were encountered: