This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new ecf59a7c51ce [DOCS] Update daft links (#13524)
ecf59a7c51ce is described below
commit ecf59a7c51ce4014519d41a041d0a158315ed6ba
Author: ccmao1130 <[email protected]>
AuthorDate: Fri Jul 4 06:30:40 2025 -0700
[DOCS] Update daft links (#13524)
---
website/docs/python-rust-quick-start-guide.md | 10 +++++-----
website/docs/reading_tables_batch_reads.md | 4 ++--
website/src/pages/ecosystem.md | 4 ++--
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/website/docs/python-rust-quick-start-guide.md
b/website/docs/python-rust-quick-start-guide.md
index c1d216c1607f..9108a30eaf0b 100644
--- a/website/docs/python-rust-quick-start-guide.md
+++ b/website/docs/python-rust-quick-start-guide.md
@@ -80,7 +80,7 @@ hudi_table = (
#### Rust
```rust
-let hudi_table =
+let hudi_table =
HudiTableBuilder::from_base_uri("/tmp/trips_table")
.with_option("hoodie.read.use.read_optimized.mode", "true")
.build().await?;
@@ -105,7 +105,7 @@ batches = (
#### Rust
```rust
-let batches =
+let batches =
hudi_table
.read_snapshot_as_of("20241231123456789", &[("city", "=",
"san_francisco")]).await?;
```
@@ -165,7 +165,7 @@ Create a Hudi file group reader instance using its
constructor or the Hudi table
### Apache DataFusion
-Enabling the `hudi` crate with `datafusion` feature will provide a
[DataFusion](https://datafusion.apache.org/)
+Enabling the `hudi` crate with `datafusion` feature will provide a
[DataFusion](https://datafusion.apache.org/)
extension to query Hudi tables.
<details>
@@ -205,7 +205,7 @@ async fn main() -> Result<()> {
Hudi is also integrated with
-- [Daft](https://www.getdaft.io/projects/docs/en/stable/integrations/hudi/)
+- [Daft](https://docs.daft.ai/en/stable/io/hudi/)
-
[Ray](https://docs.ray.io/en/latest/data/api/doc/ray.data.read_hudi.html#ray.data.read_hudi)
### Work with cloud storage
@@ -235,7 +235,7 @@ hudi_table = (
use hudi::table::builder::TableBuilder as HudiTableBuilder;
async fn main() -> Result<()> {
- let hudi_table =
+ let hudi_table =
HudiTableBuilder::from_base_uri("s3://bucket/trips_table")
.with_option("aws_region", "us-west-2")
.build().await?;
diff --git a/website/docs/reading_tables_batch_reads.md
b/website/docs/reading_tables_batch_reads.md
index d247fd4c3d08..0a62f34d55e3 100644
--- a/website/docs/reading_tables_batch_reads.md
+++ b/website/docs/reading_tables_batch_reads.md
@@ -21,7 +21,7 @@ tripsDF.where(tripsDF.fare > 20.0).show()
## Daft
-[Daft](https://www.getdaft.io/) supports reading Hudi tables using
`daft.read_hudi()` function.
+[Daft](https://www.daft.ai/) supports reading Hudi tables using
`daft.read_hudi()` function.
```Python
# Read Apache Hudi table into a Daft DataFrame.
@@ -32,4 +32,4 @@ df = df.where(df["foo"] > 5)
df.show()
```
-Check out the Daft docs for [Hudi
integration](https://www.getdaft.io/projects/docs/en/latest/user_guide/integrations/hudi.html).
+Check out the Daft docs for [Hudi
integration](https://docs.daft.ai/en/latest/io/hudi/).
diff --git a/website/src/pages/ecosystem.md b/website/src/pages/ecosystem.md
index 563beeb4a31a..00a291930dee 100644
--- a/website/src/pages/ecosystem.md
+++ b/website/src/pages/ecosystem.md
@@ -4,7 +4,7 @@ title: Ecosystem
# Ecosystem Support
-While Apache Hudi works seamlessly with various application frameworks, SQL
query engines, and data warehouses, some systems might only offer read
capabilities.
+While Apache Hudi works seamlessly with various application frameworks, SQL
query engines, and data warehouses, some systems might only offer read
capabilities.
In such cases, you can leverage another tool like Apache Spark or Apache Flink
to write data to Hudi tables and then use the read-compatible system for
querying.
| Project / Product | Apache Hudi (as of June 2024)
| Comments |
@@ -37,5 +37,5 @@ In such cases, you can leverage another tool like Apache
Spark or Apache Flink t
| Apache Doris |
[Read](https://doris.apache.org/docs/ecosystem/external-table/hudi-external-table/)
| |
| Starrocks |
[Read](https://docs.starrocks.io/docs/data_source/catalog/hudi_catalog/)
| [Demo with HMS +
Min.IO](https://github.com/StarRocks/demo/tree/master/documentation-samples/hudi)
|
| Dremio |
| |
-| Daft |
[Read](https://www.getdaft.io/projects/docs/en/stable/integrations/hudi/)
| |
+| Daft | [Read](https://docs.daft.ai/en/stable/io/hudi/)
| |
| Ray Data |
[Read](https://docs.ray.io/en/master/data/api/input_output.html#hudi)
| |