Skip to content
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

[Optimization] Fix typo: JobManger -> JobManager #3054

Merged
merged 8 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dinky-core/src/main/java/org/dinky/api/FlinkAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private JsonNode get(String route) {
}

/**
* get请求获取jobManger/TaskManager的日志 (结果为字符串并不是json格式)
* get请求获取jobManager/TaskManager的日志 (结果为字符串并不是json格式)
*
* @param route route
* @return {@link String}
Expand Down
6 changes: 3 additions & 3 deletions dinky-web/src/locales/en-US/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,8 @@ export default {
'rc.ci.killConfirm':
'Are you sure to stop this Flink Cluster instance? Please note that after stopping, it will not be recovered! The associated task will affect, please be careful!',
'rc.ci.kill': 'Stop Flink Cluster Instance',
'rc.ci.jma': 'JobManger Address',
'rc.ci.jmha': 'JobManger HA Address',
'rc.ci.jma': 'JobManager Address',
'rc.ci.jmha': 'JobManager HA Address',
'rc.ci.jmha.tips':
'Add the RestApi address of the JobManager of the Flink cluster. In HA mode, the addresses are separated by commas, for example',
'rc.ci.jmha.validate.port': 'Does not meet the rules! Port number range [0-65535]',
Expand All @@ -811,7 +811,7 @@ export default {
'rc.ci.modify': 'Modify cluster Instance',
'rc.ci.name': 'Name',
'rc.ci.autoRegisterCannotModify':
'Automatically registered instances can only modify the `JobManger high-availability address` attribute, and others cannot be modified!',
'Automatically registered instances can only modify the `JobManager high-availability address` attribute, and others cannot be modified!',
'rc.ci.namePlaceholder': 'Please enter a name!',
'rc.ci.recycle': 'Recycle Flink Cluster Instances',
'rc.ci.recycleConfirm':
Expand Down
6 changes: 3 additions & 3 deletions dinky-web/src/locales/zh-CN/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -766,8 +766,8 @@ export default {
'确定停止该 Flink 实例吗? 请注意,停止后将无法恢复!关联的任务将会收到影响,请谨慎操作!',
'rc.ci.heartbeat': '心跳检测',
'rc.ci.kill': '停止 Flink 实例',
'rc.ci.jma': 'JobManger 地址',
'rc.ci.jmha': 'JobManger 高可用地址',
'rc.ci.jma': 'JobManager 地址',
'rc.ci.jmha': 'JobManager 高可用地址',
'rc.ci.jmha.tips':
'添加 Flink 集群的 JobManager 的 RestApi 地址。当 HA 模式时,地址间用英文逗号分隔,例如:192.168.123.101',
'rc.ci.jmha.validate.port': '不符合规则! 端口号区间[0-65535]',
Expand All @@ -777,7 +777,7 @@ export default {
'rc.ci.modify': '修改集群',
'rc.ci.name': '实例名称',
'rc.ci.autoRegisterCannotModify':
'自动注册的实例仅能修改 `JobManger高可用地址` 属性,其他无法修改!',
'自动注册的实例仅能修改 `JobManager高可用地址` 属性,其他无法修改!',
'rc.ci.namePlaceholder': '请输入名称!',
'rc.ci.recycle': '回收 Flink 实例',
'rc.ci.recycleConfirm': '确定回收所有自动创建且过期的 Flink 实例吗?',
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/user_guide/register_center/cluster_manage.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ title: 集群
| 集群名称 | 集群名称, 用于区分不同集群 | 是 | 无 | flink-session |
| 集群别名 | 集群别名, 用于区分不同集群, 如不填默认同集群名称 | 否 | 同集群名称 | flink-session |
| 集群类型 | 集群类型, 目前支持 Local, Standalone, Yarn Session, Kubernetes Session | 是 | 无 | Standalone |
| JobManger 高可用地址 | 添加 Flink 集群的 JobManager 的 RestApi 地址。当 HA 模式时,地址间用英文逗号分隔,例如:192.168.123.101 | 是 | 无 |
| JobManager 高可用地址 | 添加 Flink 集群的 JobManager 的 RestApi 地址。当 HA 模式时,地址间用英文逗号分隔,例如:192.168.123.101 | 是 | 无 |
| 备注 | 备注, 用于备注集群信息 | 否 | 无 | flink-session |

## 集群配置
Expand Down
Loading