Fix racecheck reported in parquet decode_delta_length_byte_array_kernel - #24034
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
Included review availability: Your plan provides up to 12 included reviews per hour; 11 remain after this review. 📝 SummarySummary by CodeRabbit
WalkthroughThe DELTA_LENGTH_BYTE_ARRAY decoder moves block synchronization until after batch scheduling. This ensures all threads finish reading ChangesParquet delta decoder
Priority: ⬇️ Low — Defer this narrow parquet decoder race fix because it addresses one synchronization defect in a specific null-and-skip test path. Estimated code review effort: 1 (Trivial) | ~5 minutes Merge Risk: ⚪ Minimal · up to The decoder now synchronizes after computing its batch schedule, preventing skip handling from reinitializing state before those reads complete. No remaining merge-blocking risk is identified. Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches 💡 1🛠️ Fix failing CI checks 💡
🧪 Generate unit tests (beta)
Comment |
|
is this a recent regression? |
It was introduced in #23314 (August 10) but maybe hiding behind some other racechecks that were fixed last week. |
|
/merge |
Description
Fixes racecheck found in the weekly compute-sanitizer runs:
https://github.com/NVIDIA/cudf/actions/runs/33959757523/job/101289786931#step:5:3226
Partial log:
Moves the sync barrier after
batch_size/passes_per_batchare computed and before theif (is_skip_resume)block.Checklist