You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by gi...@apache.org on 2021/08/27 13:02:33 UTC

[incubator-inlong-website] branch asf-site updated: Automated deployment: Fri Aug 27 13:02:29 UTC 2021 aded00a5ed0747ba3306d05b3cb54ac5d641235a

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

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new bcb01b7  Automated deployment: Fri Aug 27 13:02:29 UTC 2021 aded00a5ed0747ba3306d05b3cb54ac5d641235a
bcb01b7 is described below

commit bcb01b7aacde9c2c69c740961215c313fe83ee70
Author: dockerzhang <do...@users.noreply.github.com>
AuthorDate: Fri Aug 27 13:02:29 2021 +0000

    Automated deployment: Fri Aug 27 13:02:29 UTC 2021 aded00a5ed0747ba3306d05b3cb54ac5d641235a
---
 docs/en-us/modules/sort/introduction.md   |  7 ++++---
 docs/en-us/modules/sort/quick_start.md    | 16 ++++++++--------
 docs/zh-cn/modules/sort/introduction.md   |  3 ++-
 docs/zh-cn/modules/sort/quick_start.md    |  8 ++++----
 en-us/docs/modules/sort/introduction.html |  9 +++++----
 en-us/docs/modules/sort/introduction.json |  2 +-
 en-us/docs/modules/sort/introduction.md   |  7 ++++---
 en-us/docs/modules/sort/quick_start.html  |  8 ++++----
 en-us/docs/modules/sort/quick_start.json  |  2 +-
 en-us/docs/modules/sort/quick_start.md    | 16 ++++++++--------
 zh-cn/docs/modules/sort/introduction.html |  3 ++-
 zh-cn/docs/modules/sort/introduction.json |  2 +-
 zh-cn/docs/modules/sort/introduction.md   |  3 ++-
 zh-cn/docs/modules/sort/quick_start.html  |  8 ++++----
 zh-cn/docs/modules/sort/quick_start.json  |  2 +-
 zh-cn/docs/modules/sort/quick_start.md    |  8 ++++----
 16 files changed, 55 insertions(+), 49 deletions(-)

diff --git a/docs/en-us/modules/sort/introduction.md b/docs/en-us/modules/sort/introduction.md
index a59e24f..948af31 100644
--- a/docs/en-us/modules/sort/introduction.md
+++ b/docs/en-us/modules/sort/introduction.md
@@ -6,7 +6,7 @@ Introduction - Apache InLong-sort
 Inlong-sort is used to extract data from different source systems, then transforms the data and finally loads the data into diffrent storage systems.
 Inlong-sort is simply an Flink application, and relys on Inlong-manager to manage meta data(such as the source informations and storage informations)
 
-#features
+# features
 ## multi-tenancy
 Inlong-sort is an multi-tenancy system, which means you can extract data from different sources(these sources must be of the same source type) and load data into different sinks(these sinks must be of the same storage type).
 e.g. you can extract data form different topics of inlong-tubemq and the load them to different hive clusters.
@@ -17,17 +17,18 @@ e.g if you want to change the schema of your data, just change the meta data on
 
 # supported sources
 - inlong-tubemq
+- pulsar
 
 # supported storages
 - clickhouse
 - hive (Currently we just support parquet file format)
 
-#limitations
+# limitations
 Currently, we just support extracting specified fields in the stage of **Transform**.
 
 # future plans
 ## More kinds of source systems
-pulsar, kafka and etc
+kafka and etc
 
 ## More kinds of storage systems
 Hbase, Elastic Search, and etc
diff --git a/docs/en-us/modules/sort/quick_start.md b/docs/en-us/modules/sort/quick_start.md
index 6205390..65add05 100644
--- a/docs/en-us/modules/sort/quick_start.md
+++ b/docs/en-us/modules/sort/quick_start.md
@@ -2,7 +2,7 @@
 Quick Start - Apache InLong-sort
 ---
 
-##  Set up flink environment
+## Set up flink environment
 Currently inlong-sort is based on flink, before you run an inlong-sort application,
 you need to set up flink environment.
 
@@ -12,10 +12,10 @@ Currently, inlong-sort relys on flink-1.9.3. Chose `flink-1.9.3-bin-scala_2.11.t
 
 Once your flink environment is set up, you can visit web ui of flink, whose address is stored in `/${your_flink_path}/conf/masters`.
 
-##  Prepare installation files
+## Prepare installation files
 All installation files at `inlong-sort` directory.
 
-##  Starting an inlong-sort application
+## Starting an inlong-sort application
 Now you can submit job to flink with the jar compiled.
 
 <a href="https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/yarn_setup.html#submit-job-to-flink" target="_blank">how to submit job to flink</a>
@@ -26,15 +26,15 @@ Example:
 
 Notice:
 
-- `-c org.apache.inlong.sort.flink.Entrance` 表示main class name
+- `-c org.apache.inlong.sort.flink.Entrance` is the main class name
 
-- `inlong-sort-core-1.0-SNAPSHOT.jar` 为编译阶段产出的jar包
+- `inlong-sort-core-1.0-SNAPSHOT.jar` is the compiled jar
 
-##  Necessary configurations
+## Necessary configurations
 - `--cluster-id ` which is used to represent a specified inlong-sort application
 - `--zookeeper.quorum` zk quorum
 - `--zookeeper.path.root` zk root path
-- `--source.type` source of the application, currently only "tubemq" is supported
+- `--source.type` source of the application, currently "tubemq" and "pulsar" are supported
 - `--sink.type` sink of the application, currently "clickhouse" and "hive" are supported
 
 Configurations above are necessary, you can see full configurations in
@@ -51,7 +51,7 @@ Configurations above are necessary, you can see full configurations in
 |cluster-id   |  Y | NA  |  used to represent a specified inlong-sort application |
 |zookeeper.quorum   | Y  | NA  | zk quorum  |
 |zookeeper.path.root   | Y  | "/inlong-sort"  |  zk root path  |
-|source.type   | Y | NA   | source of the application, currently only "tubemq" is supported  |
+|source.type   | Y | NA   | source of the application, currently "tubemq" and "pulsar" are supported  |
 |sink.type   | Y  | NA  | sink of the application, currently "clickhouse" and "hive" are supported  |
 |source.parallelism   | N  | 1  | parallelism of source  |
 |deserialization.parallelism   | N  |  1 | parallelism of deserialization  |
diff --git a/docs/zh-cn/modules/sort/introduction.md b/docs/zh-cn/modules/sort/introduction.md
index 3065e40..1fe29a3 100644
--- a/docs/zh-cn/modules/sort/introduction.md
+++ b/docs/zh-cn/modules/sort/introduction.md
@@ -20,6 +20,7 @@ inlong-sort支持热更新元数据,比如更新数据源的信息,数据sch
 
 # 支持的数据源
 - inlong-tubemq
+- pulsar
 
 # 支持的存储系统
 - hive(当前只支持parquet文件格式)
@@ -30,7 +31,7 @@ inlong-sort支持热更新元数据,比如更新数据源的信息,数据sch
 
 # 未来规划
 ## 支持更多种类的数据源
-pulsar,kafka等
+kafka等
 
 
 ## 支持更多种类的存储
diff --git a/docs/zh-cn/modules/sort/quick_start.md b/docs/zh-cn/modules/sort/quick_start.md
index bbf267a..7f830df 100644
--- a/docs/zh-cn/modules/sort/quick_start.md
+++ b/docs/zh-cn/modules/sort/quick_start.md
@@ -33,8 +33,8 @@ flink环境配置完成后,可以通过浏览器访问flink的web ui,对应
 - `--cluster-id ` 用来唯一标识一个inlong-sort作业
 - `--zookeeper.quorum` zk quorum
 - `--zookeeper.path.root` zk根目录
-- `--source.type` 数据源的种类, 当前仅支持"tubemq"
-- `--sink.type` 存储系统的种类,当前支持"clickhouse" 和 "hive"
+- `--source.type` 数据源的种类, 当前支持:"tubemq"、"pulsar"
+- `--sink.type` 存储系统的种类,当前支持:"clickhouse"、"hive"
 
 **配置示例**
 
@@ -46,8 +46,8 @@ flink环境配置完成后,可以通过浏览器访问flink的web ui,对应
 |cluster-id   | Y | NA  |  用来唯一标识一个inlong-sort作业 |
 |zookeeper.quorum   | Y  | NA  | zk quorum  |
 |zookeeper.path.root   | Y  | "/inlong-sort"  |  zk根目录  |
-|source.type   | Y | NA | 数据源的种类, 当前仅支持"tubemq"  |
-|sink.type   | Y  | NA  | 存储系统的种类,当前支持"clickhouse", "iceberg" 和 "hive" |
+|source.type   | Y | NA | 数据源的种类, 当前支持"tubemq"和"pulsar"  |
+|sink.type   | Y  | NA  | 存储系统的种类,当前支持"clickhouse" 和 "hive" |
 |source.parallelism   | N  | 1  | source的并行度  |
 |deserialization.parallelism | N | 1 | deserialization的并行度  |
 |sink.parallelism   | N  | 1  | sink的并行度 |
diff --git a/en-us/docs/modules/sort/introduction.html b/en-us/docs/modules/sort/introduction.html
index ac80d06..7b4b04e 100644
--- a/en-us/docs/modules/sort/introduction.html
+++ b/en-us/docs/modules/sort/introduction.html
@@ -15,7 +15,7 @@
 	<div id="root"><div class="documentation-page" data-reactroot=""><header class="header-container header-container-normal"><div class="header-body"><a href="/en-us/index.html"><a href="//www.apache.org"><img class="logo apache" style="width:120px" src="/img/asf_logo.svg"/></a><div class="logo-split"></div><img class="logo tube" style="width:120px;top:12px;position:absolute" src="/img/Tube logo.svg"/></a><div class="search search-normal"><span class="icon-search"></span></div><span class= [...]
 <p>Inlong-sort is used to extract data from different source systems, then transforms the data and finally loads the data into diffrent storage systems.
 Inlong-sort is simply an Flink application, and relys on Inlong-manager to manage meta data(such as the source informations and storage informations)</p>
-<p>#features</p>
+<h1>features</h1>
 <h2>multi-tenancy</h2>
 <p>Inlong-sort is an multi-tenancy system, which means you can extract data from different sources(these sources must be of the same source type) and load data into different sinks(these sinks must be of the same storage type).
 e.g. you can extract data form different topics of inlong-tubemq and the load them to different hive clusters.</p>
@@ -25,17 +25,18 @@ e.g if you want to change the schema of your data, just change the meta data on
 <h1>supported sources</h1>
 <ul>
 <li>inlong-tubemq</li>
+<li>pulsar</li>
 </ul>
 <h1>supported storages</h1>
 <ul>
 <li>clickhouse</li>
 <li>hive (Currently we just support parquet file format)</li>
 </ul>
-<p>#limitations
-Currently, we just support extracting specified fields in the stage of <strong>Transform</strong>.</p>
+<h1>limitations</h1>
+<p>Currently, we just support extracting specified fields in the stage of <strong>Transform</strong>.</p>
 <h1>future plans</h1>
 <h2>More kinds of source systems</h2>
-<p>pulsar, kafka and etc</p>
+<p>kafka and etc</p>
 <h2>More kinds of storage systems</h2>
 <p>Hbase, Elastic Search, and etc</p>
 <h2>More kinds of file format in hive sink</h2>
diff --git a/en-us/docs/modules/sort/introduction.json b/en-us/docs/modules/sort/introduction.json
index 9518092..eb4d374 100644
--- a/en-us/docs/modules/sort/introduction.json
+++ b/en-us/docs/modules/sort/introduction.json
@@ -1,6 +1,6 @@
 {
   "filename": "introduction.md",
-  "__html": "<h1>overview</h1>\n<p>Inlong-sort is used to extract data from different source systems, then transforms the data and finally loads the data into diffrent storage systems.\nInlong-sort is simply an Flink application, and relys on Inlong-manager to manage meta data(such as the source informations and storage informations)</p>\n<p>#features</p>\n<h2>multi-tenancy</h2>\n<p>Inlong-sort is an multi-tenancy system, which means you can extract data from different sources(these sour [...]
+  "__html": "<h1>overview</h1>\n<p>Inlong-sort is used to extract data from different source systems, then transforms the data and finally loads the data into diffrent storage systems.\nInlong-sort is simply an Flink application, and relys on Inlong-manager to manage meta data(such as the source informations and storage informations)</p>\n<h1>features</h1>\n<h2>multi-tenancy</h2>\n<p>Inlong-sort is an multi-tenancy system, which means you can extract data from different sources(these sou [...]
   "link": "/en-us/docs/modules/sort/introduction.html",
   "meta": {
     "Introduction - Apache InLong-sort": ""
diff --git a/en-us/docs/modules/sort/introduction.md b/en-us/docs/modules/sort/introduction.md
index a59e24f..948af31 100644
--- a/en-us/docs/modules/sort/introduction.md
+++ b/en-us/docs/modules/sort/introduction.md
@@ -6,7 +6,7 @@ Introduction - Apache InLong-sort
 Inlong-sort is used to extract data from different source systems, then transforms the data and finally loads the data into diffrent storage systems.
 Inlong-sort is simply an Flink application, and relys on Inlong-manager to manage meta data(such as the source informations and storage informations)
 
-#features
+# features
 ## multi-tenancy
 Inlong-sort is an multi-tenancy system, which means you can extract data from different sources(these sources must be of the same source type) and load data into different sinks(these sinks must be of the same storage type).
 e.g. you can extract data form different topics of inlong-tubemq and the load them to different hive clusters.
@@ -17,17 +17,18 @@ e.g if you want to change the schema of your data, just change the meta data on
 
 # supported sources
 - inlong-tubemq
+- pulsar
 
 # supported storages
 - clickhouse
 - hive (Currently we just support parquet file format)
 
-#limitations
+# limitations
 Currently, we just support extracting specified fields in the stage of **Transform**.
 
 # future plans
 ## More kinds of source systems
-pulsar, kafka and etc
+kafka and etc
 
 ## More kinds of storage systems
 Hbase, Elastic Search, and etc
diff --git a/en-us/docs/modules/sort/quick_start.html b/en-us/docs/modules/sort/quick_start.html
index aa5eb7d..9136374 100644
--- a/en-us/docs/modules/sort/quick_start.html
+++ b/en-us/docs/modules/sort/quick_start.html
@@ -30,10 +30,10 @@ you need to set up flink environment.</p>
 <p>Notice:</p>
 <ul>
 <li>
-<p><code>-c org.apache.inlong.sort.flink.Entrance</code> 表示main class name</p>
+<p><code>-c org.apache.inlong.sort.flink.Entrance</code> is the main class name</p>
 </li>
 <li>
-<p><code>inlong-sort-core-1.0-SNAPSHOT.jar</code> 为编译阶段产出的jar包</p>
+<p><code>inlong-sort-core-1.0-SNAPSHOT.jar</code> is the compiled jar</p>
 </li>
 </ul>
 <h2>Necessary configurations</h2>
@@ -41,7 +41,7 @@ you need to set up flink environment.</p>
 <li><code>--cluster-id</code> which is used to represent a specified inlong-sort application</li>
 <li><code>--zookeeper.quorum</code> zk quorum</li>
 <li><code>--zookeeper.path.root</code> zk root path</li>
-<li><code>--source.type</code> source of the application, currently only &quot;tubemq&quot; is supported</li>
+<li><code>--source.type</code> source of the application, currently &quot;tubemq&quot; and &quot;pulsar&quot; are supported</li>
 <li><code>--sink.type</code> sink of the application, currently &quot;clickhouse&quot; and &quot;hive&quot; are supported</li>
 </ul>
 <p>Configurations above are necessary, you can see full configurations in</p>
@@ -81,7 +81,7 @@ you need to set up flink environment.</p>
 <td>source.type</td>
 <td>Y</td>
 <td>NA</td>
-<td>source of the application, currently only &quot;tubemq&quot; is supported</td>
+<td>source of the application, currently &quot;tubemq&quot; and &quot;pulsar&quot; are supported</td>
 </tr>
 <tr>
 <td>sink.type</td>
diff --git a/en-us/docs/modules/sort/quick_start.json b/en-us/docs/modules/sort/quick_start.json
index fcabd3e..1bda11b 100644
--- a/en-us/docs/modules/sort/quick_start.json
+++ b/en-us/docs/modules/sort/quick_start.json
@@ -1,6 +1,6 @@
 {
   "filename": "quick_start.md",
-  "__html": "<h2>Set up flink environment</h2>\n<p>Currently inlong-sort is based on flink, before you run an inlong-sort application,\nyou need to set up flink environment.</p>\n<p><a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/cluster_setup.html\" target=\"_blank\">how to set up flink environment</a></p>\n<p>Currently, inlong-sort relys on flink-1.9.3. Chose <code>flink-1.9.3-bin-scala_2.11.tgz</code> when downloading package.</p>\n<p>Once your fli [...]
+  "__html": "<h2>Set up flink environment</h2>\n<p>Currently inlong-sort is based on flink, before you run an inlong-sort application,\nyou need to set up flink environment.</p>\n<p><a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/cluster_setup.html\" target=\"_blank\">how to set up flink environment</a></p>\n<p>Currently, inlong-sort relys on flink-1.9.3. Chose <code>flink-1.9.3-bin-scala_2.11.tgz</code> when downloading package.</p>\n<p>Once your fli [...]
   "link": "/en-us/docs/modules/sort/quick_start.html",
   "meta": {
     "Quick Start - Apache InLong-sort": ""
diff --git a/en-us/docs/modules/sort/quick_start.md b/en-us/docs/modules/sort/quick_start.md
index 6205390..65add05 100644
--- a/en-us/docs/modules/sort/quick_start.md
+++ b/en-us/docs/modules/sort/quick_start.md
@@ -2,7 +2,7 @@
 Quick Start - Apache InLong-sort
 ---
 
-##  Set up flink environment
+## Set up flink environment
 Currently inlong-sort is based on flink, before you run an inlong-sort application,
 you need to set up flink environment.
 
@@ -12,10 +12,10 @@ Currently, inlong-sort relys on flink-1.9.3. Chose `flink-1.9.3-bin-scala_2.11.t
 
 Once your flink environment is set up, you can visit web ui of flink, whose address is stored in `/${your_flink_path}/conf/masters`.
 
-##  Prepare installation files
+## Prepare installation files
 All installation files at `inlong-sort` directory.
 
-##  Starting an inlong-sort application
+## Starting an inlong-sort application
 Now you can submit job to flink with the jar compiled.
 
 <a href="https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/yarn_setup.html#submit-job-to-flink" target="_blank">how to submit job to flink</a>
@@ -26,15 +26,15 @@ Example:
 
 Notice:
 
-- `-c org.apache.inlong.sort.flink.Entrance` 表示main class name
+- `-c org.apache.inlong.sort.flink.Entrance` is the main class name
 
-- `inlong-sort-core-1.0-SNAPSHOT.jar` 为编译阶段产出的jar包
+- `inlong-sort-core-1.0-SNAPSHOT.jar` is the compiled jar
 
-##  Necessary configurations
+## Necessary configurations
 - `--cluster-id ` which is used to represent a specified inlong-sort application
 - `--zookeeper.quorum` zk quorum
 - `--zookeeper.path.root` zk root path
-- `--source.type` source of the application, currently only "tubemq" is supported
+- `--source.type` source of the application, currently "tubemq" and "pulsar" are supported
 - `--sink.type` sink of the application, currently "clickhouse" and "hive" are supported
 
 Configurations above are necessary, you can see full configurations in
@@ -51,7 +51,7 @@ Configurations above are necessary, you can see full configurations in
 |cluster-id   |  Y | NA  |  used to represent a specified inlong-sort application |
 |zookeeper.quorum   | Y  | NA  | zk quorum  |
 |zookeeper.path.root   | Y  | "/inlong-sort"  |  zk root path  |
-|source.type   | Y | NA   | source of the application, currently only "tubemq" is supported  |
+|source.type   | Y | NA   | source of the application, currently "tubemq" and "pulsar" are supported  |
 |sink.type   | Y  | NA  | sink of the application, currently "clickhouse" and "hive" are supported  |
 |source.parallelism   | N  | 1  | parallelism of source  |
 |deserialization.parallelism   | N  |  1 | parallelism of deserialization  |
diff --git a/zh-cn/docs/modules/sort/introduction.html b/zh-cn/docs/modules/sort/introduction.html
index 1ec0e55..0456328 100644
--- a/zh-cn/docs/modules/sort/introduction.html
+++ b/zh-cn/docs/modules/sort/introduction.html
@@ -28,6 +28,7 @@ inlong-sort依赖inlong-manager进行系统元数据的管理,元数据依赖z
 <h1>支持的数据源</h1>
 <ul>
 <li>inlong-tubemq</li>
+<li>pulsar</li>
 </ul>
 <h1>支持的存储系统</h1>
 <ul>
@@ -38,7 +39,7 @@ inlong-sort依赖inlong-manager进行系统元数据的管理,元数据依赖z
 <p>当前inlong-sort在ETL的transform阶段,只支持简单的字段抽取功能,一些复杂功能暂不支持。</p>
 <h1>未来规划</h1>
 <h2>支持更多种类的数据源</h2>
-<p>pulsar,kafka等</p>
+<p>kafka等</p>
 <h2>支持更多种类的存储</h2>
 <p>Hbase,Elastic Search等</p>
 <h2>支持更多种写入hive的文件格式</h2>
diff --git a/zh-cn/docs/modules/sort/introduction.json b/zh-cn/docs/modules/sort/introduction.json
index 621c79e..243e47f 100644
--- a/zh-cn/docs/modules/sort/introduction.json
+++ b/zh-cn/docs/modules/sort/introduction.json
@@ -1,6 +1,6 @@
 {
   "filename": "introduction.md",
-  "__html": "<h1>简介</h1>\n<p>inlong-sort是一个基于flink的ETL系统,支持多种数据源,支持简单的字段抽取,支持多种存储系统。\ninlong-sort依赖inlong-manager进行系统元数据的管理,元数据依赖zk进行存储及同步。</p>\n<h1>特性</h1>\n<h2>多租户系统</h2>\n<p>inlong-sort支持多租户,一个inlong-sort的作业中可以包含多个同构的数据源,以及多个同构的存储系统。\n并且针对不同的数据源,可以定义不同的数据格式以及字段抽取方式。\n多租户系统依赖inlong-manager的元数据管理,用户只需要在inlong-manager的前端页面进行相应的配置,即可实现。\n举例:以tubemq为source,hive为存储为例,同一个inlong-sort的作业可以订阅多个topic的tubemq数据,并且每个topic的数据可以写入不同的hive集群。</p>\n<h2>支持热更新元数据</h2>\n<p>inlong-sort支持热更新元数据,比如更新数据源的信息,数据 
 [...]
+  "__html": "<h1>简介</h1>\n<p>inlong-sort是一个基于flink的ETL系统,支持多种数据源,支持简单的字段抽取,支持多种存储系统。\ninlong-sort依赖inlong-manager进行系统元数据的管理,元数据依赖zk进行存储及同步。</p>\n<h1>特性</h1>\n<h2>多租户系统</h2>\n<p>inlong-sort支持多租户,一个inlong-sort的作业中可以包含多个同构的数据源,以及多个同构的存储系统。\n并且针对不同的数据源,可以定义不同的数据格式以及字段抽取方式。\n多租户系统依赖inlong-manager的元数据管理,用户只需要在inlong-manager的前端页面进行相应的配置,即可实现。\n举例:以tubemq为source,hive为存储为例,同一个inlong-sort的作业可以订阅多个topic的tubemq数据,并且每个topic的数据可以写入不同的hive集群。</p>\n<h2>支持热更新元数据</h2>\n<p>inlong-sort支持热更新元数据,比如更新数据源的信息,数据 
 [...]
   "link": "/zh-cn/docs/modules/sort/introduction.html",
   "meta": {
     "介绍 - Apache InLong-sort": ""
diff --git a/zh-cn/docs/modules/sort/introduction.md b/zh-cn/docs/modules/sort/introduction.md
index 3065e40..1fe29a3 100644
--- a/zh-cn/docs/modules/sort/introduction.md
+++ b/zh-cn/docs/modules/sort/introduction.md
@@ -20,6 +20,7 @@ inlong-sort支持热更新元数据,比如更新数据源的信息,数据sch
 
 # 支持的数据源
 - inlong-tubemq
+- pulsar
 
 # 支持的存储系统
 - hive(当前只支持parquet文件格式)
@@ -30,7 +31,7 @@ inlong-sort支持热更新元数据,比如更新数据源的信息,数据sch
 
 # 未来规划
 ## 支持更多种类的数据源
-pulsar,kafka等
+kafka等
 
 
 ## 支持更多种类的存储
diff --git a/zh-cn/docs/modules/sort/quick_start.html b/zh-cn/docs/modules/sort/quick_start.html
index 997728b..7bde7ce 100644
--- a/zh-cn/docs/modules/sort/quick_start.html
+++ b/zh-cn/docs/modules/sort/quick_start.html
@@ -40,8 +40,8 @@
 <li><code>--cluster-id</code> 用来唯一标识一个inlong-sort作业</li>
 <li><code>--zookeeper.quorum</code> zk quorum</li>
 <li><code>--zookeeper.path.root</code> zk根目录</li>
-<li><code>--source.type</code> 数据源的种类, 当前仅支持&quot;tubemq&quot;</li>
-<li><code>--sink.type</code> 存储系统的种类,当前支持&quot;clickhouse&quot; 和 &quot;hive&quot;</li>
+<li><code>--source.type</code> 数据源的种类, 当前支持:&quot;tubemq&quot;、&quot;pulsar&quot;</li>
+<li><code>--sink.type</code> 存储系统的种类,当前支持:&quot;clickhouse&quot;、&quot;hive&quot;</li>
 </ul>
 <p><strong>配置示例</strong></p>
 <p><code>--cluster-id my_application --zookeeper.quorum 192.127.0.1:2181 --zookeeper.path.root /zk_root --source.type tubemq --sink.type hive</code></p>
@@ -78,13 +78,13 @@
 <td>source.type</td>
 <td>Y</td>
 <td>NA</td>
-<td>数据源的种类, 当前仅支持&quot;tubemq&quot;</td>
+<td>数据源的种类, 当前支持&quot;tubemq&quot;和&quot;pulsar&quot;</td>
 </tr>
 <tr>
 <td>sink.type</td>
 <td>Y</td>
 <td>NA</td>
-<td>存储系统的种类,当前支持&quot;clickhouse&quot;, &quot;iceberg&quot; 和 &quot;hive&quot;</td>
+<td>存储系统的种类,当前支持&quot;clickhouse&quot; 和 &quot;hive&quot;</td>
 </tr>
 <tr>
 <td>source.parallelism</td>
diff --git a/zh-cn/docs/modules/sort/quick_start.json b/zh-cn/docs/modules/sort/quick_start.json
index 6e35128..317db5d 100644
--- a/zh-cn/docs/modules/sort/quick_start.json
+++ b/zh-cn/docs/modules/sort/quick_start.json
@@ -1,6 +1,6 @@
 {
   "filename": "quick_start.md",
-  "__html": "<h2>配置flink运行环境</h2>\n<p>当前inlong-sort是基于flink的一个应用,因此运行inlong-sort应用前,需要准备好flink环境。</p>\n<p><a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/cluster_setup.html\" title=\"how to set up flink environment\">如何配置flink环境</a></p>\n<p>由于当前inlong-sort依赖的是flink1.9.3版本,因此在下载部署包时,请选择<code>flink-1.9.3-bin-scala_2.11.tgz</code></p>\n<p>flink环境配置完成后,可以通过浏览器访问flink的web ui,对应的地址是<code>/{flink部署路径}/conf/masters</code>文件中的地址</p>\n<h2>准备安装文件</h2>\n<p>安装文件在< [...]
+  "__html": "<h2>配置flink运行环境</h2>\n<p>当前inlong-sort是基于flink的一个应用,因此运行inlong-sort应用前,需要准备好flink环境。</p>\n<p><a href=\"https://ci.apache.org/projects/flink/flink-docs-release-1.9/ops/deployment/cluster_setup.html\" title=\"how to set up flink environment\">如何配置flink环境</a></p>\n<p>由于当前inlong-sort依赖的是flink1.9.3版本,因此在下载部署包时,请选择<code>flink-1.9.3-bin-scala_2.11.tgz</code></p>\n<p>flink环境配置完成后,可以通过浏览器访问flink的web ui,对应的地址是<code>/{flink部署路径}/conf/masters</code>文件中的地址</p>\n<h2>准备安装文件</h2>\n<p>安装文件在< [...]
   "link": "/zh-cn/docs/modules/sort/quick_start.html",
   "meta": {
     "快速开始 - Apache InLong-sort": ""
diff --git a/zh-cn/docs/modules/sort/quick_start.md b/zh-cn/docs/modules/sort/quick_start.md
index bbf267a..7f830df 100644
--- a/zh-cn/docs/modules/sort/quick_start.md
+++ b/zh-cn/docs/modules/sort/quick_start.md
@@ -33,8 +33,8 @@ flink环境配置完成后,可以通过浏览器访问flink的web ui,对应
 - `--cluster-id ` 用来唯一标识一个inlong-sort作业
 - `--zookeeper.quorum` zk quorum
 - `--zookeeper.path.root` zk根目录
-- `--source.type` 数据源的种类, 当前仅支持"tubemq"
-- `--sink.type` 存储系统的种类,当前支持"clickhouse" 和 "hive"
+- `--source.type` 数据源的种类, 当前支持:"tubemq"、"pulsar"
+- `--sink.type` 存储系统的种类,当前支持:"clickhouse"、"hive"
 
 **配置示例**
 
@@ -46,8 +46,8 @@ flink环境配置完成后,可以通过浏览器访问flink的web ui,对应
 |cluster-id   | Y | NA  |  用来唯一标识一个inlong-sort作业 |
 |zookeeper.quorum   | Y  | NA  | zk quorum  |
 |zookeeper.path.root   | Y  | "/inlong-sort"  |  zk根目录  |
-|source.type   | Y | NA | 数据源的种类, 当前仅支持"tubemq"  |
-|sink.type   | Y  | NA  | 存储系统的种类,当前支持"clickhouse", "iceberg" 和 "hive" |
+|source.type   | Y | NA | 数据源的种类, 当前支持"tubemq"和"pulsar"  |
+|sink.type   | Y  | NA  | 存储系统的种类,当前支持"clickhouse" 和 "hive" |
 |source.parallelism   | N  | 1  | source的并行度  |
 |deserialization.parallelism | N | 1 | deserialization的并行度  |
 |sink.parallelism   | N  | 1  | sink的并行度 |