Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/pr-bench-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ jobs:
needs: build
if: ${{ !cancelled() && needs.build.result == 'success' }}
timeout-minutes: 120
env:
# BENCHMARK EXPERIMENT -- revert before merging.
# Each benchmark writes its own Vortex files and reads them back in this job.
VORTEX_DIRECT_IO: "1"
VORTEX_SEGMENT_PADDING: "always"
runs-on: >-
${{ github.repository == 'vortex-data/vortex'
&& format('runs-on={0}/runner=bench-dedicated/family=c8gd.metal-24xl/image=ubuntu24-full-arm64-pre-v2/tag={1}{2}', github.run_id, inputs.benchmark_id, github.event.pull_request.head.repo.fork == false && '/extras=s3-cache' || '')
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sql-bench-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ jobs:
FLAT_LAYOUT_INLINE_ARRAY_NODE: "1"
# Makes python output nicer
COLUMNS: 120
# BENCHMARK EXPERIMENT -- revert before merging.
# `prepare-data` and the query runs share this job, so these cover both writing the
# Vortex files and reading them back.
VORTEX_DIRECT_IO: "1"
VORTEX_SEGMENT_PADDING: "always"
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions vortex-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ version = { workspace = true }
name = "data-gen"
test = false

[[bin]]
name = "direct-io"
test = false

[lints]
workspace = true

Expand Down
Loading
Loading