-
Notifications
You must be signed in to change notification settings - Fork 0
/
solr.cfg
54 lines (43 loc) · 1.06 KB
/
solr.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
# install collective.solr
# call /@@solr-maintenance/reindex to index in solr
[buildout]
parts +=
core-prop
solr
auto-checkout +=
# collective.solr
[zope-conf]
solr-eggs =
collective.solr
collective.indexing
[versions]
collective.solr = 8.0.0a12
kitconcept.recipe.solr = 1.0.0a5
# Required by:
# collective.solr==8.0.0a5
collective.indexing = 2.1
collective.js.showmore = 1.0a4
# Required by:
# kitconcept.recipe.solr==1.0.0a5
hexagonit.recipe.download = 1.7.1
[instance1]
eggs += ${zope-conf:solr-eggs}
environment-vars += SOLR_PORT ${port:instance-solr-http}
[testenv]
SOLR_PORT = ${port:instance-solr-http}
[core-prop]
recipe = collective.recipe.template
min-ram = 128M
max-ram = 1024M
config = config/default
input = config/core.properties.tmpl
output = ${core-prop:config}/core.properties
[solr]
recipe = kitconcept.recipe.solr
src = http://archive.apache.org/dist/lucene/solr/8.2.0/solr-8.2.0.tgz
solr-config = ${core-prop:config}
port = ${port:instance-solr-http}
java_opts =
-server
-Xms${core-prop:min-ram}
-Xmx${core-prop:max-ram}