Switch to zstd compression for parquet writers

This commit is contained in:
2026-02-18 07:55:28 +01:00
parent 589149790f
commit 757be60b22
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ func writeNodeStateParquetBytes(rows []ParquetNodeStateRow) ([]byte, error) {
var buf bytes.Buffer
writer := pq.NewGenericWriter[ParquetNodeStateRow](&buf,
pq.Compression(&pq.Snappy),
pq.Compression(&pq.Zstd),
)
if _, err := writer.Write(rows); err != nil {