Fork me on GitHub

Quarkus Configuration

Configuration property fixed at build time - All other configuration properties are overridable at runtime

Configuration property

Type

Default

Name of the event store table.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_TABLE

string

event_store

Time in ms to wait before next dispatching cycle is started if max concurrent dispatching threads are in use.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_ALL_IN_USE_INTERVAL

int

100

Max seconds to wait before a new check is made for unprocessed events.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_MAX_DISPATCH_INTERVAL

int

60

Initial seconds to wait before a new check is made for unprocessed events.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_INITIAL_DISPATCH_INTERVAL

int

30

Number of unprocessed events to aquire in one transaction.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_MAX_AQUIRE

int

10

Max number of events to process concurrently.

Environment variable: QUARKUS_TRANSACTIONAL_EVENT_MAX_CONCURRENT_DISPATCHING

int

10