mirror of https://github.com/apache/lucene.git
SOLR-7810: map-reduce contrib script to set classpath for convenience refers to example rather than server.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1691946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bed6c558d6
commit
983d9efe76
|
@ -236,6 +236,9 @@ Bug Fixes
|
|||
a bug that resulted in filter cache lookup misses as well as the filter cache
|
||||
exceeding it's configured size. (yonik)
|
||||
|
||||
* SOLR-7810: map-reduce contrib script to set classpath for convenience refers to example
|
||||
rather than server. (Mark Miller)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -24,8 +24,8 @@ echo `absPath $solr_distrib`
|
|||
|
||||
# extract war if necessary
|
||||
|
||||
if [ ! -d "$solr_distrib/example/solr-webapp/webapp" ]; then
|
||||
unzip -o $solr_distrib/example/webapps/solr.war -d $solr_distrib/example/solr-webapp/webapp
|
||||
if [ ! -d "$solr_distrib/server/solr-webapp/webapp" ]; then
|
||||
unzip -o $solr_distrib/server/webapps/solr.war -d $solr_distrib/server/solr-webapp/webapp
|
||||
fi
|
||||
|
||||
# Setup env variables for MapReduceIndexerTool
|
||||
|
@ -38,7 +38,7 @@ dir3=`absPath "$solr_distrib/contrib/map-reduce/lib"`
|
|||
dir4=`absPath "$solr_distrib/contrib/morphlines-core/lib"`
|
||||
dir5=`absPath "$solr_distrib/contrib/morphlines-cell/lib"`
|
||||
dir6=`absPath "$solr_distrib/contrib/extraction/lib"`
|
||||
dir7=`absPath "$solr_distrib/example/solr-webapp/webapp/WEB-INF/lib"`
|
||||
dir7=`absPath "$solr_distrib/server/solr-webapp/webapp/WEB-INF/lib"`
|
||||
|
||||
# Setup -libjar
|
||||
|
||||
|
|
Loading…
Reference in New Issue