Skip to content

Commit

Permalink
Rewrite and lower size
Browse files Browse the repository at this point in the history
  • Loading branch information
orf committed Aug 6, 2023
1 parent 099a48f commit a547002
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,14 @@ jobs:

- name: Rewrite
run: |
parquet-rewrite --compression=zstd \
--input=${{ github.workspace }}/merged.parquet \
--output=${{ github.workspace }}/output.parquet \
parquet-rewrite \
--compression=zstd \
--writer-version=2.0 \
--statistics-enabled=page \
--bloom-filter-enabled=true
--bloom-filter-enabled=true \
--bloom-filter-fpp 0.1 \
--input=${{ github.workspace }}/merged.parquet \
--output=${{ github.workspace }}/output.parquet
- name: Output size
run: du -hs ${{ github.workspace }}/output.parquet
Expand Down

0 comments on commit a547002

Please sign in to comment.