Skip to content

Commit

Permalink
Change how inputs are seded in the run-tpch workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Raunak Bhagat committed Nov 19, 2024
1 parent 3bef00c commit a1fc02e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/assets/ray.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ setup_commands:
# Download benchmarking fixtures
- |
aws s3 sync \
s3://eventual-dev-benchmarking-fixtures/uncompressed/tpch-dbgen/2_0/2/parquet/ \
/tmp/data/2_0/2/parquet/ \
s3://eventual-dev-benchmarking-fixtures/uncompressed/tpch-dbgen/<<SCALE_FACTOR>>/<<PARTITION_SIZE>>/parquet/ \
/tmp/data/<<SCALE_FACTOR>>/<<PARTITION_SIZE>>/parquet/ \
--quiet
# - |
# aws s3 sync \
# s3://eventual-dev-benchmarking-fixtures/uncompressed/tpch-dbgen/<<SCALE_FACTOR>>/<<PARTITION_SIZE>>/parquet/ \
# /tmp/data/<<SCALE_FACTOR>>/<<PARTITION_SIZE>>/parquet/ \
# --quiet
2 changes: 1 addition & 1 deletion .github/workflows/run-tpch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# Dynamically update ray config file
sed -i 's|<<SHA>>|${{ github.sha }}|g' .github/assets/ray.yaml
sed -i 's|<<WHEEL>>|${{ inputs.wheel }}|g' .github/assets/ray.yaml
sed -i 's|<<SCALE_FACTOR>>|$scale_factor_str|g' .github/assets/ray.yaml
sed -i "s|<<SCALE_FACTOR>>|$scale_factor_str|g" .github/assets/ray.yaml
sed -i 's|<<PARTITION_SIZE>>|${{ inputs.partition_size }}|g' .github/assets/ray.yaml
cat .github/assets/ray.yaml
Expand Down

0 comments on commit a1fc02e

Please sign in to comment.