Hello All,
I am newbie and working on Camunda deployment architecture to meet the future requirements.
Usaecase - Camunda is running as Springboot embedded engine and process definitions are getting deployed over rest API “/deployment/create”. As per documentation, Camunda stores the process definitions in database. Over the period, multiple process will be deployed over rest and eventually stored in DB.
Question - What if I need to redeploy my same Springboot service with some additional java code then what would happen to my database where my process definitions are already deployed. Would it re-create and delete existing process? or It will not delete/disturb the existing process of database? Do I need to turn-off DB creation during Service deploy?
Thank You.