Fokko commented on code in PR #2997:
URL: https://github.com/apache/iceberg-python/pull/2997#discussion_r2835035873
##########
pyiceberg/table/__init__.py:
##########
@@ -2284,3 +2235,21 @@ def _parquet_files_to_data_files(table_metadata:
TableMetadata, file_paths: list
futures = [executor.submit(parquet_file_to_data_file, io, table_metadata,
file_path) for file_path in file_paths]
return [f.result() for f in futures if f.result()]
+
+
+def _get_data_files_from_snapshot(
Review Comment:
Can we use metadata tables for this? I'd like to avoid functions like these
since they do not parallelize
--
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]