Skip to content
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

Add memory catalog implementation #475

Merged
merged 15 commits into from
Jul 26, 2024
Merged
41 changes: 41 additions & 0 deletions crates/catalog/inmemory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# 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-catalog-inmemory"
fqaiser94 marked this conversation as resolved.
Show resolved Hide resolved
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
rust-version = { workspace = true }

categories = ["database"]
description = "Apache Iceberg Rust In-Memory Catalog API"
repository = { workspace = true }
license = { workspace = true }
keywords = ["iceberg", "inmemory", "catalog"]

[dependencies]
async-trait = { workspace = true }
futures = { workspace = true }
iceberg = { workspace = true }
itertools = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["v4"] }

[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true }
27 changes: 27 additions & 0 deletions crates/catalog/inmemory/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!--
~ 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 In-Memory Catalog Official Native Rust Implementation

[![crates.io](https://img.shields.io/crates/v/iceberg-catalog-inmemory.svg)](https://crates.io/crates/iceberg-catalog-inmemory)
[![docs.rs](https://img.shields.io/docsrs/iceberg-catalog-inmemory.svg)](https://docs.rs/iceberg/latest/iceberg-catalog-inmemory/)

This crate contains the official Native Rust implementation of Apache Iceberg In-Memory Catalog.

See the [API documentation](https://docs.rs/iceberg-catalog-inmemory/latest) for examples and the full API.
Loading
Loading