We have an application which integrates with Solr 7.7 (currently 6 production deployments)... We are using Solrj API to interact with Solr. We are currently considering adding the support for Solr 8.x in the next release of our application...
Based on Solr 8 documentation https://lucene.apache.org/solr/guide/8_0/major-changes-in-solr-8.html it is recommended to do a complete re-indexing of the data to move to Solr 8, as it has major changes and deprecated features, this will have a huge impact (cost & time) on the existing projects using Solr 7.7. once they upgrade to the next release of our application...
So the suggestion is to consider supporting both Solr versions (7.7 & 8.x) in the next release of our application.
The question is: Is it possible to use Solrj (version - 8.x) client library against Solr server with lower version (i.e. 7.7)?
Thanks in advance!