We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdde60 commit b188fa6Copy full SHA for b188fa6
1 file changed
src/silo/query_engine/actions/action.cpp
@@ -514,7 +514,8 @@ arrow::Result<arrow::acero::ExecNode*> Action::addZstdDecompressNode(
514
SILO_ASSERT_GT(sum_of_reference_genome_sizes, 0u);
515
516
// We aim for 64 MB batch size to give the plan time to apply backpressure
517
- size_t maximum_batch_size = std::max(common::S_64_MB / sum_of_reference_genome_sizes, 1UL);
+ auto maximum_batch_size =
518
+ static_cast<int64_t>(std::max(common::S_64_MB / sum_of_reference_genome_sizes, 1UL));
519
520
// Delay delivery of large number of batches to about 100 MB per second
521
// A batch targets 64 MB, therefore we allow 1.5 batches per second.
0 commit comments