* Updated dependencies * Updated .gitignore * WIP: macro and micro benchmarks * Updated benchmark suite * Use the same suite for both macro and micro benchmarks * WIP: benchmark report * Updated benchmark suite * Updated docker scripts * Updated benchmark suite * Updated scripts * Updated benchmark suite * Added split2
14 lines
370 B
Bash
Executable File
14 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
|
|
exec docker run \
|
|
--rm \
|
|
-e "node.attr.testattr=test" \
|
|
-e "path.repo=/tmp" \
|
|
-e "repositories.url.allowed_urls=http://snapshot.*" \
|
|
-e "discovery.type=single-node" \
|
|
-p 9200:9200 \
|
|
--network=elastic \
|
|
--name=elasticsearch \
|
|
docker.elastic.co/elasticsearch/elasticsearch:7.0.0-beta1
|
|
# docker.elastic.co/elasticsearch/elasticsearch:6.6.0
|