@@ -140,10 +140,10 @@ page documents all the available properties. Convert any property names you inte
140
140
` kebab-case ` format, like in the following example:
141
141
142
142
``` properties
143
- quarkus.camunda.job-executor.generic-config. max-jobs-per-acquisition =5
144
- quarkus.camunda.job-executor.generic-config. lock-time-in-millis =500000
145
- quarkus.camunda.job-executor.generic-config. wait-time-in-millis =7000
146
- quarkus.camunda.job-executor.generic-config. max-wait =65000
143
+ quarkus.camunda.job-executor.max-jobs-per-acquisition =5
144
+ quarkus.camunda.job-executor.lock-time-in-millis =500000
145
+ quarkus.camunda.job-executor.wait-time-in-millis =7000
146
+ quarkus.camunda.job-executor.max-wait =65000
147
147
```
148
148
149
149
## Quarkus Extension Configuration
@@ -177,7 +177,7 @@ the Quarkus-specific properties in the following table:
177
177
<tr ><td colspan =" 4 " ><b >Job Executor</b ></td ></tr >
178
178
179
179
<tr >
180
- <td rowspan="2"><code>quarkus.camunda.job-executor.generic-config. thread-pool</code></td>
180
+ <td rowspan="2"><code>quarkus.camunda.job-executor.thread-pool</code></td>
181
181
<td><code>.max-pool-size</code></td>
182
182
<td>Sets the maximum number of threads that can be present in the thread pool.</td>
183
183
<td><code>10</code></td>
@@ -218,18 +218,18 @@ engine configuration, job executor and data source:
218
218
219
219
``` properties
220
220
# process engine configuration
221
- quarkus.camunda.generic-config. cmmn-enabled =false
222
- quarkus.camunda.generic-config. dmn-enabled =false
223
- quarkus.camunda.generic-config. history =none
221
+ quarkus.camunda.cmmn-enabled =false
222
+ quarkus.camunda.dmn-enabled =false
223
+ quarkus.camunda.history =none
224
224
225
225
# job executor configuration
226
- quarkus.camunda.job-executor.generic-config. thread-pool.max-pool-size =12
227
- quarkus.camunda.job-executor.generic-config. thread-pool.queue-size =5
228
- quarkus.camunda.job-executor.generic-config. max-jobs-per-acquisition =5
229
- quarkus.camunda.job-executor.generic-config. lock-time-in-millis =500000
230
- quarkus.camunda.job-executor.generic-config. wait-time-in-millis =7000
231
- quarkus.camunda.job-executor.generic-config. max-wait =65000
232
- quarkus.camunda.job-executor.generic-config. backoff-time-in-millis =5
226
+ quarkus.camunda.job-executor.thread-pool.max-pool-size =12
227
+ quarkus.camunda.job-executor.thread-pool.queue-size =5
228
+ quarkus.camunda.job-executor.max-jobs-per-acquisition =5
229
+ quarkus.camunda.job-executor.lock-time-in-millis =500000
230
+ quarkus.camunda.job-executor.wait-time-in-millis =7000
231
+ quarkus.camunda.job-executor.max-wait =65000
232
+ quarkus.camunda.job-executor.backoff-time-in-millis =5
233
233
234
234
# custom data source configuration and selection
235
235
quarkus.datasource.my-datasource.db-kind =h2
0 commit comments