##// END OF EJS Templates
elasticsearch: bump to ES 6.x
ergo -
Show More
@@ -9,13 +9,13 b' notifications:'
9 9 matrix:
10 10 include:
11 11 - python: 3.5
12 env: TOXENV=py35
12 env: TOXENV=py35 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
13 13 - python: 3.6
14 env: TOXENV=py36
14 env: TOXENV=py36 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
15 15 addons:
16 16 postgresql: "9.6"
17 17 - python: 3.6
18 env: TOXENV=py36 PGPORT=5432
18 env: TOXENV=py36 PGPORT=5432 ES_VERSION=6.6.2 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
19 19 addons:
20 20 postgresql: "10"
21 21 apt:
@@ -24,6 +24,9 b' matrix:'
24 24 - postgresql-client-10
25 25
26 26 install:
27 - wget ${ES_DOWNLOAD_URL}
28 - tar -xzf elasticsearch-${ES_VERSION}.tar.gz
29 - ./elasticsearch-${ES_VERSION}/bin/elasticsearch &
27 30 - travis_retry pip install -U setuptools pip tox
28 31
29 32 script:
@@ -215,8 +215,7 b' def update_template():'
215 215 "settings": {
216 216 "index": {
217 217 "refresh_interval": "5s",
218 "translog": {"sync_interval": "5s", "durability": "async"},
219 "mapping": {"single_type": True}
218 "translog": {"sync_interval": "5s", "durability": "async"}
220 219 },
221 220 "number_of_shards": 5,
222 221 "analysis": shared_analysis,
@@ -298,7 +297,6 b' def update_template():'
298 297 "index": {
299 298 "refresh_interval": "5s",
300 299 "translog": {"sync_interval": "5s", "durability": "async"},
301 "mapping": {"single_type": True}
302 300 },
303 301 "number_of_shards": 5,
304 302 "analysis": shared_analysis,
@@ -320,7 +318,6 b' def update_template():'
320 318 "index": {
321 319 "refresh_interval": "5s",
322 320 "translog": {"sync_interval": "5s", "durability": "async"},
323 "mapping": {"single_type": True}
324 321 },
325 322 "number_of_shards": 5,
326 323 "analysis": shared_analysis,
@@ -342,7 +339,6 b' def update_template():'
342 339 "index": {
343 340 "refresh_interval": "5s",
344 341 "translog": {"sync_interval": "5s", "durability": "async"},
345 "mapping": {"single_type": True}
346 342 },
347 343 "number_of_shards": 5,
348 344 "analysis": shared_analysis,
@@ -364,7 +360,6 b' def update_template():'
364 360 "index": {
365 361 "refresh_interval": "5s",
366 362 "translog": {"sync_interval": "5s", "durability": "async"},
367 "mapping": {"single_type": True}
368 363 },
369 364 "number_of_shards": 5,
370 365 "analysis": shared_analysis,
General Comments 4
Under Review
author

Auto status change to "Under Review"

Under Review
author

Auto status change to "Under Review"

You need to be logged in to leave comments. Login now