Skip to content

feat:Add hadoop catalog mode(include s3,s3a(minio) and hdfs ) #1313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e2b7a6d
feat:Add hadoop catalog mode
awol2005ex Apr 30, 2025
6a08fd3
feat:Add hadoop catalog mode(load s3 table meta)
awol2005ex May 6, 2025
891b07d
feat:Add hadoop catalog mode(s3 list_namepaces)
awol2005ex May 8, 2025
c38a229
feat:Add hadoop catalog mode(s3 list_namepaces)
awol2005ex May 8, 2025
2ee8079
feat:Add hadoop catalog mode(s3 create_namepace)
awol2005ex May 8, 2025
8942623
feat:Add hadoop catalog mode(s3 get_namepace)
awol2005ex May 8, 2025
4e91545
feat:Add hadoop catalog mode(s3 namespace_exists)
awol2005ex May 8, 2025
4f9cb2a
feat:Add hadoop catalog mode(s3 drop_namepace)
awol2005ex May 8, 2025
a5b0bad
feat:Add hadoop catalog mode(s3 list_tables)
awol2005ex May 8, 2025
45ab097
feat:Add hadoop catalog mode(s3 create table ,drop table)
awol2005ex May 9, 2025
e633e9a
feat:Add hadoop catalog mode(s3 table_exists)
awol2005ex May 9, 2025
bf4fd96
Merge remote-tracking branch 'origin/main' into awol2005ex-hadoop-cat…
awol2005ex May 9, 2025
5c1309c
feat:Add hadoop catalog mode(add hdfs-native io)
awol2005ex May 9, 2025
660ec6e
feat:Add hadoop catalog mode(hdfs_native list_namespaces)
awol2005ex May 9, 2025
813947f
feat:Add hadoop catalog mode(hdfs_native create_namespace)
awol2005ex May 9, 2025
45e1bb7
feat:Add hadoop catalog mode(hdfs_native get_namespace)
awol2005ex May 9, 2025
1d4cda4
feat:Add hadoop catalog mode(hdfs_native namespace_exists)
awol2005ex May 9, 2025
b13a01d
feat:Add hadoop catalog mode(hdfs_native drop_namespace)
awol2005ex May 9, 2025
899228c
feat:Add hadoop catalog mode(hdfs_native list_tables)
awol2005ex May 9, 2025
20540b9
feat:Add hadoop catalog mode(hdfs_native create_table)
awol2005ex May 9, 2025
794216f
feat:Add hadoop catalog mode(hdfs_native load_table)
awol2005ex May 9, 2025
f368bc4
feat:Add hadoop catalog mode(hdfs_native drop_table)
awol2005ex May 9, 2025
29b4f3c
feat:Add hadoop catalog mode(hdfs_native table_exists)
awol2005ex May 9, 2025
6ee7136
feat:Add hadoop catalog mode(hdfs_native create table)
awol2005ex May 12, 2025
a9ea6ea
feat:Add hadoop catalog mode(hdfs_native load table)
awol2005ex May 12, 2025
f71095e
Merge remote-tracking branch 'origin/main' into awol2005ex-hadoop-cat…
awol2005ex May 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ http = "1.1"
iceberg = { version = "0.4.0", path = "./crates/iceberg" }
iceberg-catalog-memory = { version = "0.4.0", path = "./crates/catalog/memory" }
iceberg-catalog-rest = { version = "0.4.0", path = "./crates/catalog/rest" }
iceberg-catalog-hadoop = { version = "0.4.0", path = "./crates/catalog/hadoop" }
iceberg-datafusion = { version = "0.4.0", path = "./crates/integrations/datafusion" }
indicatif = "0.17"
itertools = "0.13"
Expand Down Expand Up @@ -117,3 +118,4 @@ uuid = { version = "1.14", features = ["v7"] }
volo = "0.10.6"
volo-thrift = "0.10.6"
zstd = "0.13.2"
hdfs-native = { version = "0.10" }
45 changes: 45 additions & 0 deletions crates/catalog/hadoop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

[package]
edition = { workspace = true }
homepage = { workspace = true }
name = "iceberg-catalog-hadoop"
rust-version = { workspace = true }
version = { workspace = true }

categories = ["database"]
description = "Apache Iceberg Rust Hadoop Catalog"
keywords = ["iceberg", "sql", "catalog","s3","hdfs"]
license = { workspace = true }
repository = { workspace = true }

[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
aws-config = { workspace = true }
iceberg = { workspace = true }
serde_json = { workspace = true }
typed-builder = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
aws-sdk-s3 = {version="1.84.0",features = ["behavior-version-latest"]}
tokio = { workspace = true }
hdfs-native = { workspace = true }
[dev-dependencies]
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
itertools = { workspace = true }

Loading
Loading