best camunda config for high workload

hello,
We are using Camunda 7 and are experiencing performance issues with our high workload. our question is:
Do you have any recommendations on adjustments we can make in the bpm-platform.xml / yml file on the Camunda server side and in the Spring Boot client configuration?"

thx

We also had performance issues at first, but this was mainly because we were using the H2 database and hadn’t switched to something like PostgreSQL yet. After migrating to the new SQL database, everything has been running smoothly.

What exactly do the performance issues look like on your side?

Hi @afe1.
As @lul said, you would have to analyze deeper, where your performance issues are.
If it’s really the database, then you need to look at the setup of the database and probably tune it. Or look at the SQL statements that are performing the worst.
If it’s on your server side, you can scale up more servers to share the load.
Also you need to look at you worker configuration and tune that.
So as you see, there are a lot of places where you can tune something, but it all depends where your system spends its time.

2 Likes