Skip to content

Commit a23df0d

Browse files
committed
Don't be too aggressive with chunksizes in sidecars
1 parent 239ecf9 commit a23df0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/blosc2/indexing.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3251,10 +3251,10 @@ def _index_chunk_multiplier_for_optlevel(optlevel: int) -> int:
32513251
if optlevel <= 3:
32523252
return 2
32533253
if optlevel <= 6:
3254-
return 4
3254+
return 3
32553255
if optlevel == 9:
3256-
return 16
3257-
return 8
3256+
return 5
3257+
return 4
32583258

32593259

32603260
def _opsi_max_cycles_for_optlevel(optlevel: int) -> int:

0 commit comments

Comments
 (0)