I’am running camunda 7.16 with a spring boot application, I want to migrate to 7.20, I know that i need to execute camunda database migration manually or using liquibase, my questions are:
Can i do the migration in one shot by executing all scripts 7.17, 7.18, 7.19, 7.20 ?
Should i do the database migration first and then upgrade camunda version in my pom.xml ?
Liquibase scripts are executed when application will be deployed ? can i have an example of a spring boost and embedded camunda with the liquibase integration
Thanks
Hi @mouhcinela,
If you stop the process engine before, then you can run all scripts in one shot.
If you run a high availability environment, then you should follow this update guide: Rolling Update | docs.camunda.org
Hope this helps, Ingo
2 Likes
Thanks @Ingo_Richtsmeier