This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new ed84ea0045 docs: Remove link to Flink unit test (#10160)
ed84ea0045 is described below
commit ed84ea004542123d5a839be2e1f879cb3eb8f184
Author: Manu Zhang <[email protected]>
AuthorDate: Mon May 6 16:41:09 2024 +0800
docs: Remove link to Flink unit test (#10160)
---
.gitignore | 1 +
docs/docs/flink-writes.md | 2 --
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
index 5d3147535b..6740a061e3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,6 +24,7 @@ gradle/wrapper/gradle-wrapper.jar
lib/
# web site build
+docs/site/
site/site/
site/docs/docs/
site/docs/.asf.yaml
diff --git a/docs/docs/flink-writes.md b/docs/docs/flink-writes.md
index 93ef1cf1b7..b916a5f9b7 100644
--- a/docs/docs/flink-writes.md
+++ b/docs/docs/flink-writes.md
@@ -103,8 +103,6 @@ FlinkSink.forRowData(input)
env.execute("Test Iceberg DataStream");
```
-The iceberg API also allows users to write generic `DataStream<T>` to iceberg
table, more example could be found in this [unit
test](https://github.com/apache/iceberg/blob/main/flink/v1.17/flink/src/test/java/org/apache/iceberg/flink/sink/TestFlinkIcebergSink.java).
-
### Overwrite data
Set the `overwrite` flag in FlinkSink builder to overwrite the data in
existing iceberg tables: