Skip to content

Commit

Permalink
[python] Fix an ingestion corner-case with empty chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Mar 15, 2024
1 parent a016b9d commit dc8809c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apis/python/src/tiledbsoma/io/ingest.py
Expand Up @@ -2192,6 +2192,10 @@ def _find_sparse_chunk_size_backed(
if start_index + chunk_size >= extent:
return chunk_size

# The entire chunk is unoccupied sparse; the caller can skip over it
if chunk_nnz == 0:
return chunk_size

Check warning on line 2197 in apis/python/src/tiledbsoma/io/ingest.py

View check run for this annotation

Codecov / codecov/patch

apis/python/src/tiledbsoma/io/ingest.py#L2196-L2197

Added lines #L2196 - L2197 were not covered by tests

# Compare initial estimate chunk nnz against the goal
ratio = chunk_nnz / goal_chunk_nnz

Expand Down

0 comments on commit dc8809c

Please sign in to comment.