This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 529517b docs: mark unreleased storage backends and mosaic feature
(#462)
529517b is described below
commit 529517b1557b3dbbf2cd2cc955b3a333c332b98a
Author: JR9 <[email protected]>
AuthorDate: Tue Jul 7 15:52:50 2026 +0900
docs: mark unreleased storage backends and mosaic feature (#462)
---
docs/src/getting-started.md | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md
index a5c0757..b0317e5 100644
--- a/docs/src/getting-started.md
+++ b/docs/src/getting-started.md
@@ -44,20 +44,27 @@ Available storage features:
| `storage-memory` | In-memory |
| `storage-s3` | Amazon S3 |
| `storage-oss` | Alibaba Cloud OSS|
-| `storage-cos` | Tencent Cloud COS|
-| `storage-azdls` | Azure Data Lake Storage Gen2 |
-| `storage-obs` | Huawei Cloud OBS |
-| `storage-gcs` | Google Cloud Storage |
+| `storage-cos` | Tencent Cloud COS <sup>[1]</sup> |
+| `storage-azdls` | Azure Data Lake Storage Gen2 <sup>[1]</sup> |
+| `storage-obs` | Huawei Cloud OBS <sup>[1]</sup> |
+| `storage-gcs` | Google Cloud Storage <sup>[1]</sup> |
| `storage-hdfs` | HDFS |
| `storage-all` | All of the above |
+<sup>[1]</sup> Not in the latest release yet; available on the `main` branch.
To use it now, depend on the git repository instead of a published version:
+
+```toml
+[dependencies]
+paimon = { git = "https://github.com/apache/paimon-rust", features =
["storage-cos"] }
+```
+
## Optional File Formats
-Mosaic data files can be read by enabling the `mosaic` feature:
+Mosaic data files can be read by enabling the `mosaic` feature. This feature
is not in the latest release yet; it is available on the `main` branch:
```toml
[dependencies]
-paimon = { version = "0.2.0", features = ["mosaic"] }
+paimon = { git = "https://github.com/apache/paimon-rust", features =
["mosaic"] }
```
The current Mosaic support is read-only. Paimon Rust can read existing
`.mosaic` data files in a Paimon table, but it does not write Mosaic data files
yet.