From 3525d553c98b69ae64a5b2067cc91963a2582e1c Mon Sep 17 00:00:00 2001 From: Ismaila Abdoulahi <36740618+auloin@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:10:16 +0200 Subject: [PATCH] Update Quarkus Extension configuration (#32) --- .../configuration/quarkus/_index.md | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/content/en/documentation/configuration/quarkus/_index.md b/content/en/documentation/configuration/quarkus/_index.md index 4bb7457..336f79f 100644 --- a/content/en/documentation/configuration/quarkus/_index.md +++ b/content/en/documentation/configuration/quarkus/_index.md @@ -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 ``` \ No newline at end of file