You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/05/19 08:41:42 UTC

[dolphinscheduler] branch dev updated: [doc] Remove flink call docs (#10122)

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

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 94c515555e [doc] Remove flink call docs (#10122)
94c515555e is described below

commit 94c515555e90e591acd013aa55d05982ff62efb1
Author: Jiajie Zhong <zh...@hotmail.com>
AuthorDate: Thu May 19 16:41:33 2022 +0800

    [doc] Remove flink call docs (#10122)
    
    Flink call docs is only teld users
    how to use flink task in dolphinscheduler
    and it should be including in task/flink
---
 docs/configs/docsdev.js             |   8 --
 docs/docs/en/guide/flink-call.md    | 123 -----------------------------
 docs/docs/zh/guide/flink-call.md    | 150 ------------------------------------
 docs/img/api-documentation-en.png   | Bin 77247 -> 0 bytes
 docs/img/api-documentation.png      | Bin 61869 -> 0 bytes
 docs/img/api/create_queue.png       | Bin 74021 -> 0 bytes
 docs/img/api/create_tenant.png      | Bin 82987 -> 0 bytes
 docs/img/api/create_user.png        | Bin 92945 -> 0 bytes
 docs/img/api/create_workflow1.png   | Bin 55287 -> 0 bytes
 docs/img/api/create_workflow2.png   | Bin 96320 -> 0 bytes
 docs/img/api/create_workflow3.png   | Bin 214012 -> 0 bytes
 docs/img/api/create_workflow4.png   | Bin 69490 -> 0 bytes
 docs/img/api/execution_result.png   | Bin 75120 -> 0 bytes
 docs/img/api/log.png                | Bin 154299 -> 0 bytes
 docs/img/api/upload_resource.png    | Bin 68267 -> 0 bytes
 docs/img/api/user_authorization.png | Bin 38817 -> 0 bytes
 docs/img/api/user_login.png         | Bin 184975 -> 0 bytes
 docs/img/create-token-en1.png       | Bin 8779 -> 0 bytes
 docs/img/create-token.png           | Bin 7699 -> 0 bytes
 docs/img/test-api.png               | Bin 40028 -> 0 bytes
 docs/img/token-management-en.png    | Bin 35282 -> 0 bytes
 docs/img/token-management.png       | Bin 34871 -> 0 bytes
 22 files changed, 281 deletions(-)

diff --git a/docs/configs/docsdev.js b/docs/configs/docsdev.js
index c9411de031..0f73e3a0bd 100644
--- a/docs/configs/docsdev.js
+++ b/docs/configs/docsdev.js
@@ -288,10 +288,6 @@ export default {
                         title: 'Data Quality',
                         link: '/en-us/docs/dev/user_doc/guide/data-quality.html',
                     },
-                    {
-                        title: 'Flink',
-                        link: '/en-us/docs/dev/user_doc/guide/flink-call.html',
-                    },
                     {
                         title: 'Upgrade',
                         link: '/en-us/docs/dev/user_doc/guide/upgrade.html',
@@ -656,10 +652,6 @@ export default {
                         title: '数据质量',
                         link: '/zh-cn/docs/dev/user_doc/guide/data-quality.html',
                     },
-                    {
-                        title: 'Flink调用',
-                        link: '/zh-cn/docs/dev/user_doc/guide/flink-call.html',
-                    },
                     {
                         title: '升级',
                         link: '/zh-cn/docs/dev/user_doc/guide/upgrade.html',
diff --git a/docs/docs/en/guide/flink-call.md b/docs/docs/en/guide/flink-call.md
deleted file mode 100644
index 5f71b69e9a..0000000000
--- a/docs/docs/en/guide/flink-call.md
+++ /dev/null
@@ -1,123 +0,0 @@
-# Flink Calls Operating Steps
-
-## Create a Queue
-
-1. Log in to the scheduling system, click `Security`, then click `Queue manage` on the left, and click `Create queue` to create a queue.
-2. Fill in the name and value of the queue, and click "Submit" 
-
-<p align="center">
-   <img src="/img/api/create_queue.png" width="80%" />
- </p>
-
-## Create a Tenant 
-
-```
-1. The tenant corresponds to a Linux user, which the user worker uses to submit jobs. If the Linux OS environment does not have this user, the worker will create this user when executing the script.
-2. Both the tenant and the tenant code are unique and cannot be repeated, just like a person only has one name and one ID number.  
-3. After creating a tenant, there will be a folder in the HDFS relevant directory.  
-```
-
-<p align="center">
-   <img src="/img/api/create_tenant.png" width="80%" />
- </p>
-
-## Create a User
-
-<p align="center">
-   <img src="/img/api/create_user.png" width="80%" />
- </p>
-
-## Create a Token
-
-1. Log in to the scheduling system, click `Security`, then click `Token manage` on the left, and click `Create token` to create a token.
-
-<p align="center">
-   <img src="/img/token-management-en.png" width="80%" />
- </p>
-
-
-2. Select the `Expiration time` (token validity time), select `User` (choose the specified user to perform the API operation), click "Generate token", copy the `Token` string, and click "Submit".
-
-<p align="center">
-   <img src="/img/create-token-en1.png" width="80%" />
- </p>
-
-## Token Usage
-
-1. Open the API documentation page
-
-   > Address:http://{api server ip}:12345/dolphinscheduler/doc.html?language=en_US&lang=en
-
-<p align="center">
-   <img src="/img/api-documentation-en.png" width="80%" />
- </p>
-
-
-2. Select a test API, the API selected for this test is `queryAllProjectList`
-
-   > projects/query-project-list
-
-3. Open `Postman`, fill in the API address, and enter the `Token` in `Headers`, and then send the request to view the result:
-
-   ```
-   token: The Token just generated
-   ```
-
-<p align="center">
-   <img src="/img/test-api.png" width="80%" />
- </p>  
-
-## User Authorization
-
-<p align="center">
-   <img src="/img/api/user_authorization.png" width="80%" />
- </p>
-
-## User Login
-
-```
-http://192.168.1.163:12345/dolphinscheduler/ui/#/monitor/servers/master
-```
-
-<p align="center">
-   <img src="/img/api/user_login.png" width="80%" />
- </p>
-
-## Upload the Resource
-
-<p align="center">
-   <img src="/img/api/upload_resource.png" width="80%" />
- </p>
-
-## Create a Workflow
-
-<p align="center">
-   <img src="/img/api/create_workflow1.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow2.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow3.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow4.png" width="80%" />
- </p>
-
-## View the Execution Result
-
-<p align="center">
-   <img src="/img/api/execution_result.png" width="80%" />
- </p>
-
-## View Log
-
-<p align="center">
-   <img src="/img/api/log.png" width="80%" />
- </p>
\ No newline at end of file
diff --git a/docs/docs/zh/guide/flink-call.md b/docs/docs/zh/guide/flink-call.md
deleted file mode 100644
index 547efa064f..0000000000
--- a/docs/docs/zh/guide/flink-call.md
+++ /dev/null
@@ -1,150 +0,0 @@
-# 调用 flink 操作步骤
-
-### 创建队列
-
-1. 登录调度系统,点击 "安全中心",再点击左侧的 "队列管理",点击 "队列管理" 创建队列
-2. 填写队列名称和队列值,然后点击 "提交" 
-
-<p align="center">
-   <img src="/img/api/create_queue.png" width="80%" />
- </p>
-
-
-
-
-### 创建租户
-
-```
-1.租户对应的是 linux 用户, 用户 worker 提交作业所使用的的用户, 如果 linux 没有这个用户, worker 会在执行脚本的时候创建这个用户
-2.租户和租户编码都是唯一不能重复,好比一个人有名字有身份证号。
-3.创建完租户会在 hdfs 对应的目录上有相关的文件夹。
-```
-
-<p align="center">
-   <img src="/img/api/create_tenant.png" width="80%" />
- </p>
-
-
-
-
-### 创建用户
-
-<p align="center">
-   <img src="/img/api/create_user.png" width="80%" />
- </p>
-
-
-
-
-### 创建 Token
-
-1. 登录调度系统,点击 "安全中心",再点击左侧的 "令牌管理",点击 "令牌管理" 创建令牌
-
-<p align="center">
-   <img src="/img/token-management.png" width="80%" />
- </p>
-
-
-2. 选择 "失效时间" (Token有效期),选择 "用户" (以指定的用户执行接口操作),点击 "生成令牌" ,拷贝 Token 字符串,然后点击 "提交" 
-
-<p align="center">
-   <img src="/img/create-token.png" width="80%" />
- </p>
-
-
-### 使用 Token
-
-1. 打开 API文档页面
-
-   > 地址:http://{api server ip}:12345/dolphinscheduler/doc.html?language=zh_CN&lang=cn
-
-<p align="center">
-   <img src="/img/api-documentation.png" width="80%" />
- </p>
-
-
-2. 选一个测试的接口,本次测试选取的接口是:查询所有项目
-
-   > projects/query-project-list
-
-3. 打开 Postman,填写接口地址,并在 Headers 中填写 Token,发送请求后即可查看结果
-
-   ```
-   token: 刚刚生成的 Token
-   ```
-
-<p align="center">
-   <img src="/img/test-api.png" width="80%" />
- </p>
-
-
-
-
-### 用户授权
-
-<p align="center">
-   <img src="/img/api/user_authorization.png" width="80%" />
- </p>
-
-
-### 用户登录
-
-```
-http://192.168.1.163:12345/dolphinscheduler/ui/#/monitor/servers/master
-```
-
-<p align="center">
-   <img src="/img/api/user_login.png" width="80%" />
- </p>
-
-
-
-
-### 资源上传
-
-<p align="center">
-   <img src="/img/api/upload_resource.png" width="80%" />
- </p>
-
-
-
-
-### 创建工作流
-
-<p align="center">
-   <img src="/img/api/create_workflow1.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow2.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow3.png" width="80%" />
- </p>
-
-
-<p align="center">
-   <img src="/img/api/create_workflow4.png" width="80%" />
- </p>
-
-
-
-
-### 查看执行结果
-
-<p align="center">
-   <img src="/img/api/execution_result.png" width="80%" />
- </p>
-
-
-
-
-### 查看日志结果
-
-<p align="center">
-   <img src="/img/api/log.png" width="80%" />
- </p>
-
diff --git a/docs/img/api-documentation-en.png b/docs/img/api-documentation-en.png
deleted file mode 100644
index 81f6b78dc8..0000000000
Binary files a/docs/img/api-documentation-en.png and /dev/null differ
diff --git a/docs/img/api-documentation.png b/docs/img/api-documentation.png
deleted file mode 100644
index 97dc027b60..0000000000
Binary files a/docs/img/api-documentation.png and /dev/null differ
diff --git a/docs/img/api/create_queue.png b/docs/img/api/create_queue.png
deleted file mode 100644
index 1ad1a0dca2..0000000000
Binary files a/docs/img/api/create_queue.png and /dev/null differ
diff --git a/docs/img/api/create_tenant.png b/docs/img/api/create_tenant.png
deleted file mode 100644
index 8cfda08969..0000000000
Binary files a/docs/img/api/create_tenant.png and /dev/null differ
diff --git a/docs/img/api/create_user.png b/docs/img/api/create_user.png
deleted file mode 100644
index 2bbd095006..0000000000
Binary files a/docs/img/api/create_user.png and /dev/null differ
diff --git a/docs/img/api/create_workflow1.png b/docs/img/api/create_workflow1.png
deleted file mode 100644
index 479c6cdccc..0000000000
Binary files a/docs/img/api/create_workflow1.png and /dev/null differ
diff --git a/docs/img/api/create_workflow2.png b/docs/img/api/create_workflow2.png
deleted file mode 100644
index d87384f51e..0000000000
Binary files a/docs/img/api/create_workflow2.png and /dev/null differ
diff --git a/docs/img/api/create_workflow3.png b/docs/img/api/create_workflow3.png
deleted file mode 100644
index c721d7e907..0000000000
Binary files a/docs/img/api/create_workflow3.png and /dev/null differ
diff --git a/docs/img/api/create_workflow4.png b/docs/img/api/create_workflow4.png
deleted file mode 100644
index 3c7051f535..0000000000
Binary files a/docs/img/api/create_workflow4.png and /dev/null differ
diff --git a/docs/img/api/execution_result.png b/docs/img/api/execution_result.png
deleted file mode 100644
index b93556c111..0000000000
Binary files a/docs/img/api/execution_result.png and /dev/null differ
diff --git a/docs/img/api/log.png b/docs/img/api/log.png
deleted file mode 100644
index 0807079f33..0000000000
Binary files a/docs/img/api/log.png and /dev/null differ
diff --git a/docs/img/api/upload_resource.png b/docs/img/api/upload_resource.png
deleted file mode 100644
index 357211ea31..0000000000
Binary files a/docs/img/api/upload_resource.png and /dev/null differ
diff --git a/docs/img/api/user_authorization.png b/docs/img/api/user_authorization.png
deleted file mode 100644
index 6bcb8f3618..0000000000
Binary files a/docs/img/api/user_authorization.png and /dev/null differ
diff --git a/docs/img/api/user_login.png b/docs/img/api/user_login.png
deleted file mode 100644
index b663d1faf1..0000000000
Binary files a/docs/img/api/user_login.png and /dev/null differ
diff --git a/docs/img/create-token-en1.png b/docs/img/create-token-en1.png
deleted file mode 100644
index 7542464dc5..0000000000
Binary files a/docs/img/create-token-en1.png and /dev/null differ
diff --git a/docs/img/create-token.png b/docs/img/create-token.png
deleted file mode 100644
index 987a591e64..0000000000
Binary files a/docs/img/create-token.png and /dev/null differ
diff --git a/docs/img/test-api.png b/docs/img/test-api.png
deleted file mode 100644
index 71ae6f4c3e..0000000000
Binary files a/docs/img/test-api.png and /dev/null differ
diff --git a/docs/img/token-management-en.png b/docs/img/token-management-en.png
deleted file mode 100644
index 6d31e5ffe9..0000000000
Binary files a/docs/img/token-management-en.png and /dev/null differ
diff --git a/docs/img/token-management.png b/docs/img/token-management.png
deleted file mode 100644
index d3de6a9e38..0000000000
Binary files a/docs/img/token-management.png and /dev/null differ