Skip to content
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

Upgrade Solr to 9.3.0 #9787

Merged
merged 28 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
548dd99
update Solr 8.11.1 to 9.3.0 (minus config) #9260
pdurbin Aug 14, 2023
5a68632
replace vanilla Solr 9.3.0 config with our 8.11.1 #9260
pdurbin Aug 16, 2023
10cb294
fix XSLTResponseWriter namespace and enable scripting module #9260
pdurbin Aug 16, 2023
bb01c6e
add Solr release note #9260
pdurbin Aug 16, 2023
e6928ea
Merge branch 'develop' into 9260-solr930 #9260
pdurbin Aug 18, 2023
c7e2e23
Merge branch 'develop' into 9260-solr930 #9260
pdurbin Aug 21, 2023
926e6ea
double sleep in test #9260
pdurbin Aug 22, 2023
5623503
refactor(solr): base solrconfig.xml on latest vanilla
poikilotherm Aug 23, 2023
137f319
refactor(solr): optimize schema.xml for Solr 9
poikilotherm Aug 23, 2023
fe702b9
refactor(solr,configbaker): do not copy managed-schema.xml file into …
poikilotherm Aug 23, 2023
8d37b0f
explain more about Solr modules #9260
pdurbin Aug 23, 2023
c21d8e6
Merge branch 'develop' into 9260-solr930 #9260
pdurbin Aug 23, 2023
dce0b0c
Merge branch '9260-solr930' into 9260-vanilla-solr-src
poikilotherm Aug 24, 2023
31ce7ac
Merge pull request #9826 from IQSS/9260-vanilla-solr-src
pdurbin Aug 24, 2023
e5be4be
Revert "explain more about Solr modules #9260" #9260
pdurbin Aug 24, 2023
8666472
rm scripting module, XSLTResponseWriter removed #9260
pdurbin Aug 24, 2023
022bf06
update release note, fresh index a must #9260
pdurbin Aug 24, 2023
137b1ba
delete :PublicInstall setting before and after test run #9260
pdurbin Aug 24, 2023
81490f8
update SolrJ to 9.3.0 #9260
pdurbin Aug 24, 2023
b8d0717
style(test): rename var in FilesIT.testAccessFacet to depict that sea…
poikilotherm Aug 24, 2023
585dc61
fix(test): add waiting for reindexing in timing critical test code wi…
poikilotherm Aug 24, 2023
eb10b86
doc(install): fix Solr 9.3 download links
poikilotherm Aug 24, 2023
3944cf1
9829 Use macos-latest runner for shellspec
bencomp Aug 25, 2023
76902ed
clarify supported version #9260
pdurbin Aug 28, 2023
2a74c6b
handle custom metadata blocks #9260
pdurbin Aug 28, 2023
e22e359
Merge branch 'develop' into 9260-solr930 #9260
pdurbin Aug 28, 2023
be34440
more detailed Solr release note #9260
pdurbin Aug 28, 2023
2308c10
fix reindex command #9260
pdurbin Aug 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc(install): fix Solr 9.3 download links
  • Loading branch information
poikilotherm authored Aug 24, 2023
commit eb10b86b2fb638f55e0d5209fd492e03fb2c6ac9
2 changes: 1 addition & 1 deletion doc/sphinx-guides/source/developers/classic-dev-env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ To install Solr, execute the following commands:

``cd /usr/local/solr``

``curl -O http://archive.apache.org/dist/lucene/solr/9.3.0/solr-9.3.0.tgz``
``curl -O http://archive.apache.org/dist/solr/solr/9.3.0/solr-9.3.0.tgz``

``tar xvfz solr-9.3.0.tgz``

Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx-guides/source/installation/prerequisites.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Become the ``solr`` user and then download and configure Solr::

su - solr
cd /usr/local/solr
wget https://archive.apache.org/dist/lucene/solr/9.3.0/solr-9.3.0.tgz
wget https://archive.apache.org/dist/solr/solr/9.3.0/solr-9.3.0.tgz
tar xvzf solr-9.3.0.tgz
cd solr-9.3.0
cp -r server/solr/configsets/_default server/solr/collection1
Expand Down