You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> docker-compose -f docker-compose-strimzi.yaml up
46
50
>
47
51
> mvn quarkus:dev
48
52
49
-
### Confluent:
53
+
####Confluent:
50
54
> docker-compose -f docker-compose-confluent.yaml up
51
55
>
52
56
> mvn -Dquarkus.profile=confluent quarkus:dev
53
57
54
-
### Run automated tests
58
+
####Run automated tests
55
59
> mvn test
56
60
57
-
## Troubleshooting
61
+
###Troubleshooting
58
62
59
-
### When I swap from Strimzi/confluent sometimes Kafka broker doesn't weak up (docker-compose).
63
+
####When I swap from Strimzi/confluent sometimes Kafka broker doesn't weak up (docker-compose).
60
64
Is something that We should investigate, must be for some service name collisions. It's the middle time you could clean your docker containers by running the following commands:
61
65
> docker stop $(docker ps -a -q)
62
66
>
63
67
> docker rm $(docker ps -a -q)
64
68
65
-
### [Only Fedora] When I launch a docker compose, kafka broker can't reach Zookeper node rather a internal network issue.
69
+
####[Only Fedora] When I launch a docker compose, kafka broker can't reach Zookeper node rather a internal network issue.
66
70
`error: kafka.zookeeper.ZooKeeperClientTimeoutException: Timed out waiting for connection while in state: CONNECTING
67
71
68
72
Looks that the default backend for firewalld was changed from iptables to nftables, since Fedora32. A quick patch it's a rollback to iptables as firewalld backend.
69
73
> sudo sed -i 's/FirewallBackend=nftables/FirewallBackend=iptables/g' /etc/firewalld/firewalld.conf
0 commit comments