Camunda 7 process engine not picking custom core-pool-size, max-pool-size from spring property file

Hi
I just stuck over it we have tried everything to set these property from spring property file

camunda:
  bpm:
    job-execution:
      core-pool-size: 50 
      max-pool-size: 100  
      queue-capacity: 100 
      max-jobs-per-acquisition: 100 

we are suing camunda 7.19
the issue is the config is not refelcting in job executer, we are extending this class
AbstractProcessEnginePlugin
to perform operation i have look everywhere but it didn’t find anything helpful

Hi @mkm,

Welcome to the forum!

Do I understand correctly, you adjusted the job executor properties via the application properties file in Spring boot and they are not picked up?
How the AbstractProcessEnginePlugin relates to the issue, could you elaborate more?

If possible it will be helpful to share a minimal example project that reproduces the issue.

Best,
Yana

Hi @Yana
Thanks for response
Actually , i just want to understand possible reason why the config is not picked by job executor . Beacuse we tried to pass the configuration all possible way but nothing is working

@mkm, the specified configuration should work. How do you test/verify that is not picked up?

Hi yana
We are checking the processEngineConfigurations in post init method also & we have verified using job executor log it is taking default value only

@mkm, could you share a minimal project so I can reproduce the issue?

Actually it is our org project we can’t share , if you have any dummy projects can can cross confirm these properties actually applying ?

You can use as a base the following project, just fork it to add different configuration and validations that you perform: