WARN org.camunda.bpm.engine.util - ENGINE-09004 Warnings during parsing:

Hi Team,

warning WARN org.camunda.bpm.engine.util - ENGINE-09004 Warnings during parsing:
getting printed multiple time or repeatedly … so does it mean BPMN model is getting compile or scan multiple times?
On local tomcat it is throwing only two times when loading BPMN or while starting the server.

The waring and log back integration till 7.19 version was throwing multiple times and randomly cluelessly

need help on to know how it works in camunda 7.19

Hello my friend!
Welcome again!

In your project in the processes.xml file located in the META-INF folder, do you have the following settings below?

Perhaps Camunda is checking existing process definitions and trying to deploy them each time it goes up, so you will need to adjust this so that it checks and deploys only if there is any change in the process definition, avoiding duplicates.

If you haven’t configured it, try using the configs below in your processes.xml

        <property name="isScanForProcessDefinitions">true</property>
        <property name="isDeployChangedOnly">true</property>

i hope this helps!

William Robert Alves