Browse Source
* let quartz use the same datasource * move master/worker config from dao.properties to each config add master/worker registry testpull/3/MERGE
Tboy
5 years ago
committed by
gaojun2048
7 changed files with 345 additions and 52 deletions
@ -0,0 +1,73 @@ |
|||||||
|
/* |
||||||
|
* 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.remote.utils.Constants; |
||||||
|
import org.apache.dolphinscheduler.server.master.config.MasterConfig; |
||||||
|
import org.apache.dolphinscheduler.server.registry.ZookeeperRegistryCenter; |
||||||
|
import org.apache.dolphinscheduler.server.zk.SpringZKServer; |
||||||
|
import org.apache.dolphinscheduler.service.zk.ZookeeperCachedOperator; |
||||||
|
import org.apache.dolphinscheduler.service.zk.ZookeeperConfig; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.test.context.ContextConfiguration; |
||||||
|
import org.springframework.test.context.junit4.SpringRunner; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* master registry test |
||||||
|
*/ |
||||||
|
@RunWith(SpringRunner.class) |
||||||
|
@ContextConfiguration(classes={SpringZKServer.class, MasterRegistry.class,ZookeeperRegistryCenter.class, MasterConfig.class, ZookeeperCachedOperator.class, ZookeeperConfig.class}) |
||||||
|
public class MasterRegistryTest { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private MasterRegistry masterRegistry; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private ZookeeperRegistryCenter zookeeperRegistryCenter; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private MasterConfig masterConfig; |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testRegistry() throws InterruptedException { |
||||||
|
masterRegistry.registry(); |
||||||
|
String masterPath = zookeeperRegistryCenter.getMasterPath(); |
||||||
|
Assert.assertEquals(ZookeeperRegistryCenter.MASTER_PATH, masterPath); |
||||||
|
TimeUnit.SECONDS.sleep(masterConfig.getMasterHeartbeatInterval() + 2); //wait heartbeat info write into zk node
|
||||||
|
String masterNodePath = masterPath + "/" + (Constants.LOCAL_ADDRESS + ":" + masterConfig.getListenPort()); |
||||||
|
String heartbeat = zookeeperRegistryCenter.getZookeeperCachedOperator().get(masterNodePath); |
||||||
|
Assert.assertEquals(5, heartbeat.split(",").length); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testUnRegistry() throws InterruptedException { |
||||||
|
masterRegistry.registry(); |
||||||
|
TimeUnit.SECONDS.sleep(masterConfig.getMasterHeartbeatInterval() + 2); //wait heartbeat info write into zk node
|
||||||
|
masterRegistry.unRegistry(); |
||||||
|
String masterPath = zookeeperRegistryCenter.getMasterPath(); |
||||||
|
List<String> childrenKeys = zookeeperRegistryCenter.getZookeeperCachedOperator().getChildrenKeys(masterPath); |
||||||
|
Assert.assertTrue(childrenKeys.isEmpty()); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,77 @@ |
|||||||
|
/* |
||||||
|
* 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.worker.registry; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.remote.utils.Constants; |
||||||
|
import org.apache.dolphinscheduler.server.registry.ZookeeperRegistryCenter; |
||||||
|
import org.apache.dolphinscheduler.server.worker.config.WorkerConfig; |
||||||
|
import org.apache.dolphinscheduler.server.zk.SpringZKServer; |
||||||
|
import org.apache.dolphinscheduler.service.zk.ZookeeperCachedOperator; |
||||||
|
import org.apache.dolphinscheduler.service.zk.ZookeeperConfig; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.test.context.ContextConfiguration; |
||||||
|
import org.springframework.test.context.junit4.SpringRunner; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
import static org.apache.dolphinscheduler.common.Constants.DEFAULT_WORKER_GROUP; |
||||||
|
|
||||||
|
/** |
||||||
|
* worker registry test |
||||||
|
*/ |
||||||
|
@RunWith(SpringRunner.class) |
||||||
|
@ContextConfiguration(classes={SpringZKServer.class, WorkerRegistry.class,ZookeeperRegistryCenter.class, WorkerConfig.class, ZookeeperCachedOperator.class, ZookeeperConfig.class}) |
||||||
|
|
||||||
|
public class WorkerRegistryTest { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private WorkerRegistry workerRegistry; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private ZookeeperRegistryCenter zookeeperRegistryCenter; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private WorkerConfig workerConfig; |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testRegistry() throws InterruptedException { |
||||||
|
workerRegistry.registry(); |
||||||
|
String workerPath = zookeeperRegistryCenter.getWorkerPath(); |
||||||
|
Assert.assertEquals(ZookeeperRegistryCenter.WORKER_PATH, workerPath); |
||||||
|
Assert.assertEquals(DEFAULT_WORKER_GROUP, workerConfig.getWorkerGroup().trim()); |
||||||
|
String instancePath = workerPath + "/" + workerConfig.getWorkerGroup().trim() + "/" + (Constants.LOCAL_ADDRESS + ":" + workerConfig.getListenPort()); |
||||||
|
TimeUnit.SECONDS.sleep(workerConfig.getWorkerHeartbeatInterval() + 2); //wait heartbeat info write into zk node
|
||||||
|
String heartbeat = zookeeperRegistryCenter.getZookeeperCachedOperator().get(instancePath); |
||||||
|
Assert.assertEquals(5, heartbeat.split(",").length); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testUnRegistry() throws InterruptedException { |
||||||
|
workerRegistry.registry(); |
||||||
|
TimeUnit.SECONDS.sleep(workerConfig.getWorkerHeartbeatInterval() + 2); //wait heartbeat info write into zk node
|
||||||
|
workerRegistry.unRegistry(); |
||||||
|
String workerPath = zookeeperRegistryCenter.getWorkerPath(); |
||||||
|
String workerGroupPath = workerPath + "/" + workerConfig.getWorkerGroup().trim(); |
||||||
|
List<String> childrenKeys = zookeeperRegistryCenter.getZookeeperCachedOperator().getChildrenKeys(workerGroupPath); |
||||||
|
Assert.assertTrue(childrenKeys.isEmpty()); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,178 @@ |
|||||||
|
/* |
||||||
|
* 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.zk; |
||||||
|
|
||||||
|
import org.apache.curator.framework.CuratorFramework; |
||||||
|
import org.apache.curator.framework.CuratorFrameworkFactory; |
||||||
|
import org.apache.curator.retry.ExponentialBackoffRetry; |
||||||
|
import org.apache.zookeeper.server.ZooKeeperServerMain; |
||||||
|
import org.apache.zookeeper.server.quorum.QuorumPeerConfig; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.core.PriorityOrdered; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import javax.annotation.PostConstruct; |
||||||
|
import javax.annotation.PreDestroy; |
||||||
|
import java.io.File; |
||||||
|
import java.io.IOException; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
import java.util.concurrent.atomic.AtomicBoolean; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* just for test |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class SpringZKServer implements PriorityOrdered { |
||||||
|
|
||||||
|
private static final Logger logger = LoggerFactory.getLogger(SpringZKServer.class); |
||||||
|
|
||||||
|
private static volatile PublicZooKeeperServerMain zkServer = null; |
||||||
|
|
||||||
|
public static final int DEFAULT_ZK_TEST_PORT = 2181; |
||||||
|
|
||||||
|
public static final String DEFAULT_ZK_STR = "localhost:" + DEFAULT_ZK_TEST_PORT; |
||||||
|
|
||||||
|
private static String dataDir = null; |
||||||
|
|
||||||
|
private static final AtomicBoolean isStarted = new AtomicBoolean(false); |
||||||
|
|
||||||
|
@PostConstruct |
||||||
|
public void start() { |
||||||
|
try { |
||||||
|
startLocalZkServer(DEFAULT_ZK_TEST_PORT); |
||||||
|
} catch (Exception e) { |
||||||
|
logger.error("Failed to start ZK: " + e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static boolean isStarted(){ |
||||||
|
return isStarted.get(); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public int getOrder() { |
||||||
|
return PriorityOrdered.HIGHEST_PRECEDENCE; |
||||||
|
} |
||||||
|
|
||||||
|
static class PublicZooKeeperServerMain extends ZooKeeperServerMain { |
||||||
|
|
||||||
|
@Override |
||||||
|
public void initializeAndRun(String[] args) |
||||||
|
throws QuorumPeerConfig.ConfigException, IOException { |
||||||
|
super.initializeAndRun(args); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void shutdown() { |
||||||
|
super.shutdown(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Starts a local Zk instance with a generated empty data directory |
||||||
|
* |
||||||
|
* @param port The port to listen on |
||||||
|
*/ |
||||||
|
public void startLocalZkServer(final int port) { |
||||||
|
startLocalZkServer(port, org.apache.commons.io.FileUtils.getTempDirectoryPath() + File.separator + "test-" + System.currentTimeMillis()); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Starts a local Zk instance |
||||||
|
* |
||||||
|
* @param port The port to listen on |
||||||
|
* @param dataDirPath The path for the Zk data directory |
||||||
|
*/ |
||||||
|
private void startLocalZkServer(final int port, final String dataDirPath) { |
||||||
|
if (zkServer != null) { |
||||||
|
throw new RuntimeException("Zookeeper server is already started!"); |
||||||
|
} |
||||||
|
try { |
||||||
|
zkServer = new PublicZooKeeperServerMain(); |
||||||
|
logger.info("Zookeeper data path : {} ", dataDirPath); |
||||||
|
dataDir = dataDirPath; |
||||||
|
final String[] args = new String[]{Integer.toString(port), dataDirPath}; |
||||||
|
Thread init = new Thread(new Runnable() { |
||||||
|
@Override |
||||||
|
public void run() { |
||||||
|
try { |
||||||
|
System.setProperty("zookeeper.jmx.log4j.disable", "true"); |
||||||
|
zkServer.initializeAndRun(args); |
||||||
|
} catch (QuorumPeerConfig.ConfigException e) { |
||||||
|
logger.warn("Caught exception while starting ZK", e); |
||||||
|
} catch (IOException e) { |
||||||
|
logger.warn("Caught exception while starting ZK", e); |
||||||
|
} |
||||||
|
} |
||||||
|
}, "init-zk-thread"); |
||||||
|
init.start(); |
||||||
|
} catch (Exception e) { |
||||||
|
logger.warn("Caught exception while starting ZK", e); |
||||||
|
throw new RuntimeException(e); |
||||||
|
} |
||||||
|
|
||||||
|
CuratorFramework zkClient = CuratorFrameworkFactory.builder() |
||||||
|
.connectString(DEFAULT_ZK_STR) |
||||||
|
.retryPolicy(new ExponentialBackoffRetry(10,100)) |
||||||
|
.sessionTimeoutMs(1000 * 30) |
||||||
|
.connectionTimeoutMs(1000 * 30) |
||||||
|
.build(); |
||||||
|
|
||||||
|
try { |
||||||
|
zkClient.blockUntilConnected(10, TimeUnit.SECONDS); |
||||||
|
zkClient.close(); |
||||||
|
} catch (InterruptedException ignore) { |
||||||
|
} |
||||||
|
isStarted.compareAndSet(false, true); |
||||||
|
logger.info("zk server started"); |
||||||
|
} |
||||||
|
|
||||||
|
@PreDestroy |
||||||
|
public void stop() { |
||||||
|
try { |
||||||
|
stopLocalZkServer(true); |
||||||
|
logger.info("zk server stopped"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
logger.error("Failed to stop ZK ",e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Stops a local Zk instance. |
||||||
|
* |
||||||
|
* @param deleteDataDir Whether or not to delete the data directory |
||||||
|
*/ |
||||||
|
private void stopLocalZkServer(final boolean deleteDataDir) { |
||||||
|
if (zkServer != null) { |
||||||
|
try { |
||||||
|
zkServer.shutdown(); |
||||||
|
zkServer = null; |
||||||
|
if (deleteDataDir) { |
||||||
|
org.apache.commons.io.FileUtils.deleteDirectory(new File(dataDir)); |
||||||
|
} |
||||||
|
isStarted.compareAndSet(true, false); |
||||||
|
} catch (Exception e) { |
||||||
|
logger.warn("Caught exception while stopping ZK server", e); |
||||||
|
throw new RuntimeException(e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue