Hi Team,
We have a failure with eureka client registering with eureka server . when the eureka client dependency added
We want to register the Spring Boot(3.3.3)+ Camunda(7.21.0) application with Eureka Service registry.
We have added the client lib.for eureka client
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
true
Guys do we have any any suggestions ??
Eureka client registers once but if eureka goes down then the client fails to re-register
Hi Team do we have any ideas to make Eureka Client work seamlessly with Camunda.
Once eureka shuts down and restarts , Eureka client is not able to reconnect.
We got a better solution to this problem
1 : Multiple instances of camunda without cockpit + Eureka + Postgres
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
</dependency>
2 : One instacne with Camunda + cockpit + postgres but no need to register with eureka
will solve our problem of eureka deregister
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
</dependency>
3
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/registry/eureka/