-
Notifications
You must be signed in to change notification settings - Fork 2
/
general.conf
42 lines (30 loc) · 1.43 KB
/
general.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Properties shared by the scripts
if [[ -s custom.conf ]]; then
source custom.conf
fi
# Don't change the VERSIONS without also updating the scripts themselves
VERSIONS="4.10.4 4.10.4-sparse 5.5.5 6.6.2 7.1.0 7.2.1 7.3.0 7.6.0 8.0.0 8.2.0 8.4.0 8.7.0 8.11.1"
# TODO: Enable these when it make sense: trunk trunk-7521
LAYOUT2_VERSIONS="5.5.5 6.6.2 7.2.1 7.3.0 7.6.0 8.0.0 8.2.0 8.4.0 8.7.0 8.11.1 trunk trunk-7521"
: ${ZOO_VERSION:="3.6.3"} # 3.6.3 works with Solr 8.11
: ${ZOO_VERSION_TAR:="${ZOO_VERSION}-bin"} # No bin for ~3.4.14 which worked with Solr 7
: ${ZOO_URL:="https://dlcdn.apache.org/zookeeper/zookeeper-${ZOO_VERSION}/apache-zookeeper-${ZOO_VERSION_TAR}.tar.gz"}
# The location of the cloud
: ${CLOUD:=`pwd`/cloud}
# Solr version. Normally specified on the command line. Freeze it in custom.conf if needed
: $VERSION:=""}
: ${SOLR_REPOSITORY:=git@github.com:apache/lucene-solr.git}
: ${SOLR_TRUNK_HASH:=e152575f5ea5ea798ca989c852afb763189dee60}
: ${PATCH7521:="https://issues.apache.org/jira/secure/attachment/12835109/LUCENE-7521.patch"}
#: ${ZOO_URL:="http://ftp.download-by.net/apache/zookeeper/zookeeper-${ZOO_VERSION}/apache-zookeeper-${ZOO_VERSION_TAR}.tar.gz"}
: ${ZOO_BASE_PORT:=2381}
: ${SOLRS:=1}
: ${ZOOS:=1}
# Solr 4.10.4 seems to have a problem with using port 51000
: ${SOLR_BASE_PORT:=9000}
: ${SOLR_MEM:=1g}
# Needed to access the cloud from the outside
: ${HOST:=`hostname`}
# cloud_sync
: ${SHARDS:=1}
: ${REPLICAS:=1}