Dear Camunda Team,
I am currently evaluating the migration from Camunda 7 to Camunda 8. Because we use Spring Boot, I became aware of the project spring-zeebe (GitHub - camunda-community-hub/spring-zeebe: Easily use the Zeebe Java Client in your Spring or Spring Boot projects).
First of all, is this the right place to ask questions about spring-zeebe, or is this better via for example a GibHub Issue?
Now to my actual question. To test Camunda 8, I started Camunda 8 locally via docker-compose. In addition, I created a worker in the form of a Spring Boot application with the dependency to spring-zeebe. Using spring-zeebee makes the integration of Camunda 8 much easier, but what is a problem for us is that using spring-zeebe creates a startup order. zebee must be available when starting the worker. Otherwise the worker does not start because of a ConnectException.
This is a problem because our platform, which consists of several services, is developed locally and we want to start only the services we need for the development of the specific feature to save hardware resources. Our workers do not only consist of the job worker specific code, but also a UI and other business code. We don’t want to start the whole Camunda platform just to customize a button in the UI of a worker.
-
is this a bad design of our worker? Should it only contain code that is called in the JobWorker?
-
is there a configuration to deviate this hard start condition so that the Spring Boot application is still started?
Thanks a lot in advance!