How to set jdbcStatementTimeout for the Tomcat based distribution

Hi! Docs say it is possible to set jdbcStatementTimeout attribute. I’m using the Tomcat based distro of Camunda. There are only BPMN processes with external tasks deployed (no war/ear’s). Which xml should edit to set this attribute?

@Dmitriy_Grigoryev you can configure jdbcStatementTimeout in either processes.xml or bpm-platform.xml file.

<properties>      
     <property name="jdbcStatementTimeout">{value}</property>
     .....
</properties>

Here is a bpm-platform-xml file configuration example. Add the above property to the properties list.

Here is a processes.xml file example.

Thank you!