Skip to content

Commit ef9a16c

Browse files
committed
Update README and remove from storage-all
Signed-off-by: Jannik Steinmann <jannik.steinmann@datadoghq.com>
1 parent 06ccb32 commit ef9a16c

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

crates/iceberg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repository = { workspace = true }
3030

3131
[features]
3232
default = ["storage-memory", "storage-fs", "storage-s3", "tokio"]
33-
storage-all = ["storage-memory", "storage-fs", "storage-s3", "storage-gcs", "storage-azdls"]
33+
storage-all = ["storage-memory", "storage-fs", "storage-s3", "storage-gcs"]
3434

3535
storage-azdls = ["opendal/services-azdls"]
3636
storage-fs = ["opendal/services-fs"]

crates/iceberg/README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,18 @@ async fn main() -> Result<()> {
6262

6363
Iceberg Rust provides various storage backends through feature flags. Here are the currently supported storage backends:
6464

65-
| Storage Backend | Feature Flag | Status | Description |
66-
|----------------|--------------|--------|-------------|
67-
| Memory | `storage-memory` | ✅ Stable | In-memory storage for testing and development |
68-
| Local Filesystem | `storage-fs` | ✅ Stable | Local filesystem storage |
69-
| Amazon S3 | `storage-s3` | ✅ Stable | Amazon S3 storage |
70-
| Google Cloud Storage | `storage-gcs` | ✅ Stable | Google Cloud Storage |
71-
| Alibaba Cloud OSS | `storage-oss` | 🧪 Experimental | Alibaba Cloud Object Storage Service |
65+
| Storage Backend | Feature Flag | Status | Description |
66+
| -------------------- | ---------------- | -------------- | --------------------------------------------- |
67+
| Memory | `storage-memory` | ✅ Stable | In-memory storage for testing and development |
68+
| Local Filesystem | `storage-fs` | ✅ Stable | Local filesystem storage |
69+
| Amazon S3 | `storage-s3` | ✅ Stable | Amazon S3 storage |
70+
| Google Cloud Storage | `storage-gcs` | ✅ Stable | Google Cloud Storage |
71+
| Alibaba Cloud OSS | `storage-oss` | 🧪 Experimental | Alibaba Cloud Object Storage Service |
72+
| Azure Datalake | `storage-azdls` | 🧪 Experimental | Azure Datalake Storage v2 |
7273

7374
You can enable all stable storage backends at once using the `storage-all` feature flag.
7475

75-
> Note that `storage-oss` is currently experimental and not included in `storage-all`.
76+
> Note that `storage-oss` and `storage-azdls` are currently experimental and not included in `storage-all`.
7677
7778
Example usage in `Cargo.toml`:
7879

0 commit comments

Comments
 (0)