nacos-sync icon indicating copy to clipboard operation
nacos-sync copied to clipboard

Service Sync component

Results 85 nacos-sync issues
Sort by recently updated
recently updated
newest added

1.nacos同步到zk,暂停后重新同步,服务就同步不到zk了 2.zk同步到nacos,暂停同步后,nacos上还是能看到同步的服务

zk同步到nacos,我指定一个服务 ![image](https://user-images.githubusercontent.com/41528403/182753848-b53961b8-bc39-4764-9b7a-5ecba11128f7.png) 但是将zk上所有的服务都同步了 ![image](https://user-images.githubusercontent.com/41528403/182753797-6fb314e7-cffc-4d16-be19-f55dd560b977.png) 我觉的大致的原因是在zk注册监听的时候没有判断服务名称 ![image](https://user-images.githubusercontent.com/41528403/182754311-c0c731fd-606d-4203-aab9-ad053c0a615b.png) 我对此处代码进行了修改com.alibaba.nacossync.extension.impl.ZookeeperSyncToNacosServiceImpl#isMatch ![image](https://user-images.githubusercontent.com/41528403/182754150-91d19c82-1db5-4f67-8bbf-2c7eaefd70be.png) 将同步粒度的服务名称同需要同步的服务名称进行比较 这样是否会有其他问题?

nacos2.1使用sync同步时获取源实例为空: List sourceInstances = sourceNamingService.getAllInstances(taskDO.getServiceName(), getGroupNameOrDefault(taskDO.getGroupName()), new ArrayList(), true); 这个list,debug结果为空,没拉取到nacos上的实例

nacos-sync当前支持集群部署吗?

Nacos多集群部署之间的数据同步,只能用nacosSync进行数据同步么,不能和eureka高可用部署似的相互注册?

EventListener.java ``` @Subscribe public void listenerSyncTaskEvent(SyncTaskEvent syncTaskEvent) { try { long start = System.currentTimeMillis(); if (syncManagerService.sync(syncTaskEvent.getTaskDO())) { skyWalkerCacheServices.addFinishedTask(syncTaskEvent.getTaskDO()); metricsManager.record(MetricsStatisticsType.SYNC_TASK_RT, System.currentTimeMillis() - start); } else { log.warn("listenerSyncTaskEvent sync failure"); } }...

nacos-sync 能否考虑在同步服务列表时,增加参数指定同步后集群的服务名称。 即在Nacos A 下面有一个服务 ServiceX,需要同步到Nacos B集群,然后在该集群里面对应的服务名称变为 ServiceY(现在只能是ServiceX)

使用nacossync版本为0.4.7,需要把consul注册信息同步到nacos,配好后没有任何报错信息,但是注册信息没有同步,请问是什么问题?

![image](https://user-images.githubusercontent.com/71421254/150467005-7d868db7-6254-4b62-9e33-c2a157aeecc7.png)