xxchan commented on code in PR #982: URL: https://github.com/apache/iceberg-rust/pull/982#discussion_r2094762417
########## crates/iceberg/src/delete_file_index.rs: ########## @@ -199,18 +218,22 @@ pub(crate) struct DeletesForDataFile<'a> { state: Arc<RwLock<DeleteFileIndexState>>, data_file: &'a DataFile, seq_num: Option<i64>, + waker_set: Arc<WakerSet>, } impl Future for DeletesForDataFile<'_> { type Output = Result<Vec<FileScanTaskDeleteFile>>; - fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> { + fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { match self.state.try_read() { Ok(guard) => match guard.deref() { DeleteFileIndexState::Populated(idx) => Poll::Ready(Ok( idx.get_deletes_for_data_file(self.data_file, self.seq_num) )), - _ => Poll::Pending, + _ => { + self.waker_set.insert(cx); + Poll::Pending + } }, Err(err) => Poll::Ready(Err(Error::new(ErrorKind::Unexpected, err.to_string()))), } Review Comment: As mentioned in #1323: - manual `Future` implementation is error-prone. I think `async fn` should be preferred. - Another bug here: the `try_read` may return a `TryLockError::WouldBlock`, which should not be an err. It's like a `Pending`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org