brash-sundown-77702
07/06/2022, 5:51 AM"Connect to ipv4#127.0.0.1:9092 failed: Connection refused (after 0ms in state CONNECT, 4 identical error(s) suppressed)." Looks like it is trying to connect to localhost 9092 instead of remote server's kafka. Here is my recipe .yaml source:
type: "mysql"
config:
env: "DEV"
username: datahub
password: datahub
host_port: <RomoteIPAddr>:3306
sink:
type: "datahub-kafka"
config:
connection:
bootstrap: "<RomoteIPAddr>:9092"
schema_registry_url: "http//<RomoteIPAddr>8081"careful-pilot-86309
07/07/2022, 6:30 AMbrash-sundown-77702
07/07/2022, 12:14 PMKAFKA_ADVERTISED_LISTENERS=<PLAINTEXT://broker:29092>,PLAINTEXT_<HOST://localhost:9092> in https://github.com/datahub-project/datahub/blob/master/docker/quickstart/docker-compose.quickstart.yml fixed the issue.careful-pilot-86309
07/07/2022, 12:49 PM