chore: logs to debug hang

This commit is contained in:
evenyag
2024-11-07 20:36:12 +08:00
parent fce8c968da
commit 8536a1ec6e
4 changed files with 38 additions and 6 deletions

View File

@@ -591,6 +591,12 @@ impl PartSortStream {
// input stream end, mark and continue
Poll::Ready(None) => {
self.input_complete = true;
common_telemetry::info!(
"[PartSortStream] Region {} Partition {} part index {} input complete",
self.region_id,
self.partition,
self.cur_part_idx,
);
continue;
}
Poll::Ready(Some(Err(e))) => return Poll::Ready(Some(Err(e))),