Skip to content

Commit

Permalink
chore(721-to-722): Adjust Quarkus Properties
Browse files Browse the repository at this point in the history
Fix Generic and Non-Generic properties

Co-authored-by: Joaquín <165814090+joaquinfelici@users.noreply.github.com>
Related-to: camunda/camunda-bpm-platform#4579
  • Loading branch information
psavidis and joaquinfelici authored Sep 17, 2024
1 parent c3f6b93 commit 4f44395
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion content/update/minor/721-to-722/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,9 @@ This requires using the new namespace `generic-config`.

- `quarkus.camunda.enforce-history-time-to-live` **becomes** `quarkus.camunda.generic-config.enforce-history-time-to-live`

- `quarkus.camunda.job-executor.thread-pool.max-pool-size` **becomes** `quarkus.camunda.job-executor.generic-config.thread-pool.max-pool-size`
- `quarkus.camunda.dmn-enabled` **becomes** `quarkus.camunda.generic-config.dmn-enabled`

- **Non-generic** properties such as `quarkus.camunda.job-executor.thread-pool.max-pool-size` remain the same.

For a detailed guide on the new Quarkus properties, visit the updated [Quarkus Configuration]({{< ref "/user-guide/quarkus-integration/configuration.md" >}}) page.

Expand Down
6 changes: 3 additions & 3 deletions content/user-guide/quarkus-integration/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ the Quarkus-specific properties in the following table:
<tr><td colspan="4"><b>Job Executor</b></td></tr>

<tr>
<td rowspan="2"><code>quarkus.camunda.job-executor.generic-config.thread-pool</code></td>
<td rowspan="2"><code>quarkus.camunda.job-executor.thread-pool</code></td>
<td><code>.max-pool-size</code></td>
<td>Sets the maximum number of threads that can be present in the thread pool.</td>
<td><code>10</code></td>
Expand Down Expand Up @@ -223,8 +223,8 @@ quarkus.camunda.generic-config.dmn-enabled=false
quarkus.camunda.generic-config.history=none

# job executor configuration
quarkus.camunda.job-executor.generic-config.thread-pool.max-pool-size=12
quarkus.camunda.job-executor.generic-config.thread-pool.queue-size=5
quarkus.camunda.job-executor.thread-pool.max-pool-size=12
quarkus.camunda.job-executor.thread-pool.queue-size=5
quarkus.camunda.job-executor.generic-config.max-jobs-per-acquisition=5
quarkus.camunda.job-executor.generic-config.lock-time-in-millis=500000
quarkus.camunda.job-executor.generic-config.wait-time-in-millis=7000
Expand Down

0 comments on commit 4f44395

Please sign in to comment.