@smith_Johnson Runtime data are stored in ACT_RU_* tables. History data are stored in ACT_HI_* tables if history is enabled.
ACT_RU_* : RU stands for runtime. These are the runtime tables that contain the runtime data of process instances, user tasks, variables, jobs, etc. The engine only stores the runtime data during process instance execution and removes the records when a process instance ends. This keeps the runtime tables small and fast.
ACT_HI_* : HI stands for history. These are the tables that contain historical data such as past process instances, variables, tasks, etc.
Additionally you can view the processes and tasks in the Camunda Webapps (Cockpit, tasklist) and Optimize (End-to-End Process Automation Monitoring and Reporting)
I do not use a Srping boot application, but instead I use an Apache Tomcat application server and a shared process engine architecture.
Does, what you mentioned above, change?