forked from apache/dolphinscheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
【Master】【Bug】Fix a bug, When the worker service offline, workerNodeIn…
…fo cache in master cannot delete the offline worker (apache#15459) * remove work from workerNodeInfo when work server down * modify log msg Co-authored-by: xiangzihao <[email protected]> * add unit test * add unit test * modify the code style * add license header --------- Co-authored-by: xiangzihao <[email protected]> Co-authored-by: Rick Cheng <[email protected]>
- Loading branch information
1 parent
feb3023
commit 4314147
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
...c/test/java/org/apache/dolphinscheduler/server/master/registry/ServerNodeManagerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.dolphinscheduler.server.master.registry; | ||
|
||
import org.apache.dolphinscheduler.common.model.WorkerHeartBeat; | ||
import org.apache.dolphinscheduler.common.utils.JSONUtils; | ||
import org.apache.dolphinscheduler.dao.AlertDao; | ||
import org.apache.dolphinscheduler.registry.api.Event; | ||
import org.apache.dolphinscheduler.registry.api.RegistryClient; | ||
import org.apache.dolphinscheduler.service.alert.ListenerEventAlertManager; | ||
|
||
import java.lang.reflect.InvocationTargetException; | ||
import java.lang.reflect.Method; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.mockito.InjectMocks; | ||
import org.mockito.Mock; | ||
import org.mockito.Mockito; | ||
import org.mockito.MockitoAnnotations; | ||
|
||
public class ServerNodeManagerTest { | ||
|
||
@Mock | ||
RegistryClient registryClient; | ||
|
||
@Mock | ||
AlertDao alertDao; | ||
|
||
@Mock | ||
ListenerEventAlertManager listenerEventAlertManager; | ||
|
||
@InjectMocks | ||
ServerNodeManager serverNodeManager; | ||
|
||
@Test | ||
public void updateWorkerNodesTest() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { | ||
|
||
MockitoAnnotations.initMocks(this); | ||
HashMap<String, String> workerNodeMaps = new HashMap<>(); | ||
workerNodeMaps.put("worker-node-1", JSONUtils.toJsonString(new WorkerHeartBeat())); | ||
workerNodeMaps.put("worker-node-2", JSONUtils.toJsonString(new WorkerHeartBeat())); | ||
|
||
Mockito.when(registryClient.getServerMaps(Mockito.any())).thenReturn(workerNodeMaps); | ||
Mockito.when(registryClient.isWorkerPath(Mockito.anyString())).thenReturn(true); | ||
|
||
// two worker server running (worker-node-1, worker-node-2) | ||
Method updateWorkerNodes = serverNodeManager.getClass().getDeclaredMethod("updateWorkerNodes"); | ||
updateWorkerNodes.setAccessible(true); | ||
updateWorkerNodes.invoke(serverNodeManager); | ||
|
||
Map<String, WorkerHeartBeat> workerNodeInfo = serverNodeManager.getWorkerNodeInfo(); | ||
Assertions.assertTrue(workerNodeInfo.containsKey("worker-node-1")); | ||
Assertions.assertTrue(workerNodeInfo.containsKey("worker-node-2")); | ||
|
||
// receive remove event when worker-node-1 server stop | ||
ServerNodeManager.WorkerDataListener workerDataListener = serverNodeManager.new WorkerDataListener(); | ||
Event event = new Event("", "/nodes/worker/worker-node-1", "", Event.Type.REMOVE); | ||
workerDataListener.notify(event); | ||
|
||
// check worker-node-1 not exist in cache | ||
workerNodeInfo = serverNodeManager.getWorkerNodeInfo(); | ||
Assertions.assertFalse(workerNodeInfo.containsKey("worker-node-1")); | ||
Assertions.assertTrue(workerNodeInfo.containsKey("worker-node-2")); | ||
|
||
// worker-node-1 restart, getServerMaps(RegistryNodeType.WORKER) method return two worker | ||
updateWorkerNodes.invoke(serverNodeManager); | ||
|
||
// check cache | ||
workerNodeInfo = serverNodeManager.getWorkerNodeInfo(); | ||
Assertions.assertTrue(workerNodeInfo.containsKey("worker-node-1")); | ||
Assertions.assertTrue(workerNodeInfo.containsKey("worker-node-2")); | ||
|
||
} | ||
|
||
} |