forked from apache/iceberg-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic Integration with Datafusion (apache#324)
* chore: basic structure * feat: add IcebergCatalogProvider * feat: add IcebergSchemaProvider * feat: add IcebergTableProvider * chore: add integration test infr * fix: remove old test * chore: update crate structure * fix: remove workspace dep * refactor: use try_join_all * chore: remove feature flag * chore: rename package * chore: update readme * feat: add TableType * fix: import + async_trait * fix: imports + async_trait * chore: remove feature flag * fix: cargo sort * refactor: CatalogProvider `fn try_new` * refactor: SchemaProvider `fn try_new` * chore: update docs * chore: update docs * chore: update doc * feat: impl `fn schema` on TableProvider * chore: rename ArrowSchema * refactor: remove DashMap * feat: add basic IcebergTableScan * chore: fix docs * chore: add comments * fix: clippy * fix: typo * fix: license * chore: update docs * chore: move derive stmt * fix: collect into hashmap * chore: use DFResult * Update crates/integrations/datafusion/README.md Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com> --------- Co-authored-by: Renjie Liu <liurenjie2008@gmail.com> Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>
- Loading branch information
1 parent
7dfc548
commit bbd042d
Showing
15 changed files
with
889 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# 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] | ||
name = "iceberg-datafusion" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
categories = ["database"] | ||
description = "Apache Iceberg Datafusion Integration" | ||
repository = { workspace = true } | ||
license = { workspace = true } | ||
keywords = ["iceberg", "integrations", "datafusion"] | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
async-trait = { workspace = true } | ||
datafusion = { version = "37.0.0" } | ||
futures = { workspace = true } | ||
iceberg = { workspace = true } | ||
log = { workspace = true } | ||
tokio = { workspace = true } | ||
|
||
[dev-dependencies] | ||
iceberg-catalog-hms = { workspace = true } | ||
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] } | ||
port_scanner = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!-- | ||
~ 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. | ||
--> | ||
|
||
# Apache Iceberg DataFusion Integration | ||
|
||
This crate contains the integration of Apache DataFusion and Apache Iceberg. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// 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. | ||
|
||
use std::{any::Any, collections::HashMap, sync::Arc}; | ||
|
||
use datafusion::catalog::{schema::SchemaProvider, CatalogProvider}; | ||
use futures::future::try_join_all; | ||
use iceberg::{Catalog, NamespaceIdent, Result}; | ||
|
||
use crate::schema::IcebergSchemaProvider; | ||
|
||
/// Provides an interface to manage and access multiple schemas | ||
/// within an Iceberg [`Catalog`]. | ||
/// | ||
/// Acts as a centralized catalog provider that aggregates | ||
/// multiple [`SchemaProvider`], each associated with distinct namespaces. | ||
pub struct IcebergCatalogProvider { | ||
/// A `HashMap` where keys are namespace names | ||
/// and values are dynamic references to objects implementing the | ||
/// [`SchemaProvider`] trait. | ||
schemas: HashMap<String, Arc<dyn SchemaProvider>>, | ||
} | ||
|
||
impl IcebergCatalogProvider { | ||
/// Asynchronously tries to construct a new [`IcebergCatalogProvider`] | ||
/// using the given client to fetch and initialize schema providers for | ||
/// each namespace in the Iceberg [`Catalog`]. | ||
/// | ||
/// This method retrieves the list of namespace names | ||
/// attempts to create a schema provider for each namespace, and | ||
/// collects these providers into a `HashMap`. | ||
pub async fn try_new(client: Arc<dyn Catalog>) -> Result<Self> { | ||
// TODO: | ||
// Schemas and providers should be cached and evicted based on time | ||
// As of right now; schemas might become stale. | ||
let schema_names: Vec<_> = client | ||
.list_namespaces(None) | ||
.await? | ||
.iter() | ||
.flat_map(|ns| ns.as_ref().clone()) | ||
.collect(); | ||
|
||
let providers = try_join_all( | ||
schema_names | ||
.iter() | ||
.map(|name| { | ||
IcebergSchemaProvider::try_new( | ||
client.clone(), | ||
NamespaceIdent::new(name.clone()), | ||
) | ||
}) | ||
.collect::<Vec<_>>(), | ||
) | ||
.await?; | ||
|
||
let schemas: HashMap<String, Arc<dyn SchemaProvider>> = schema_names | ||
.into_iter() | ||
.zip(providers.into_iter()) | ||
.map(|(name, provider)| { | ||
let provider = Arc::new(provider) as Arc<dyn SchemaProvider>; | ||
(name, provider) | ||
}) | ||
.collect(); | ||
|
||
Ok(IcebergCatalogProvider { schemas }) | ||
} | ||
} | ||
|
||
impl CatalogProvider for IcebergCatalogProvider { | ||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn schema_names(&self) -> Vec<String> { | ||
self.schemas.keys().cloned().collect() | ||
} | ||
|
||
fn schema(&self, name: &str) -> Option<Arc<dyn SchemaProvider>> { | ||
self.schemas.get(name).cloned() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// 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. | ||
|
||
use anyhow::anyhow; | ||
use iceberg::{Error, ErrorKind}; | ||
|
||
/// Converts a datafusion error into an iceberg error. | ||
pub fn from_datafusion_error(error: datafusion::error::DataFusionError) -> Error { | ||
Error::new( | ||
ErrorKind::Unexpected, | ||
"Operation failed for hitting datafusion error".to_string(), | ||
) | ||
.with_source(anyhow!("datafusion error: {:?}", error)) | ||
} | ||
/// Converts an iceberg error into a datafusion error. | ||
pub fn to_datafusion_error(error: Error) -> datafusion::error::DataFusionError { | ||
datafusion::error::DataFusionError::External(error.into()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// 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. | ||
|
||
mod catalog; | ||
pub use catalog::*; | ||
|
||
mod error; | ||
pub use error::*; | ||
|
||
mod physical_plan; | ||
mod schema; | ||
mod table; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// 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. | ||
|
||
pub(crate) mod scan; |
Oops, something went wrong.