ahshahid commented on issue #6424: URL: https://github.com/apache/iceberg/issues/6424#issuecomment-1352519479
@RussellSpitzer . actually part of the issue what I was seeing was related to scannedFraction approximately equal to 1, but record count of 1., which was resulting in net rows seen = 0. due to double casted to long. And that was happening because splitOffset value was not being subtracted from fileSize. as a result scannedFraction was .98... * 1 , which resulted in 0 rows instead of 1. By putting splitOffset , the ratio is now exactly equal to 1. Thanks for the information.. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
