Skip to content

Commit

Permalink
Update Quarkus Extension configuration (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
auloin authored Oct 2, 2024
1 parent f4aff32 commit 3525d55
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions content/en/documentation/configuration/quarkus/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,18 @@ quarkus.jobrunr.database.skip-create=false
quarkus.jobrunr.database.table-prefix= # allows to set a table prefix (e.g. schema for all tables)
quarkus.jobrunr.database.datasource= # allows to specify a DataSource specifically for JobRunr
quarkus.jobrunr.database.type= # if you have multiple supported storage providers available in your application (e.g. an SQL DataSource and Elasticsearch), it allows to specify which database to choose. Valid values are 'sql', 'mongodb', 'redis-lettuce', 'redis-jedis' and 'elasticsearch'.
quarkus.jobs.default-number-of-retries=10 #the default number of retries for a failing job
quarkus.jobs.retry-back-off-time-seed=3 #the default time seed for the exponential back-off policy.
quarkus.jobrunr.job-scheduler.enabled=true
quarkus.jobrunr.background-job-server.enabled=false
quarkus.jobrunr.background-job-server.worker-count= #this value normally is defined by the amount of CPU's that are available
quarkus.jobrunr.background-job-server.poll-interval=15 #check for new work every 15 seconds
quarkus.jobrunr.background-job-server.delete-succeeded-jobs-after=36h #succeeded jobs will go to the deleted state after 36 hours
quarkus.jobrunr.background-job-server.permanently-delete-deleted-jobs-after=72h #deleted jobs will be deleted permanently after 72 hours
quarkus.jobrunr.background-job-server.metrics.enabled=false #Micrometer integration - this was true in v5.
quarkus.jobrunr.dashboard.enabled=false
quarkus.jobrunr.dashboard.port=8000 #the port on which to start the dashboard
quarkus.jobrunr.miscellaneous.allow-anonymous-data-usage: true #this sends the amount of succeeded jobs for marketing purposes
quarkus.jobs.default-number-of-retries=10 # the default number of retries for a failing job
quarkus.jobs.retry-back-off-time-seed=3 # the default time seed for the exponential back-off policy.
quarkus.jobrunr.job-scheduler.enabled=true # allows to enable the JobScheduler or JobRequestScheduler (this is a runtime configuration)
quarkus.jobrunr.background-job-server.included=true # allows to include or exclude the BackgroundJobServer resources (this is a build time configuration)
quarkus.jobrunr.background-job-server.enabled=false # allows to enable or disable the background job server (this is a runtime configuration)
quarkus.jobrunr.background-job-server.worker-count= # this value normally is defined by the amount of CPU's that are available
quarkus.jobrunr.background-job-server.poll-interval=15 # check for new work every 15 seconds
quarkus.jobrunr.background-job-server.delete-succeeded-jobs-after=36h # succeeded jobs will go to the deleted state after 36 hours
quarkus.jobrunr.background-job-server.permanently-delete-deleted-jobs-after=72h # deleted jobs will be deleted permanently after 72 hours
quarkus.jobrunr.background-job-server.metrics.enabled=false # Micrometer integration - this was true in v5.
quarkus.jobrunr.dashboard.included=true # allows to include or exclude the Dashboard web server (this is a build time configuration)
quarkus.jobrunr.dashboard.enabled=false # allows to enable or disable the Dashboard web server (this is a runtime configuration)
quarkus.jobrunr.dashboard.port=8000 # the port on which to start the dashboard
quarkus.jobrunr.miscellaneous.allow-anonymous-data-usage=true # this sends the amount of succeeded jobs for marketing purposes
```

0 comments on commit 3525d55

Please sign in to comment.