Limitations of process Engine

Hi all,

So, my question is totally theoretical, but it is to avoid future errors or something else.

Are there any limitations, in terms of number of requisitions over a certain period of time, I can do to CAMUNDA REST API ?

I have this question because I am doing application which request REST API about 500 when the app starts.

Sure, with REST calls the limitation is often the size of the thread pool on the container that the camunda engine is on - you can increase that by adding more nodes and then the limitation becomes the number of Database connections and depending the database you use and the number of wait states in the model you could handle around 1000 instances starting per second.

3 Likes