Skip to content

Commit

Permalink
Remove chunk_size limit on WriteTable call, and unpin polars (#5495)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Aug 2, 2023
1 parent edda3bb commit 288921a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/perf-system/submitter/submit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void store_parquet_results(ArgumentParser args, ParquetData data_handler)
PARQUET_ASSIGN_OR_THROW(
outfile, arrow::io::FileOutputStream::Open(args.send_filepath));
PARQUET_THROW_NOT_OK(parquet::arrow::WriteTable(
*table, arrow::default_memory_pool(), outfile, 1));
*table, arrow::default_memory_pool(), outfile));
}

// Write Response Parquet
Expand Down Expand Up @@ -236,7 +236,7 @@ void store_parquet_results(ArgumentParser args, ParquetData data_handler)
PARQUET_ASSIGN_OR_THROW(
outfile, arrow::io::FileOutputStream::Open(args.response_filepath));
PARQUET_THROW_NOT_OK(parquet::arrow::WriteTable(
*table, arrow::default_memory_pool(), outfile, 1));
*table, arrow::default_memory_pool(), outfile));
}

LOG_INFO_FMT("Finished storing results");
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ pycose
# Piccolo dependencies
fastparquet==2023.*
prettytable==3.*
polars==0.18.7
polars

0 comments on commit 288921a

Please sign in to comment.