Skip to content

启动前先检查本机与注册中心的时间误差秒数是否在允许范围 #792

@tried-code

Description

@tried-code

请问检查时间差的作用是什么
private void checkExecutor() throws Exception {
// 启动时检查本机与注册中心的时间误差秒数是否在允许范围
String executorNode = SaturnExecutorsNode.EXECUTORS_ROOT + "/" + executorName;
try {
long timeDiff = Math.abs(System.currentTimeMillis() - coordinatorRegistryCenter
.getRegistryCenterTime(executorNode + "/systemTime/current"));
int maxTimeDiffSeconds = 60;
if (timeDiff > maxTimeDiffSeconds * 1000L) {
Long timeDiffSeconds = Long.valueOf(timeDiff / 1000);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions