Hello,
I'm playing around kafka for building a chat application. Here is what I
have done so far:
1. I have set up a CDC (change data capture) on my Postgresql database
2. The change on my table will get published to Kafka
3. I have node socket.io server, which listen to these messages on kafka
a
- kafka
> - zookeeper
> - postgres
> - connector
> environment:
> BOOTSTRAP_SERVERS: *"kafka:9092"*
>
> ```
>
> Thanks,
>
> -- riferrei
> On 6/3/20 9:55 PM, Anto Aravinth wrote:
>
>
I have a spring application, which should connect to the kafka. This is
what my Docker file looks for spring application:
```
FROM maven:3-jdk-11 as builder
# create app folder for sources
RUN mkdir -p /build
WORKDIR /build
COPY pom.xml /build
#Download all required dependencies into one layer
RUN
I have a spring application, which should connect to the kafka. This is
what my Docker file looks for spring application:
```
FROM maven:3-jdk-11 as builder
# create app folder for sources
RUN mkdir -p /build
WORKDIR /build
COPY pom.xml /build
#Download all required dependencies into one layer
RUN