forked from open-telemetry/otel-arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
536 lines (465 loc) · 23 KB
/
Copy pathpipeline-perf-test-nightly.yml
File metadata and controls
536 lines (465 loc) · 23 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
name: Pipeline Performance Tests - Nightly
permissions:
contents: read
on:
schedule:
- cron: "0 16 * * *" # runs every day at 8 AM PT (4 PM UTC)
- cron: "0 0 * * *" # runs every day at 4 PM PT (midnight UTC)
workflow_dispatch:
jobs:
pipeline-perf-test:
runs-on: oracle-bare-metal-64cpu-1024gb-x86-64-ubuntu-24
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Set up Python (non-OL8)
if: ${{ steps.detect_os.outputs.id != 'ol' }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Build dataflow_engine
run: |
git submodule init
git submodule update
cd rust/otap-dataflow
docker buildx build --load --build-context otel-arrow=../../ -f Dockerfile -t df_engine .
cd ../..
- name: Build otelarrowcol
run: |
docker build . -t otelarrowcol
- name: Install dependencies
run: |
python -m pip install --user --require-hashes -r tools/pipeline_perf_test/orchestrator/requirements.lock.txt
python -m pip install --user --require-hashes -r tools/pipeline_perf_test/load_generator/requirements.lock.txt
- name: Run syslog performance test log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/syslog-docker.yaml
- name: Run syslog TCP performance test log suite
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/syslog-tcp-docker.yaml
- name: Run standard load batch size test suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/100klrps-batch-sizes-docker.yaml
- name: Run backpressure performance test log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/backpressure-docker.yaml
- name: Run filter performance test log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/filter-docker.yaml
- name: Run filter performance test otelcol log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/otelcol-docker.yaml
- name: Run syslog TCP performance test otelcol log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/syslog-tcp-otelcol-docker.yaml
- name: Run batch processor performance test log suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/nightly/batch-processor-docker.yaml
- name: Run idle state performance tests
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
./scripts/run-idle-state-tests.sh --output-json results/idle-memory-scaling.json \
| tee idle-memory-scaling-report.txt
# Add memory scaling report to job summary
echo "### Idle State Memory Scaling Analysis" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
# Extract just the analysis section from the report
sed -n '/^=.*MEMORY SCALING/,/^=\{10,\}$/p' idle-memory-scaling-report.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Run saturation/scaling performance test suite
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
./scripts/run-saturation-tests.sh --output-json results/scaling-efficiency.json \
| tee saturation-scaling-report.txt
# Add scaling report to job summary
echo "### Saturation/Scaling Test Analysis" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
# Extract just the analysis section from the report
sed -n '/^=.*SCALING ANALYSIS/,/^=\{10,\}$/p' saturation-scaling-report.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Run single-core saturation max throughput test (OTLP)
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/continuous/saturation-max-throughput.yaml
- name: Run single-core saturation max throughput test (OTAP)
if: ${{ !cancelled() }}
run: |
cd tools/pipeline_perf_test
python orchestrator/run_orchestrator.py --config test_suites/integration/continuous/saturation-max-throughput-otap.yaml
- name: Upload syslog results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: syslog-nightly-results
path: tools/pipeline_perf_test/results/nightly_syslog/gh-actions-benchmark/*.json
- name: Upload syslog TCP results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: syslog-tcp-nightly-results
path: tools/pipeline_perf_test/results/nightly_syslog_tcp/gh-actions-benchmark/*.json
- name: Upload standard load batch size results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: standardload-batch-size-nightly-results
path: tools/pipeline_perf_test/results/nightly_100klrps_batch_sizes/gh-actions-benchmark/*.json
- name: Upload backpressure results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: backpressure-nightly-results
path: tools/pipeline_perf_test/results/nightly_backpressure/gh-actions-benchmark/*.json
- name: Upload filter results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: filter-nightly-results
path: tools/pipeline_perf_test/results/nightly_filter/gh-actions-benchmark/*.json
- name: Upload batch processor results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: batch-processor-nightly-results
path: tools/pipeline_perf_test/results/nightly_batch_processor/gh-actions-benchmark/*.json
- name: Upload otelcol filter results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: filter-otelcol-results
path: tools/pipeline_perf_test/results/otelcol_filter/gh-actions-benchmark/*.json
- name: Upload otelcol syslog TCP results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: syslog-tcp-otelcol-results
path: tools/pipeline_perf_test/results/nightly_syslog_tcp_otelcol/gh-actions-benchmark/*.json
- name: Upload saturation results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: saturation-nightly-results
path: tools/pipeline_perf_test/results/continuous_saturation*/gh-actions-benchmark/*.json
- name: Upload idle state results for processing
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: idle-state-nightly-results
path: tools/pipeline_perf_test/results/idle_state*/gh-actions-benchmark/*.json
- name: Upload idle state memory scaling metrics
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: idle-memory-scaling-nightly-results
path: tools/pipeline_perf_test/results/idle-memory-scaling.json
- name: Upload scaling efficiency metrics
if: ${{ !cancelled() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: scaling-efficiency-nightly-results
path: tools/pipeline_perf_test/results/scaling-efficiency.json
- name: Add benchmark link to job summary
if: ${{ !cancelled() }}
run: |
echo "### Benchmark Results" >> $GITHUB_STEP_SUMMARY
echo "[View the benchmark results here](https://open-telemetry.github.io/otel-arrow/benchmarks/nightly/)" >> $GITHUB_STEP_SUMMARY
update-benchmarks:
runs-on: ubuntu-24.04
needs: [pipeline-perf-test]
if: ${{ !cancelled() }}
permissions:
# deployments permission to deploy GitHub pages website
deployments: write
# contents permission to update benchmark contents in gh-pages branch
contents: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Download syslog artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: syslog-nightly-results*
merge-multiple: true
path: syslog_results
- name: Download syslog TCP artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: syslog-tcp-nightly-results*
merge-multiple: true
path: syslog_tcp_results
- name: Download standard load batch size artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: standardload-batch-size-nightly-results*
merge-multiple: true
path: standardload_batch_size_results
- name: Download backpressure artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: backpressure-nightly-results*
merge-multiple: true
path: backpressure_results
- name: Download filter artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: filter-nightly-results*
merge-multiple: true
path: filter_results
- name: Download batch processor artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: batch-processor-nightly-results*
merge-multiple: true
path: batch_processor_results
- name: Download otelcol filter artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: filter-otelcol-results*
merge-multiple: true
path: filter_otelcol_results
- name: Download otelcol syslog TCP artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: syslog-tcp-otelcol-results*
merge-multiple: true
path: syslog_tcp_otelcol_results
- name: Download saturation artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: saturation-nightly-results*
merge-multiple: true
path: saturation_results
- name: Download idle state artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: idle-state-nightly-results*
merge-multiple: true
path: idle_state_results
- name: Download idle memory scaling artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: idle-memory-scaling-nightly-results*
merge-multiple: true
path: idle_memory_scaling_results
- name: Download scaling efficiency metrics
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: scaling-efficiency-nightly-results*
merge-multiple: true
path: scaling_efficiency_results
- name: Consolidate syslog benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh syslog_results syslog_output.json
- name: Consolidate syslog TCP benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh syslog_tcp_results syslog_tcp_output.json
- name: Consolidate standard load batch size benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh standardload_batch_size_results standardload_batch_size_output.json
- name: Consolidate backpressure benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh backpressure_results backpressure_output.json
- name: Consolidate filter benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh filter_results filter_output.json
- name: Consolidate batch processor benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh batch_processor_results batch_processor_output.json
- name: Consolidate otelcol filter benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh filter_otelcol_results filter_otelcol_output.json
- name: Consolidate otelcol syslog TCP benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh syslog_tcp_otelcol_results syslog_tcp_otelcol_output.json
- name: Consolidate saturation benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh saturation_results saturation_output.json
- name: Consolidate idle state benchmark data
if: ${{ !cancelled() }}
run: |
bash ./.github/workflows/scripts/consolidate-benchmarks.sh idle_state_results idle_state_output.json
- name: Update benchmark data
if: ${{ !cancelled() && hashFiles('syslog_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: syslog_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/syslog"
auto-push: true
save-data-file: true
- name: Update syslog TCP benchmark data
if: ${{ !cancelled() && hashFiles('syslog_tcp_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: syslog_tcp_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/syslog-tcp"
auto-push: true
save-data-file: true
- name: Update standard load batch size benchmark data
if: ${{ !cancelled() && hashFiles('standardload_batch_size_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: standardload_batch_size_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/standardload-batch-size"
auto-push: true
save-data-file: true
- name: Update benchmark data and deploy to GitHub Pages
if: ${{ !cancelled() && hashFiles('backpressure_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: backpressure_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/backpressure"
auto-push: true
save-data-file: true
- name: Update filter benchmark data
if: ${{ !cancelled() && hashFiles('filter_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: filter_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/filter"
auto-push: true
save-data-file: true
- name: Update batch processor benchmark data
if: ${{ !cancelled() && hashFiles('batch_processor_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: batch_processor_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/batch-processor"
auto-push: true
save-data-file: true
- name: Update filter otelcol benchmark data
if: ${{ !cancelled() && hashFiles('filter_otelcol_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: filter_otelcol_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/filter"
auto-push: true
save-data-file: true
- name: Update syslog TCP otelcol benchmark data
if: ${{ !cancelled() && hashFiles('syslog_tcp_otelcol_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: syslog_tcp_otelcol_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/syslog-tcp-otelcol"
auto-push: true
save-data-file: true
- name: Update saturation benchmark data
if: ${{ !cancelled() && hashFiles('saturation_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: saturation_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/saturation"
auto-push: true
save-data-file: true
- name: Update idle state benchmark data
if: ${{ !cancelled() && hashFiles('idle_state_output.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: idle_state_output.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/idle-state"
auto-push: true
save-data-file: true
- name: Update idle state memory scaling data
if: ${{ !cancelled() && hashFiles('idle_memory_scaling_results/idle-memory-scaling.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customSmallerIsBetter"
output-file-path: idle_memory_scaling_results/idle-memory-scaling.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/idle-memory-scaling"
auto-push: true
save-data-file: true
- name: Update scaling efficiency data
if: ${{ !cancelled() && hashFiles('scaling_efficiency_results/scaling-efficiency.json') != '' }}
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
with:
tool: "customBiggerIsBetter"
output-file-path: scaling_efficiency_results/scaling-efficiency.json
gh-pages-branch: benchmarks
max-items-in-chart: 100
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "docs/benchmarks/nightly/scaling-efficiency"
auto-push: true
save-data-file: true
- name: Add benchmark link to job summary
run: |
echo "### Benchmark Results" >> $GITHUB_STEP_SUMMARY
echo "[View the benchmark results here](https://open-telemetry.github.io/otel-arrow/benchmarks/nightly/)" >> $GITHUB_STEP_SUMMARY