a-agmon commented on PR #284: URL: https://github.com/apache/iceberg-rust/pull/284#issuecomment-2005960689
Just to add a motivation the purpose is to allow this kind of API access: ```rust let mut stream = table_scan.plan_files().await?; while let Some(file) = stream.next().await { let data_file = file?.data_file(); println!("---------------------------------"); println!("File Path: {:?}", data_file.file_path()); println!("File Size: {:?}", data_file.file_size_in_bytes()); } ``` My team is using these APIs to creat a layer of monitoring on top of Iceberg table that can help track issues and identify problems -- 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