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

docs(readme): Add feature roadmap and support to readme #32

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
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
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,51 @@

`iceberg` is a Golang implementation of the [Iceberg table spec](https://iceberg.apache.org/spec/).

## Feature Support / Roadmap

### FileSystem Support

| Filesystem Type | Supported |
| :------------------: | :-------: |
| S3 | X |
| Google Cloud Storage | |
| Azure Blob Storage | |
| Local Filesystem | X |

### Metadata

| Operation | Supported |
| :----------------------- | :-------: |
| Get Schema | X |
| Get Snapshots | X |
| Get Sort Orders | X |
| Get Partition Specs | X |
| Get Manifests | X |
| Create New Manifests | X |
| Plan Scan | |
| Plan Scan for Snapshot | |

### Catalog Support

| Operation | REST | Hive | DynamoDB | Glue |
| :----------------------- | :--: | :--: | :------: | :--: |
| Create Table | | | | |
| Update Current Snapshot | | | | |
| Create New Snapshot | | | | |
| Rename Table | | | | |
| Drop Table | | | | |
| Alter Table | | | | |
| Set Table Properties | | | | |
| Create Namespace | | | | |
| Drop Namespace | | | | |
| Set Namespace Properties | | | | |

### Read/Write Data Support

* No intrinsic support for reading/writing data yet
* Data can be manually read currently by retrieving data files via Manifests.
* Plan to add [Apache Arrow](https://pkg.go.dev/github.com/apache/arrow/go/[email protected]) support eventually.

# Get in Touch

- [Iceberg community](https://iceberg.apache.org/community/)