Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
77aa67d7
Commit
77aa67d7
authored
9 years ago
by
Fred Smith
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2588 from edx/derf/elasticsearch_2_1
Elasticsearch 1.5
parents
ca7e0680
c561ef53
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
41 deletions
+78
-41
playbooks/roles/elasticsearch/defaults/main.yml
+6
-5
playbooks/roles/elasticsearch/tasks/main.yml
+70
-26
playbooks/roles/elasticsearch/templates/edx/etc/elasticsearch/elasticsearch.yml.j2
+2
-7
playbooks/roles/elasticsearch/templates/etc/default/elasticsearch.j2
+0
-3
No files found.
playbooks/roles/elasticsearch/defaults/main.yml
View file @
77aa67d7
...
...
@@ -3,14 +3,15 @@ elasticsearch_app_dir: "{{ COMMON_APP_DIR }}/elasticsearch"
elasticsearch_data_dir
:
"
{{
COMMON_DATA_DIR
}}/elasticsearch"
elasticsearch_log_dir
:
"
{{
COMMON_LOG_DIR
}}/elasticsearch"
elasticsearch_cfg_dir
:
"
{{
COMMON_CFG_DIR
}}/elasticsearch"
elasticsearch_
version
:
"
0.90.11
"
elasticsearch_
sha
:
"
8e81388d0ba7e427b42514d96e25ba6499024c24
"
elasticsearch_
file
:
"
elasticsearch-{{
elasticsearch_version
}}.deb
"
elasticsearch_
url
:
"
https://download.elasticsearch.org/elasticsearch/elasticsearch/{{
elasticsearch_file
}}
"
elasticsearch_
apt_key
:
"
46095ACC8548582C1A2699A9D27D666CD88E42B4
"
elasticsearch_
apt_keyserver
:
"
ha.pool.sks-keyservers.net
"
elasticsearch_
repo
:
"
deb
http://packages.elasticsearch.org/elasticsearch/1.5/debian
stable
main
"
elasticsearch_
package_name
:
"
elasticsearch
"
elasticsearch_user
:
"
elasticsearch"
elasticsearch_group
:
"
elasticsearch"
#
# Defaults for a single server installation.
ELASTICSEARCH_CLUSTER
ED
:
false
ELASTICSEARCH_CLUSTER
_MEMBERS
:
[]
ELASTICSEARCH_HEAP_SIZE
:
"
512m"
ELASTICSEARCH_VERSION
:
"
1.5.2"
This diff is collapsed.
Click to expand it.
playbooks/roles/elasticsearch/tasks/main.yml
View file @
77aa67d7
...
...
@@ -29,47 +29,91 @@
# - elasticsearch
#
-
name
:
download elasticsearch
get_url
:
>
url={{ elasticsearch_url }}
dest=/var/tmp/{{ elasticsearch_file }}
force=no
register
:
elasticsearch_reinstall
-
name
:
Install Elasticsearch repo key
apt_key
:
id
:
"
{{
elasticsearch_apt_key
}}"
keyserver
:
"
{{
elasticsearch_apt_keyserver
}}"
state
:
present
tags
:
-
install
-
install:base
-
name
:
install elasticsearch from local package
shell
:
>
dpkg -i --force-confold /var/tmp/elasticsearch-{{ elasticsearch_version }}.deb
executable=/bin/bash
when
:
elasticsearch_reinstall.changed
-
name
:
Add Elasticsearch Repo
apt_repository
:
repo
:
"
{{
elasticsearch_repo
}}"
state
:
present
tags
:
-
install
-
install:base
-
name
:
install elasticsearch
apt
:
pkg
:
"
{{
elasticsearch_package_name
}}={{
ELASTICSEARCH_VERSION
}}"
state
:
present
install_recommends
:
yes
force
:
yes
update_cache
:
yes
tags
:
-
install
-
install:base
register
:
elasticsearch_reinstall
-
name
:
create directories
file
:
>
path
=
"{{ item }}"
state
=
directory
owner
=
"{{ elasticsearch_user }}"
group
=
"{{ elasticsearch_group }}"
file
:
path
:
"
{{
item
}}"
state
:
directory
owner
:
"
{{
elasticsearch_user
}}"
group
:
"
{{
elasticsearch_group
}}"
with_items
:
-
"
{{
elasticsearch_data_dir
}}"
-
"
{{
elasticsearch_log_dir
}}"
-
"
{{
elasticsearch_cfg_dir
}}"
tags
:
-
install
-
install:base
-
name
:
update elasticsearch defaults
template
:
>
src=etc/default/elasticsearch.j2 dest=/etc/default/elasticsearch
template
:
src
:
etc/default/elasticsearch.j2
dest
:
/etc/default/elasticsearch
tags
:
-
install
-
install:configuration
-
name
:
drop the elasticsearch config
template
:
>
src=edx/etc/elasticsearch/elasticsearch.yml.j2 dest={{ elasticsearch_cfg_dir }}/elasticsearch.yml
mode=0744
template
:
src
:
edx/etc/elasticsearch/elasticsearch.yml.j2
dest
:
"
{{
elasticsearch_cfg_dir
}}/elasticsearch.yml"
mode
:
0744
tags
:
-
install
-
install:configuration
-
name
:
drop the elasticsearch logging config
template
:
>
src=edx/etc/elasticsearch/logging.yml.j2 dest={{ elasticsearch_cfg_dir }}/logging.yml
mode=0744
template
:
src
:
edx/etc/elasticsearch/logging.yml.j2
dest
:
"
{{
elasticsearch_cfg_dir
}}/logging.yml"
mode
:
0744
tags
:
-
install
-
install:configuration
-
name
:
Ensure elasticsearch is enabled and started
service
:
name=elasticsearch state=started enabled=yes
service
:
name
:
elasticsearch
state
:
started
enabled
:
yes
tags
:
-
manage
-
manage:start
-
name
:
Restart elastic when there has been an upgrade
service
:
name=elasticsearch state=restarted enabled=yes
service
:
name
:
elasticsearch
state
:
restarted
enabled
:
yes
when
:
elasticsearch_reinstall.changed
tags
:
-
manage
-
manage:restart
-
install
This diff is collapsed.
Click to expand it.
playbooks/roles/elasticsearch/templates/edx/etc/elasticsearch/elasticsearch.yml.j2
View file @
77aa67d7
...
...
@@ -33,14 +33,9 @@ script.disable_dynamic: true
# to perform discovery when new nodes (master or data) are started:
#
# discovery.zen.ping.unicast.hosts: ["host1", "host2:port", "host3[portX-portY]"]
{%- if ELASTICSEARCH_CLUSTERED -%}
{%- set hosts= [] -%}
{%- if ELASTICSEARCH_CLUSTER_MEMBERS|length > 1 -%}
{%- for host in hostvars.keys() -%}
{% do hosts.append(host) %}
{%- endfor %}
discovery.zen.ping.unicast.hosts: ['{{hosts|join("\',\'") }}']
discovery.zen.ping.unicast.hosts: ['{{ELASTICSEARCH_CLUSTER_MEMBERS|join("\',\'") }}']
{% endif -%}
...
...
This diff is collapsed.
Click to expand it.
playbooks/roles/elasticsearch/templates/etc/default/elasticsearch.j2
View file @
77aa67d7
...
...
@@ -34,8 +34,5 @@ DATA_DIR={{ COMMON_DATA_DIR }}
# ElasticSearch configuration directory
CONF_DIR={{ elasticsearch_cfg_dir }}
# ElasticSearch configuration file (elasticsearch.yml)
CONF_FILE=${CONF_DIR}/elasticsearch.yml
# Additional Java OPTS
#ES_JAVA_OPTS=
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment