rdblue opened a new pull request, #6460: URL: https://github.com/apache/iceberg/pull/6460
We noticed throttling on `getLength` calls to S3 in the all manifests table. This avoids those unnecessary calls by no longer creating a fake `DataFile` or `FileScanTask`. Previously, the manifest list scan task wrapped a file scan task so that it could be read as a normal data file. However, since v2 the task has been converted to a `DataTask` to fill in inherited sequence numbers correctly. As a result, the wrapped `FileScanTask` is no longer needed. Not creating the wrapped `FileScanTask` make it possible to avoid creating a `DataFile` (unless one is for some reason requested by calling `file()` on the task). -- 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