34 lines
1.6 KiB
YAML
34 lines
1.6 KiB
YAML
---
|
|
# solr
|
|
solr_http_port: 8983
|
|
tomcat_load_additional_default_conf: True
|
|
tomcat_version: 7
|
|
# solr needs a lot of time to start if it needs to rebuild its indices
|
|
tomcat_restart_timeout: 100000
|
|
|
|
solr_version: 4.10.2
|
|
solr_service: -solr
|
|
solr_config_name: hindex
|
|
solr_shards: 1
|
|
solr_instance: '{{ solr_service }}'
|
|
solr_log_level: INFO
|
|
solr_http_port_1: '{{ solr_http_port }}'
|
|
solr_zoo_port: 9983
|
|
solr_zoo_port_1: 9984
|
|
solr_zoo_port_2: 9985
|
|
solr_jmx_port_1: 8601
|
|
solr_user: '{{ tomcat_user }}'
|
|
solr_group: '{{ tomcat_user }}'
|
|
solr_outside_tomcat_dir: False
|
|
# We need to define this one because we are using the tomcat multiple instances role
|
|
solr_tomcat_instance_dir: '{{ tomcat_m_instances_base_path }}/{{ solr_http_port }}'
|
|
solr_data_dir: '{{ solr_tomcat_instance_dir }}/solr'
|
|
solr_zookeeper_data_dir: '{{ solr_data_dir }}/zoo_data'
|
|
solr_install_collection1: False
|
|
# Stand alone
|
|
solr_opts: "-DzkRun -DnumShards={{ solr_shards }}"
|
|
# This is for the replica/sharded version
|
|
# We need to pass a lot of options to the jdk for zookeeper and the solr shard configuration
|
|
#solr_opts: "-DzkRun={{ ansible_fqdn}}:{{ solr_zoo_port }} -DnumShards={{ solr_shards }} -DzkHost=index1.t.hadoop.research-infrastructures.eu:{{ solr_zoo_port }},index2.t.hadoop.research-infrastructures.eu:{{ solr_zoo_port }},index3.t.hadoop.research-infrastructures.eu:{{ solr_zoo_port }} -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port={{ solr_jmx_port_1 }} -Dcom.sun.management.jmxremote.password.file={{ tomcat_conf_dir }}/jmxremote.passwd -Dcom.sun.management.jmxremote.access.file={{ tomcat_conf_dir }}/jmxremote.access"
|
|
|