|
@@ -17,7 +17,6 @@ import org.springframework.context.ApplicationContext;
|
|
|
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
|
|
|
|
|
import com.alibaba.otter.canal.common.CanalException;
|
|
|
-import com.alibaba.otter.canal.common.MQProperties;
|
|
|
import com.alibaba.otter.canal.common.utils.AddressUtils;
|
|
|
import com.alibaba.otter.canal.common.zookeeper.ZkClientx;
|
|
|
import com.alibaba.otter.canal.common.zookeeper.ZookeeperPathUtils;
|
|
@@ -96,6 +95,16 @@ public class CanalController {
|
|
|
System.setProperty(CanalConstants.CANAL_SOCKETCHANNEL, socketChannel);
|
|
|
}
|
|
|
|
|
|
+ // 兼容1.1.0版本的ak/sk参数名
|
|
|
+ String accesskey = getProperty(properties, "canal.instance.rds.accesskey");
|
|
|
+ String secretkey = getProperty(properties, "canal.instance.rds.secretkey");
|
|
|
+ if (StringUtils.isNotEmpty(accesskey)) {
|
|
|
+ System.setProperty(CanalConstants.CANAL_ALIYUN_ACCESSKEY, accesskey);
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotEmpty(secretkey)) {
|
|
|
+ System.setProperty(CanalConstants.CANAL_ALIYUN_SECRETKEY, secretkey);
|
|
|
+ }
|
|
|
+
|
|
|
// 准备canal server
|
|
|
cid = Long.valueOf(getProperty(properties, CanalConstants.CANAL_ID));
|
|
|
ip = getProperty(properties, CanalConstants.CANAL_IP);
|
|
@@ -131,81 +140,80 @@ public class CanalController {
|
|
|
|
|
|
final ServerRunningData serverData = new ServerRunningData(cid, ip + ":" + port);
|
|
|
ServerRunningMonitors.setServerData(serverData);
|
|
|
- ServerRunningMonitors
|
|
|
- .setRunningMonitors(MigrateMap.makeComputingMap(new Function<String, ServerRunningMonitor>() {
|
|
|
-
|
|
|
- public ServerRunningMonitor apply(final String destination) {
|
|
|
- ServerRunningMonitor runningMonitor = new ServerRunningMonitor(serverData);
|
|
|
- runningMonitor.setDestination(destination);
|
|
|
- runningMonitor.setListener(new ServerRunningListener() {
|
|
|
-
|
|
|
- public void processActiveEnter() {
|
|
|
- try {
|
|
|
- MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
- embededCanalServer.start(destination);
|
|
|
- } finally {
|
|
|
- MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
- }
|
|
|
+ ServerRunningMonitors.setRunningMonitors(MigrateMap.makeComputingMap(new Function<String, ServerRunningMonitor>() {
|
|
|
+
|
|
|
+ public ServerRunningMonitor apply(final String destination) {
|
|
|
+ ServerRunningMonitor runningMonitor = new ServerRunningMonitor(serverData);
|
|
|
+ runningMonitor.setDestination(destination);
|
|
|
+ runningMonitor.setListener(new ServerRunningListener() {
|
|
|
+
|
|
|
+ public void processActiveEnter() {
|
|
|
+ try {
|
|
|
+ MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
+ embededCanalServer.start(destination);
|
|
|
+ } finally {
|
|
|
+ MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- public void processActiveExit() {
|
|
|
- try {
|
|
|
- MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
- embededCanalServer.stop(destination);
|
|
|
- } finally {
|
|
|
- MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
- }
|
|
|
+ public void processActiveExit() {
|
|
|
+ try {
|
|
|
+ MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
+ embededCanalServer.stop(destination);
|
|
|
+ } finally {
|
|
|
+ MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- public void processStart() {
|
|
|
- try {
|
|
|
- if (zkclientx != null) {
|
|
|
- final String path = ZookeeperPathUtils.getDestinationClusterNode(destination,
|
|
|
- ip + ":" + port);
|
|
|
- initCid(path);
|
|
|
- zkclientx.subscribeStateChanges(new IZkStateListener() {
|
|
|
-
|
|
|
- public void handleStateChanged(KeeperState state) throws Exception {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- public void handleNewSession() throws Exception {
|
|
|
- initCid(path);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void handleSessionEstablishmentError(Throwable error) throws Exception {
|
|
|
- logger.error("failed to connect to zookeeper", error);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- } finally {
|
|
|
- MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
+ public void processStart() {
|
|
|
+ try {
|
|
|
+ if (zkclientx != null) {
|
|
|
+ final String path = ZookeeperPathUtils.getDestinationClusterNode(destination, ip + ":"
|
|
|
+ + port);
|
|
|
+ initCid(path);
|
|
|
+ zkclientx.subscribeStateChanges(new IZkStateListener() {
|
|
|
+
|
|
|
+ public void handleStateChanged(KeeperState state) throws Exception {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public void handleNewSession() throws Exception {
|
|
|
+ initCid(path);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void handleSessionEstablishmentError(Throwable error) throws Exception {
|
|
|
+ logger.error("failed to connect to zookeeper", error);
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
+ } finally {
|
|
|
+ MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- public void processStop() {
|
|
|
- try {
|
|
|
- MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
- if (zkclientx != null) {
|
|
|
- final String path = ZookeeperPathUtils.getDestinationClusterNode(destination,
|
|
|
- ip + ":" + port);
|
|
|
- releaseCid(path);
|
|
|
- }
|
|
|
- } finally {
|
|
|
- MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
+ public void processStop() {
|
|
|
+ try {
|
|
|
+ MDC.put(CanalConstants.MDC_DESTINATION, String.valueOf(destination));
|
|
|
+ if (zkclientx != null) {
|
|
|
+ final String path = ZookeeperPathUtils.getDestinationClusterNode(destination, ip + ":"
|
|
|
+ + port);
|
|
|
+ releaseCid(path);
|
|
|
}
|
|
|
+ } finally {
|
|
|
+ MDC.remove(CanalConstants.MDC_DESTINATION);
|
|
|
}
|
|
|
-
|
|
|
- });
|
|
|
- if (zkclientx != null) {
|
|
|
- runningMonitor.setZkClient(zkclientx);
|
|
|
}
|
|
|
- // 触发创建一下cid节点
|
|
|
- runningMonitor.init();
|
|
|
- return runningMonitor;
|
|
|
+
|
|
|
+ });
|
|
|
+ if (zkclientx != null) {
|
|
|
+ runningMonitor.setZkClient(zkclientx);
|
|
|
}
|
|
|
- }));
|
|
|
+ // 触发创建一下cid节点
|
|
|
+ runningMonitor.init();
|
|
|
+ return runningMonitor;
|
|
|
+ }
|
|
|
+ }));
|
|
|
|
|
|
// 初始化monitor机制
|
|
|
autoScan = BooleanUtils.toBoolean(getProperty(properties, CanalConstants.CANAL_AUTO_SCAN));
|
|
@@ -257,8 +265,7 @@ public class CanalController {
|
|
|
instanceConfigMonitors = MigrateMap.makeComputingMap(new Function<InstanceMode, InstanceConfigMonitor>() {
|
|
|
|
|
|
public InstanceConfigMonitor apply(InstanceMode mode) {
|
|
|
- int scanInterval = Integer
|
|
|
- .valueOf(getProperty(properties, CanalConstants.CANAL_AUTO_SCAN_INTERVAL));
|
|
|
+ int scanInterval = Integer.valueOf(getProperty(properties, CanalConstants.CANAL_AUTO_SCAN_INTERVAL));
|
|
|
|
|
|
if (mode.isSpring()) {
|
|
|
SpringInstanceConfigMonitor monitor = new SpringInstanceConfigMonitor();
|
|
@@ -366,8 +373,7 @@ public class CanalController {
|
|
|
InstanceConfig oldConfig = instanceConfigs.put(destination, config);
|
|
|
|
|
|
if (oldConfig != null) {
|
|
|
- logger
|
|
|
- .warn("destination:{} old config:{} has replace by new config:{}", destination, oldConfig, config);
|
|
|
+ logger.warn("destination:{} old config:{} has replace by new config:{}", destination, oldConfig, config);
|
|
|
}
|
|
|
}
|
|
|
}
|