Closed westonpace closed 3 days ago
Attention: Patch coverage is 81.81818%
with 2 lines
in your changes missing coverage. Please review.
Project coverage is 77.88%. Comparing base (
f257489
) to head (7cdf3b8
). Report is 2 commits behind head on main.
Files with missing lines | Patch % | Lines |
---|---|---|
rust/lance-encoding-datafusion/src/zone.rs | 0.00% | 2 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
related to #2725
This ensures that the setup routines happen inside of the benchmark function. Otherwise datagen will be run for all benchmarks during the collection phase and the system will run out of RAM.
This also changes the routines to use
FileMetadataCache::no_cache
as it turns outmoka
doesn't immediately free its cache space on drop and, when used in a tight benchmark loop, this leads to running out of memory.