Nightly Benchmarks #201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nightly Benchmarks | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" # daily | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write # enables AWS-GitHub OIDC | |
| actions: read | |
| contents: write | |
| deployments: write | |
| jobs: | |
| sql: | |
| uses: ./.github/workflows/sql-benchmarks.yml | |
| secrets: inherit | |
| with: | |
| mode: "develop" | |
| machine_type: ${{ matrix.machine_type.instance_name }} | |
| # datafusion:vortex uses a lot of memory | |
| benchmark_matrix: | | |
| [ | |
| { | |
| "id": "clickbench-nvme", | |
| "subcommand": "clickbench", | |
| "name": "Clickbench on NVME", | |
| "targets": "datafusion:parquet,datafusion:vortex,datafusion:vortex-compact,datafusion:lance,duckdb:parquet,duckdb:vortex,duckdb:vortex-compact,duckdb:duckdb", | |
| "build_args": "--features lance" | |
| }, | |
| { | |
| "id": "tpch-nvme", | |
| "subcommand": "tpch", | |
| "name": "TPC-H on NVME", | |
| "targets": "datafusion:parquet,datafusion:vortex,datafusion:lance,duckdb:parquet,duckdb:vortex,duckdb:duckdb", | |
| "scale_factor": "--scale-factor 10.0", | |
| "build_args": "--features lance" | |
| }, | |
| { | |
| "id": "tpch-s3", | |
| "subcommand": "tpch", | |
| "name": "TPC-H on S3", | |
| "local_dir": "bench-vortex/data/tpch/10.0", | |
| "remote_storage": "s3://vortex-bench-dev-eu/${{github.ref_name}}/${{github.run_id}}/tpch/10.0/", | |
| "targets": "datafusion:parquet,datafusion:vortex,datafusion:lance,duckdb:parquet,duckdb:vortex", | |
| "scale_factor": "--scale-factor 10.0", | |
| "build_args": "--features lance" | |
| }, | |
| { | |
| "id": "tpch-nvme", | |
| "subcommand": "tpch", | |
| "name": "TPC-H on NVME", | |
| "targets": "datafusion:parquet,duckdb:parquet,duckdb:vortex", | |
| "scale_factor": "--scale-factor 100" | |
| }, | |
| { | |
| "id": "tpch-s3", | |
| "subcommand": "tpch", | |
| "name": "TPC-H on S3", | |
| "local_dir": "bench-vortex/data/tpch/100.0", | |
| "remote_storage": "s3://vortex-bench-dev-eu/${{github.ref_name}}/${{github.run_id}}/tpch/100.0/", | |
| "targets": "datafusion:parquet,duckdb:parquet,duckdb:vortex", | |
| "scale_factor": "--scale-factor 100.0" | |
| }, | |
| ] | |
| strategy: | |
| # A single run not should kill the others | |
| fail-fast: false | |
| matrix: | |
| machine_type: | |
| - id: x86 | |
| instance_name: c6id.8xlarge | |
| # TODO(joe): support other arch | |
| # - id: arm64 | |
| # instance_name: c6gd.8xlarge |