Using Meteor Cluster for microservice
问题 Based on the simple implementation of Meteor Cluster MicroServices the doc I have this implementation for 2 services to communicate. AppUI export default CLUSTER_DISCOVERY_URL="mongodb://localhost:3000/meteor"; Cluster.connect(CLUSTER_DISCOVERY_URL); Cluster.register('appui_service'); loggerService = Cluster.discoverConnection('logger_service'); LoggerService export default CLUSTER_DISCOVERY_URL="mongodb://localhost:3300/meteor"; Cluster.connect(CLUSTER_DISCOVERY_URL); Cluster.register(