[Feature Request] Add pyiceberg.catalog.hadoop.HadoopCatalog (filesystem-only catalog)
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức phù hợp với người mới
- 42/100
- Loại issue
- Tính năng
- Độ rõ ràng
- Khá rõ ràng
- Mức độ hoạt động
- Sôi nổi
- Lĩnh vực
- data-engineering, databases
Hướng nghiên cứu
Bắt đầu bằng cách đọc các triển khai catalog hiện có và MetastoreCatalog, sau đó kiểm tra PyArrowFileIO._initialize_fs cùng cách sử dụng downstream của daft/catalog/__gravitino/__catalog.py được nêu trong issue. So sánh hành vi được yêu cầu với các tham chiếu HadoopCatalog và HadoopTables của Java Iceberg. Được xem là hoàn tất khi các thao tác namespace và bảng chỉ sử dụng filesystem, việc phân giải metadata tương thích với Java, và có một đường dẫn được ghi chép hoặc công khai cho các scheme filesystem tùy chỉnh.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
Is your feature request related to a problem? Please describe.
Java Iceberg ships a filesystem-only HadoopCatalog / HadoopTables, where table metadata lives under <warehouse>/<db>.db/<table>/metadata/ with no external metastore. PyIceberg currently has no equivalent — the available catalog types are rest / hive / glue / dynamodb / sql / in-memory / bigquery.
This gap matters in two ways:
-
Interop with Java-side HadoopCatalog tables. Tables created by Java
HadoopCatalog(common in lightweight deployments without a metastore) cannot be opened through any supported PyIceberg catalog. Users must fall back toStaticTable.from_metadataand resolve the latestmetadata.jsonthemselves, which loses catalog semantics (no namespace listing, no create/commit). -
Downstream projects already assume the module exists. Daft's Gravitino integration imports
from pyiceberg.catalog.hadoop import HadoopCatalogand callsHadoopCatalog("gravitino_reader", props).load_table(table_dir)to open a table from a storage location (daft/catalog/__gravitino/_catalog.py). Against PyIceberg 0.11.x this raisesTypeError: HadoopCatalog.__init__() takes 2 positional arguments but 3 were given, and against versions without the module it fails at import time.
Describe the solution you'd like
A pyiceberg.catalog.hadoop.HadoopCatalog (subclassing MetastoreCatalog) implementing Java HadoopCatalog semantics:
warehouseproperty as the root location- table dir =
<warehouse>/<namespace>/<table> - metadata at
<table_dir>/metadata/v{n}.metadata.jsonplus aversion-hint.textholding the current version - latest-version resolution: read
version-hint.text, fall back to scanningmetadata/for the maxv{n}(matching Java behavior) - namespace/table create/list/commit driven purely by the warehouse filesystem (no metastore calls)
Additional context / pitfalls observed while prototyping
Happy to contribute a PR if this is in scope. A few notes from an internal prototype:
-
Metadata file naming. Java HadoopCatalog uses
v{n}.metadata.json+version-hint.text, but tables created by JDBC/REST catalogs use00000-<uuid>.metadata.jsonwith no version-hint. To open those as well, the scan fallback should accept both patterns (v(\d+)\.metadata\.jsonand\d{5}-.*\.metadata\.json), or at least document the limitation. -
Filesystem abstraction.
__init__should derive the filesystem from the catalog's FileIO (PyArrowFileIO) instead of hardcodingpyarrow.fs.HadoopFileSystem.from_uri(warehouse). The JVM-backedHadoopFileSystemonly supportshdfs://and fails for object-store schemes (s3://, and custom schemes), so routing through FileIO keeps it scheme-agnostic. -
Atomicity.
create_table/commit_tableuse create-if-absent onv{n}.metadata.jsonfor optimistic concurrency — safe on HDFS but not atomic on plain object stores (S3 has no create-if-absent guarantee). Java has the same caveat; worth documenting or using a conditional-write primitive where available.
Adapting a custom storage scheme (Tencent Cloud TBDSFS as a concrete case)
A related gap surfaced while prototyping against Tencent Cloud TBDS's distributed filesystem scheme tbdsfs://<cluster>/<path> (exposed by a Python client, plus a JVM fs.tbdsfs.impl):
-
PyArrowFileIO._initialize_fs(scheme, netloc)only understands a fixed set of schemes (hdfs / s3 / gs / file / abfs / ...), so anytbdsfs://...location raisesValueError: Unrecognized filesystem type in URI: tbdsfs. -
There is no public, documented way to plug in a custom filesystem. The only workaround today is monkey-patching a private method:
- Implement a
pyarrow.fs.FileSystemHandlersubclass wrapping the TBDSFS Python client, wrap it inpyarrow.fs.PyFileSystem, then patchPyArrowFileIO._initialize_fsto return that filesystem whenscheme == "tbdsfs". - pyarrow 21's
PyFileSystemcallback also has non-obvious contracts any custom handler must satisfy: single paths arrive as one-element lists;get_file_infomust return a one-element list; and for scheme'd URIs the netloc is prepended into the path (e.g.internal/usr/..., without a leading slash).
- Implement a
This works, but it depends on patching a private API (_initialize_fs), which is brittle across PyIceberg releases.
Suggested improvement: a documented, public extension point for registering an arbitrary pyarrow.fs.FileSystem (or a custom FileIO) per scheme — e.g. a register_file_system(scheme, factory) helper, or a scheme → FileSystem mapping read from FileIO/catalog properties — so non-standard object stores and filesystems can be integrated without touching internals. This would also naturally address the HadoopCatalog.__init__ filesystem-abstraction point above.
References
- Java:
org.apache.iceberg.hadoop.HadoopCatalog/HadoopTables - Downstream usage that currently breaks:
daft/catalog/__gravitino/_catalog.py→_open_iceberg_table
- Ngôn ngữ chính
- Python
- Star
- 1.1k
- Fork
- 589
- Merge trung bình
- 2 ngày 4 giờ
- Pull request đã merge (30 ngày)
- 72
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Issue khác của apache/iceberg-python
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
apache/iceberg-python#3996 ·
-
Deletion vector bitmap count is read from the blob and used as a loop bound without validation Đang mởbug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 72/100
apache/iceberg-python#3979 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
apache/iceberg-python#3885 ·
-
[Bug] PyArrowFileIO fails to propagate s3.ssl.ca-cert to pyarrow.fs.S3FileSystem tls_ca_file_path Đang mở
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 76/100
apache/iceberg-python#3866 · 1 bình luận ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
apache/iceberg-python#3836 · 1 bình luận ·
Tất cả issue của apache/iceberg-python
Issue tương tự
-
bug ci good first issue
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 88/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 76/100
-
documentation
Độ khó 2/5 Nửa ngày Mức phù hợp với người mới 62/100
inmanta/inmanta-core#10835 ·
-
sponsored
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 65/100
-
opensubtitlescom: moviehash never sent when opensubtitles (.org) is not in the provider list Đang mở
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 86/100
Diaoul/subliminal#1382 ·