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 2024/01/03 01:33:50 UTC

(flink-connector-pulsar) branch v4.1 updated: [FLINK-33964][pulsar][docs] Drop admin docs reference

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

leonard pushed a commit to branch v4.1
in repository https://gitbox.apache.org/repos/asf/flink-connector-pulsar.git


The following commit(s) were added to refs/heads/v4.1 by this push:
     new 05e58b7  [FLINK-33964][pulsar][docs] Drop admin docs reference
05e58b7 is described below

commit 05e58b74947dcf46583e7fd1565d459c7b4a44a2
Author: Leonard Xu <le...@apache.org>
AuthorDate: Wed Jan 3 09:33:46 2024 +0800

    [FLINK-33964][pulsar][docs] Drop admin docs reference
    
    This closes #76.
    
    Co-authored-by: tison <wa...@gmail.com>
---
 docs/content.zh/docs/connectors/datastream/pulsar.md |  6 ------
 docs/content/docs/connectors/datastream/pulsar.md    | 10 ----------
 2 files changed, 16 deletions(-)

diff --git a/docs/content.zh/docs/connectors/datastream/pulsar.md b/docs/content.zh/docs/connectors/datastream/pulsar.md
index 5aa02b0..423edd2 100644
--- a/docs/content.zh/docs/connectors/datastream/pulsar.md
+++ b/docs/content.zh/docs/connectors/datastream/pulsar.md
@@ -484,12 +484,6 @@ Pulsar Source 使用 [Java 客户端](https://pulsar.apache.org/docs/2.11.x/clie
 
 {{< generated/pulsar_client_configuration >}}
 
-#### Pulsar 管理 API 配置项
-
-[管理 API](https://pulsar.apache.org/docs/2.11.x/admin-api-overview/) 用于查询 Topic 的元数据和用正则订阅的时候的 Topic 查找,它与 Java 客户端共享大部分配置。下面列举的配置只供管理 API 使用,`PulsarOptions` 包含了这些配置 。
-
-{{< generated/pulsar_admin_configuration >}}
-
 #### Pulsar 消费者 API 配置项
 
 Pulsar 提供了消费者 API 和读者 API 两套 API 来进行数据消费,它们可用于不同的业务场景。Flink 上的 Pulsar Source 使用消费者 API 进行消费,它的配置定义于 Pulsar 的 `ConsumerConfigurationData` 内。Pulsar Source 将其中大部分的可供用户定义的配置定义于 `PulsarSourceOptions` 内。
diff --git a/docs/content/docs/connectors/datastream/pulsar.md b/docs/content/docs/connectors/datastream/pulsar.md
index 54c1b47..c3fde89 100644
--- a/docs/content/docs/connectors/datastream/pulsar.md
+++ b/docs/content/docs/connectors/datastream/pulsar.md
@@ -565,16 +565,6 @@ which is required for creating a `PulsarClient`, as Flink configuration options
 
 {{< generated/pulsar_client_configuration >}}
 
-#### PulsarAdmin Options
-
-The [admin API](https://pulsar.apache.org/docs/2.11.x/admin-api-overview/) is used for querying topic metadata
-and for discovering the desired topics when the Pulsar connector uses topic-pattern subscription.
-It shares most part of the configuration options with the client API.
-The configuration options listed here are only used in the admin API.
-They are also defined in `PulsarOptions`.
-
-{{< generated/pulsar_admin_configuration >}}
-
 #### Pulsar Consumer Options
 
 In general, Pulsar provides the Reader API and Consumer API for consuming messages in different scenarios.