-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: 作业平台文档建设 #3119 #3138
docs: 作业平台文档建设 #3119 #3138
Conversation
jsonwan
commented
Jul 19, 2024
- 支持根据ESB接口文档自动生成接口文档README.md;
- 添加部署与运维文档;
- 添加问题排查与处理文档。
1. 支持根据ESB接口文档自动生成接口文档README.md
1. 添加部署与运维文档。
1. 添加问题排查与处理文档。
1. 去除调试生成的多余README.md文档。
support-files/tools/docs/README.tpl
Outdated
@@ -0,0 +1,6 @@ | |||
## 作业平台 V3 API 简介 | |||
|
|||
**作业平台(Job)是一套基于蓝鲸智云管控平台 Agent 管道之上的基础操作平台,具备大并发处理能力;除了支持脚本执行、文件拉取/分发、定时任务等一系列可实现的基础运维场景以外,还运用流程化的理念很好的将零碎的单个任务组装成一个作业流程;而每个任务都可做为一个原子节点,提供给其它系统和平台调度,实现调度自动化。** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
“Agent管道”,好像并没有这种说法。可以改成“命令管道”与“文件管道"。
”具备大并发处理能力“在这里有点突兀,删除?
感觉这段描述有点拗口,需要更清晰、简练的表述?
比如:
作业平台(Job)是一套基于蓝鲸管控平台”命令管道“、“文件管道”之上的基础操作平台,提供了运维过程中的“命令执行”与“文件分发”两大核心能力。。。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
最早继承了老版本文档中的描述,已修改。
# 常量定义 | ||
apidoc_dir = os.path.join(script_dir, "../../../docs/apidoc") | ||
docs_dir = os.path.join(apidoc_dir, "esb/jobv3-confapis/apidocs/zh_hans") | ||
docs_link_prefix = "https://github.com/TencentBlueKing/bk-job/blob/3.9.x/docs/apidoc/esb/jobv3-confapis/apidocs/zh_hans/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个可以不写死,用的时候传入?避免每个版本都需要修改
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已修改
docs/overview/operation.md
Outdated
**监控平台**:作业平台通过Prometheus协议暴露出指标数据,会被其采集器采集,便于在监控平台上配置指标面板与告警,此外,作业平台通过OTEL协议调用其接口向其上报调用链APM数据,便于在监控平台上进行调用链观测与分析; | ||
**消息通知中心**:作业平台调用其接口获取通知与公告信息并在页面进行展示。 | ||
|
||
由于依赖众多,仅部署作业平台本身是无法正常工作的,需要首先部署其依赖的底层平台,因此请参考[蓝鲸文档中心](https://bk.tencent.com/docs/)部署维护板块的基础套餐相关内容进行部署。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
版块
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已修改
docs/overview/operation.md
Outdated
在成功部署作业平台后,随着系统运行时长增加,使用数据随之增加,会导致作业平台占用的资源增加,出于成本与性能考虑,需要对资源占用进行管理,必要时按需清理部分过期数据。 | ||
#### (1)MySQL数据 | ||
作业平台的不同功能模块使用不同的数据库存储数据,其中需要重点关注的是任务执行引擎使用的job_execute库,该库存储了任务执行过程中产生的流水数据,数据量随着任务量的增长而增长,通常在平台运行一段时间后,job_execute库会成为占用存储空间最多的库,需要考虑数据的归档与清理。 | ||
作业平台自身支持了任务流水数据的自动归档与清理机制,可通过helm chart values中的backupConfig.archive下的属性进行配置,默认的归档策略为:不备份数据,直接删除30天前的过期数据。如果有备份过期数据的需求,可以将策略配置为先备份数据再删除。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
关于归档策略的说明不准确。默认策略是不开启归档,用户需要的要需要通过配置 enable 来开启。这里的表述容易让人误以为是默认开启的
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已修改
1. 处理Review意见; 2. 添加部署与运维英文文档。
1. 添加首页文档链接,清理已过期的二进制安装部署文档。
1. 完善API文档简介,精简接口描述。