Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-1.8] [python] Fix an ingestion corner case with empty chunks #2284

Merged
merged 1 commit into from Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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

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

Expand Down