* [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing
@ 2020-05-16 6:56 Oleg Piskunov
2020-05-17 12:34 ` Alexander V. Tikhonov
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Oleg Piskunov @ 2020-05-16 6:56 UTC (permalink / raw)
To: tarantool-patches; +Cc: Alexander Turenko
[-- Attachment #1: Type: text/plain, Size: 2647 bytes --]
- Adding 2 servers (sh1, sh2) for performance testing.
- Rebalance performance testing between servers:
- sh1 (tag: docker_sh1_perf) used for benches:
nosqlbench_hash, nosqlbench_tree
- sh2 (tag: docker_sh2_perf) used for benches:
ycsb_hash, ycsb_tree, cbench
- sh3 (tag: docker_sh3_perf) used for benches:
sysbench, tpcc
- sh9 (tag: docker_perf_ssd) used for benches:
linkbench_ssd
- Changing gitlab-ci tag for performance docker images
from 'perf' to 'deploy'.
Closes #4868
---
Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4868-parallel-perf
Issue: https://github.com/tarantool/tarantool/issues/4868
.gitlab-ci.yml | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c7f58b9..fc214ef 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -91,8 +91,6 @@ variables:
<<: *perf_only_definition
image: ${IMAGE_PERF_BUILT}
stage: perf
- tags:
- - docker_perf
artifacts:
when: always
paths:
@@ -191,7 +189,7 @@ perf_bootstrap:
<<: *perf_only_definition
stage: test
tags:
- - perf
+ - deploy
script:
- ${GITLAB_MAKE} perf_prepare
@@ -199,18 +197,24 @@ perf_bootstrap:
perf_sysbench:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh3_perf
variables:
<<: *perf_vars_definition
BENCH: 'sysbench'
perf_tpcc:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh3_perf
variables:
<<: *perf_vars_definition
BENCH: 'tpcc'
perf_ycsb_hash:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh2_perf
variables:
<<: *perf_vars_definition
BENCH: 'ycsb'
@@ -218,6 +222,8 @@ perf_ycsb_hash:
perf_ycsb_tree:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh2_perf
variables:
<<: *perf_vars_definition
BENCH: 'ycsb'
@@ -225,6 +231,8 @@ perf_ycsb_tree:
perf_nosqlbench_hash:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh1_perf
variables:
<<: *perf_vars_definition
BENCH: 'nosqlbench'
@@ -232,6 +240,8 @@ perf_nosqlbench_hash:
perf_nosqlbench_tree:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh1_perf
variables:
<<: *perf_vars_definition
BENCH: 'nosqlbench'
@@ -239,6 +249,8 @@ perf_nosqlbench_tree:
perf_cbench:
<<: *perf_docker_test_definition
+ tags:
+ - docker_sh2_perf
variables:
<<: *perf_vars_definition
BENCH: 'cbench'
--
1.8.3.1
[-- Attachment #2: Type: text/html, Size: 4062 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing
2020-05-16 6:56 [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing Oleg Piskunov
@ 2020-05-17 12:34 ` Alexander V. Tikhonov
2020-05-18 9:14 ` Sergey Bronnikov
2020-05-28 7:40 ` Kirill Yukhin
2 siblings, 0 replies; 4+ messages in thread
From: Alexander V. Tikhonov @ 2020-05-17 12:34 UTC (permalink / raw)
To: Oleg Piskunov; +Cc: tarantool-patches
Hi Oleg, thanks for the patch. LGTM.
On Sat, May 16, 2020 at 09:56:22AM +0300, Oleg Piskunov wrote:
>
>
> - Adding 2 servers (sh1, sh2) for performance testing.
> - Rebalance performance testing between servers:
> - sh1 (tag: docker_sh1_perf) used for benches:
> nosqlbench_hash, nosqlbench_tree
> - sh2 (tag: docker_sh2_perf) used for benches:
> ycsb_hash, ycsb_tree, cbench
> - sh3 (tag: docker_sh3_perf) used for benches:
> sysbench, tpcc
> - sh9 (tag: docker_perf_ssd) used for benches:
> linkbench_ssd
> - Changing gitlab-ci tag for performance docker images
> from 'perf' to 'deploy'.
>
> Closes #4868
> ---
>
> Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4868-parallel-perf
> Issue: https://github.com/tarantool/tarantool/issues/4868
>
> .gitlab-ci.yml | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index c7f58b9..fc214ef 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -91,8 +91,6 @@ variables:
> <<: *perf_only_definition
> image: ${IMAGE_PERF_BUILT}
> stage: perf
> - tags:
> - - docker_perf
> artifacts:
> when: always
> paths:
> @@ -191,7 +189,7 @@ perf_bootstrap:
> <<: *perf_only_definition
> stage: test
> tags:
> - - perf
> + - deploy
> script:
> - ${GITLAB_MAKE} perf_prepare
>
> @@ -199,18 +197,24 @@ perf_bootstrap:
>
> perf_sysbench:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh3_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'sysbench'
>
> perf_tpcc:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh3_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'tpcc'
>
> perf_ycsb_hash:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh2_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'ycsb'
> @@ -218,6 +222,8 @@ perf_ycsb_hash:
>
> perf_ycsb_tree:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh2_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'ycsb'
> @@ -225,6 +231,8 @@ perf_ycsb_tree:
>
> perf_nosqlbench_hash:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh1_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'nosqlbench'
> @@ -232,6 +240,8 @@ perf_nosqlbench_hash:
>
> perf_nosqlbench_tree:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh1_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'nosqlbench'
> @@ -239,6 +249,8 @@ perf_nosqlbench_tree:
>
> perf_cbench:
> <<: *perf_docker_test_definition
> + tags:
> + - docker_sh2_perf
> variables:
> <<: *perf_vars_definition
> BENCH: 'cbench'
> --
> 1.8.3.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing
2020-05-16 6:56 [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing Oleg Piskunov
2020-05-17 12:34 ` Alexander V. Tikhonov
@ 2020-05-18 9:14 ` Sergey Bronnikov
2020-05-28 7:40 ` Kirill Yukhin
2 siblings, 0 replies; 4+ messages in thread
From: Sergey Bronnikov @ 2020-05-18 9:14 UTC (permalink / raw)
To: Oleg Piskunov; +Cc: tarantool-patches, Alexander Turenko
Hi, Oleg
On 09:56 Sat 16 May , Oleg Piskunov wrote:
>
>
> - Adding 2 servers (sh1, sh2) for performance testing.
> - Rebalance performance testing between servers:
> - sh1 (tag: docker_sh1_perf) used for benches:
> nosqlbench_hash, nosqlbench_tree
> - sh2 (tag: docker_sh2_perf) used for benches:
> ycsb_hash, ycsb_tree, cbench
> - sh3 (tag: docker_sh3_perf) used for benches:
> sysbench, tpcc
> - sh9 (tag: docker_perf_ssd) used for benches:
> linkbench_ssd
> - Changing gitlab-ci tag for performance docker images
> from 'perf' to 'deploy'.
>
> Closes #4868
> ---
>
> Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4868-parallel-perf
> Issue: https://github.com/tarantool/tarantool/issues/4868
LGTM
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing
2020-05-16 6:56 [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing Oleg Piskunov
2020-05-17 12:34 ` Alexander V. Tikhonov
2020-05-18 9:14 ` Sergey Bronnikov
@ 2020-05-28 7:40 ` Kirill Yukhin
2 siblings, 0 replies; 4+ messages in thread
From: Kirill Yukhin @ 2020-05-28 7:40 UTC (permalink / raw)
To: Oleg Piskunov; +Cc: tarantool-patches, Alexander Turenko
Hello,
On 16 май 09:56, Oleg Piskunov wrote:
>
>
> - Adding 2 servers (sh1, sh2) for performance testing.
> - Rebalance performance testing between servers:
> - sh1 (tag: docker_sh1_perf) used for benches:
> nosqlbench_hash, nosqlbench_tree
> - sh2 (tag: docker_sh2_perf) used for benches:
> ycsb_hash, ycsb_tree, cbench
> - sh3 (tag: docker_sh3_perf) used for benches:
> sysbench, tpcc
> - sh9 (tag: docker_perf_ssd) used for benches:
> linkbench_ssd
> - Changing gitlab-ci tag for performance docker images
> from 'perf' to 'deploy'.
>
> Closes #4868
> ---
>
> Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-4868-parallel-perf
> Issue: https://github.com/tarantool/tarantool/issues/4868
I've checked your patch into 1.10, 2.3, 2.4 and master.
--
Regards, Kirill Yukhin
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-28 7:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-16 6:56 [Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing Oleg Piskunov
2020-05-17 12:34 ` Alexander V. Tikhonov
2020-05-18 9:14 ` Sergey Bronnikov
2020-05-28 7:40 ` Kirill Yukhin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox