You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by le...@apache.org on 2022/02/18 13:41:08 UTC

[flink] branch master updated: [FLINK-24407][doc-zh] Fix the broken links in Chinese document of Pulsar connector

This is an automated email from the ASF dual-hosted git repository.

leonard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f60c50  [FLINK-24407][doc-zh] Fix the broken links in Chinese document of Pulsar connector
9f60c50 is described below

commit 9f60c506366ae14405f0da487b3267aa336ec284
Author: gongzhongqiang <76...@qq.com>
AuthorDate: Fri Feb 18 21:40:42 2022 +0800

    [FLINK-24407][doc-zh] Fix the broken links in Chinese document of Pulsar connector
    
    This closes #17622.
---
 docs/content.zh/docs/connectors/datastream/pulsar.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/connectors/datastream/pulsar.md b/docs/content.zh/docs/connectors/datastream/pulsar.md
index ca350be..1779c72 100644
--- a/docs/content.zh/docs/connectors/datastream/pulsar.md
+++ b/docs/content.zh/docs/connectors/datastream/pulsar.md
@@ -175,8 +175,8 @@ Flink 使用 `TypeInformation` 将解析出来的结果序列化传递到下游
 订阅是命名好的配置规则,指导消息如何投递给消费者。连接器需要提供一个独立的订阅名称,支持 Pulsar 的四种订阅模式:
 
 - [exclusive(独占)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#exclusive)
-- [shared(共享)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#shared)
-- [failover(灾备)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#failover)
+- [shared(共享)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#shared%E5%85%B1%E4%BA%AB)
+- [failover(灾备)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#failover%E7%81%BE%E5%A4%87)
 - [key_shared(key 共享)](https://pulsar.apache.org/docs/zh-CN/concepts-messaging/#key_shared)
 
 当前 Pulsar 连接器里面,`独占` 和 `灾备` 的实现没有区别,如果 Flink 的一个 reader 挂了,连接器会把所有未消费的数据交给其他的 reader 来消费数据。