This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch release-1.15
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.15 by this push:
new cb5dbf5b907 [FLINK-31227][docs] Remove Scala suffix for ORC and
Parquet format download links on the the FileSystem documentation. This closes
#22039
cb5dbf5b907 is described below
commit cb5dbf5b9070dc1bf4e7465458cd9db5e50ea996
Author: K.I. (Dennis) Jung <[email protected]>
AuthorDate: Mon Mar 13 17:03:16 2023 +0900
[FLINK-31227][docs] Remove Scala suffix for ORC and Parquet format download
links on the the FileSystem documentation. This closes #22039
Remove Scala suffix for ORC and Parquet format download links on the the
FileSystem documentation
(cherry picked from commit a8848f8d6aa700e0325e79a8f7b44f611d287cb3)
---
docs/content.zh/docs/connectors/datastream/filesystem.md | 4 ++--
docs/content/docs/connectors/datastream/filesystem.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/content.zh/docs/connectors/datastream/filesystem.md
b/docs/content.zh/docs/connectors/datastream/filesystem.md
index b7514d17ef0..9d203df6482 100644
--- a/docs/content.zh/docs/connectors/datastream/filesystem.md
+++ b/docs/content.zh/docs/connectors/datastream/filesystem.md
@@ -392,7 +392,7 @@ Flink 内置了为 Avro Format 数据创建 Parquet 写入工厂的快捷方法
如果在程序中使用 Parquet 的 Bulk-encoded Format,需要添加如下依赖到项目中:
-{{< artifact flink-parquet withScalaVersion >}}
+{{< artifact flink-parquet >}}
类似这样使用 `FileSink` 写入 Parquet Format 的 Avro 数据:
@@ -640,7 +640,7 @@ class PersonVectorizer(schema: String) extends
Vectorizer[Person](schema) {
如果在程序中使用 ORC 的 Bulk-encoded Format,需要添加如下依赖到项目中:
-{{< artifact flink-orc withScalaVersion >}}
+{{< artifact flink-orc >}}
然后,类似这样使用 `FileSink` 以 ORC Format 输出数据:
diff --git a/docs/content/docs/connectors/datastream/filesystem.md
b/docs/content/docs/connectors/datastream/filesystem.md
index 1a116e0a9c1..669f3a67e45 100644
--- a/docs/content/docs/connectors/datastream/filesystem.md
+++ b/docs/content/docs/connectors/datastream/filesystem.md
@@ -389,7 +389,7 @@ For writing to other Parquet compatible data formats, users
need to create the P
To use the Parquet bulk encoder in your application you need to add the
following dependency:
-{{< artifact flink-parquet withScalaVersion >}}
+{{< artifact flink-parquet >}}
A `FileSink` that writes Avro data to Parquet format can be created like this:
@@ -641,7 +641,7 @@ class PersonVectorizer(schema: String) extends
Vectorizer[Person](schema) {
To use the ORC bulk encoder in an application, users need to add the following
dependency:
-{{< artifact flink-orc withScalaVersion >}}
+{{< artifact flink-orc >}}
And then a `FileSink` that writes data in ORC format can be created like this: