-
Notifications
You must be signed in to change notification settings - Fork 0
149 lines (145 loc) · 5.34 KB
/
k6-All-multiarch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: K6 All-In-One (MULTI-ARCH)
on:
workflow_dispatch:
inputs:
qryn_tag:
description: 'Build/Tag for qryn (latest)'
required: false
clickhouse_tag:
description: 'BuildTag for ClickHouse (latest)'
required: false
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, ARM64]
name: Run k6 on qryn:latest
runs-on: ${{ matrix.os }}
env:
QRYN_VERSION: "clickhouse/clickhouse-server:${{ github.event.inputs.qryn_tag || 'latest' }}"
CLICKHOUSE_VERSION: "qxip/qryn:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
services:
clickhouse:
image: "clickhouse/clickhouse-server:${{ github.event.inputs.clickhouse_tag || 'latest' }}"
ports:
- 8123:8123
qryn:
image: "qxip/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}"
ports:
- 3100:3100
env:
CLICKHOUSE_SERVER: clickhouse
steps:
- name: Checkout
uses: actions/[email protected]
with:
repository: metrico/qryn-bench
path: .
- uses: actions/[email protected]
with:
go-version: '1.20'
cache: false
- name: Download k6 x86
if: ${{ matrix.os != 'ARM64' }}
run: |
wget https://github.com/metrico/qryn-bench/releases/download/latest/k6 -O k6
chmod +x k6
- name: Download k6 ARM64
if: ${{ matrix.os != 'ubuntu-latest' }}
run: |
wget https://github.com/metrico/qryn-bench/releases/download/latest/k6-arm64 -O k6
chmod +x k6
- name: Download k6 for Tracing x86
if: ${{ matrix.os != 'ARM64' }}
run: |
wget https://github.com/metrico/qryn-bench/releases/download/latest/k6-tracing -O k6-tracing
chmod +x k6-tracing
- name: Download k6 for Tracing ARM64
if: ${{ matrix.os != 'ubuntu-latest' }}
run: |
wget https://github.com/metrico/qryn-bench/releases/download/latest/k6-tracing-arm64 -O k6-tracing
chmod +x k6-tracing
- name: Collect Workflow Telemetry
uses: runforesight/[email protected]
- name: Wait for Loki API
uses: mydea/action-wait-for-api@main
with:
url: "http://localhost:3100/loki/api/v1/label"
expected-response-field: "status"
expected-response-field-value: "success"
timeout: 30
- name: Run k6 loki test
run: ./k6 run --out csv=results.csv loki/qryn-loki-loadtest.js
env:
K6_VUS: 1
K6_ITERACTIONS: 150
- run: mv summary.txt loki_summary.txt
if: always()
- name: Wait for Prom API
uses: mydea/action-wait-for-api@main
with:
url: "http://localhost:3100/api/v1/query"
expected-response-field: "status"
expected-response-field-value: "success"
timeout: 30
- name: Run k6 prometheus test
run: ./k6 run --out csv=results.csv prometheus/qryn-loadtest.js
env:
K6_WRITE_HOSTNAME: "localhost:3100"
K6_READ_HOSTNAME: "localhost:3100"
K6_WRITE_REQUEST_RATE: 1
K6_WRITE_SERIES_PER_REQUEST: 15
K6_READ_REQUEST_RATE: 1
K6_DURATION_MIN: 3
K6_SCRAPE_INTERVAL_SECONDS: 15
RAMP_UP_MIN: 1
- run: mv summary.txt prom_summary.txt
if: always()
- name: Wait for Tempo API
uses: mydea/action-wait-for-api@main
with:
url: "http://localhost:3100/api/search/tags"
- name: Run k6 tempo test
run: ./k6-tracing run --out csv=results.csv tempo/qryn-tempo-template.js
env:
K6_TEMPO_ENDPOINT: "http://localhost:3100"
K6_VUS: 1
K6_DURATION_MINUTES: 2
K6_ITERATIONS: 60
- run: mv summary.txt tempo_summary.txt
if: always()
- name: Strip Text report
if: always()
run: |
sed -i 's/[^[:print:]]/*/' *_summary.txt
sed -i 's/[\d128-\d255]//g' *_summary.txt
- uses: actions/[email protected]
if: always()
continue-on-error: true
with:
name: results-${{ matrix.os }}
path: |
loki_summary.txt
prom_summary.txt
tempo_summary.txt
- name: Summary Report
if: always()
run: |
echo "### qryn image" >> $GITHUB_STEP_SUMMARY
echo "qxip/qryn:${{ github.event.inputs.qryn_tag || 'latest' }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### cowsdb image" >> $GITHUB_STEP_SUMMARY
echo "${{ github.event.inputs.clickhouse_image || 'clickhouse/clickhouse-server' }}:${{ github.event.inputs.clickhouse_tag || 'latest' }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Loki Test" >> $GITHUB_STEP_SUMMARY
cat loki_summary.txt >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Prometheus Test" >> $GITHUB_STEP_SUMMARY
cat prom_summary.txt >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Tempo Test" >> $GITHUB_STEP_SUMMARY
cat tempo_summary.txt >> $GITHUB_STEP_SUMMARY
- name: Pull Docker logs
run: |
docker logs "${{ job.services.clickhouse.id }}"
docker logs "${{ job.services.qryn.id }}"