We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e440f commit 0149510Copy full SHA for 0149510
1 file changed
crates/paimon/src/arrow/format/parquet.rs
@@ -785,11 +785,11 @@ struct ArrowFileReader {
785
r: Box<dyn FileRead>,
786
}
787
788
-/// Default coalesce threshold: 1 MiB.
+/// coalesce threshold: 1 MiB.
789
const RANGE_COALESCE_BYTES: u64 = 1024 * 1024;
790
-/// Default concurrent range fetches.
+/// concurrent range fetches.
791
const RANGE_FETCH_CONCURRENCY: usize = 10;
792
-/// Default metadata prefetch hint: 512 KiB.
+/// metadata prefetch hint: 512 KiB.
793
const METADATA_SIZE_HINT: usize = 512 * 1024;
794
/// Minimum range size for splitting: 4 MiB.
795
/// Ranges smaller than this will not be split further to avoid
0 commit comments