pandaapo commented on issue #4600: URL: https://github.com/apache/eventmesh/issues/4600#issuecomment-1838402945
I will first write the basic settings of the configuration file and the startup of the connector, hoping it can be helpful. server-config.yml: it is currently used to configure whether to start the source/link connector, and your configuration should be fine. source/sink-config.yml: `pubSubConfig.` : it is used to configure the EventMesh runtime, the most crucial information is the `meshAddress`, which is the running address of the EventMesh. Other configurations, such as the target for Source Connector to send messages or the source for Sink Connector to obtain messages, can be directly referenced from the configuration examples in the source code. (Basic data flow: External components -->Source --> EventMesh --> Sink --> External components) `connectorConfig.`: it is used to configure specific external components that require information, which may be the component's runtime address or third-party application credentials, and so on. After the configurations are completed, run `main()` method of the Connector server to start the Connector, such as `SlackConnectServer#main()`. If there are still unresolved problems, let's look forward to more detailed responses and more valuable assistance from community members, including authors. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
