Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion icechunk/src/format/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ fn mk_chunk_ref<'bldr>(

static ROOT_OPTIONS: VerifierOptions = VerifierOptions {
max_depth: 64,
max_tables: 50_000_000,
max_tables: 500_000_000,
max_apparent_size: 1 << 31, // taken from the default
ignore_missing_null_terminator: true,
};
Expand Down
2 changes: 1 addition & 1 deletion icechunk/src/format/repo_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub enum UpdateType {

static ROOT_OPTIONS: VerifierOptions = VerifierOptions {
max_depth: 10,
max_tables: 500_000,
max_tables: 5_000_000,
max_apparent_size: 1 << 31, // taken from the default
ignore_missing_null_terminator: true,
};
Expand Down
2 changes: 1 addition & 1 deletion icechunk/src/format/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ impl SnapshotInfo {

static ROOT_OPTIONS: VerifierOptions = VerifierOptions {
max_depth: 64,
max_tables: 500_000,
max_tables: 50_000_000,
max_apparent_size: 1 << 31, // taken from the default
ignore_missing_null_terminator: true,
};
Expand Down