Open codyburleson opened 5 years ago
The README instructs the following, which does not work in Solr 8:
:solr> cd example :example> java -jar start.jar :example> cd exampledocs :exampledocs> java -jar post.jar *.xml
There is no start.jar in SOLR_HOME/example. I tried the following:
start.jar
SOLR_HOME/example
bin/solr -e exampledocs
However, that prints the following error:
ERROR: Unsupported example exampledocs! Please choose one of: cloud, dih, schemaless, or techproducts
Is there a way that we can run the Showcase using Solr-8.0.0 or higher?
In case someone still has this need:
bin/solr create_core -c collection1 -d sample_techproducts_configs bin/post -c collection1 example/exampledocs/*
The README instructs the following, which does not work in Solr 8:
There is no
start.jar
inSOLR_HOME/example
. I tried the following:bin/solr -e exampledocs
However, that prints the following error:
ERROR: Unsupported example exampledocs! Please choose one of: cloud, dih, schemaless, or techproducts
Is there a way that we can run the Showcase using Solr-8.0.0 or higher?