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 896972e5fc3 [DOCS] Remove key requirements part of streaming query and
change table type to COW of cdc query (#10811)
896972e5fc3 is described below
commit 896972e5fc3b8b1a6515a493d37576da09084355
Author: stayrascal <[email protected]>
AuthorDate: Tue Mar 5 17:33:26 2024 +0800
[DOCS] Remove key requirements part of streaming query and change table
type to COW of cdc query (#10811)
Co-authored-by: wuzhiping <[email protected]>
---
website/docs/flink-quick-start-guide.md | 11 ++---------
.../versioned_docs/version-0.14.1/flink-quick-start-guide.md | 3 +--
2 files changed, 3 insertions(+), 11 deletions(-)
diff --git a/website/docs/flink-quick-start-guide.md
b/website/docs/flink-quick-start-guide.md
index 20e59cb8f73..89e60737859 100644
--- a/website/docs/flink-quick-start-guide.md
+++ b/website/docs/flink-quick-start-guide.md
@@ -399,13 +399,7 @@ WITH (
-- Then query the table in stream mode
select * from t1;
-```
-
-
-:::info Key requirements
-The bundle jar with **hive profile** is needed for streaming query, by default
the officially released flink bundle is built **without**
-**hive profile**, the jar needs to be built manually, see [Build Flink Bundle
Jar](/docs/syncing_metastore#install) for more details.
-:::
+```
## Change Data Capture Query
@@ -427,8 +421,7 @@ PARTITIONED BY (`city`)
WITH (
'connector' = 'hudi',
'path' = 'file:///tmp/hudi_table',
- 'table.type' = 'MERGE_ON_READ',
- 'changelog.enabled' = 'true', -- this option enable the change log enabled
+ 'table.type' = 'COPY_ON_WRITE',
'cdc.enabled' = 'true' -- this option enable the cdc log enabled
);
-- insert data using values
diff --git a/website/versioned_docs/version-0.14.1/flink-quick-start-guide.md
b/website/versioned_docs/version-0.14.1/flink-quick-start-guide.md
index 73c928aaccf..ad54a9e3272 100644
--- a/website/versioned_docs/version-0.14.1/flink-quick-start-guide.md
+++ b/website/versioned_docs/version-0.14.1/flink-quick-start-guide.md
@@ -427,8 +427,7 @@ PARTITIONED BY (`city`)
WITH (
'connector' = 'hudi',
'path' = 'file:///tmp/hudi_table',
- 'table.type' = 'MERGE_ON_READ',
- 'changelog.enabled' = 'true', -- this option enable the change log enabled
+ 'table.type' = 'COPY_ON_WRITE',
'cdc.enabled' = 'true' -- this option enable the cdc log enabled
);
-- insert data using values