Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

After saving messages into outbox, process outbox publishers will process messages by removing them from outbox and publishing into other queues. Their number can be configured by updating async threads pool size. This will increase speed of clearing out Outbox. Default value is 1.

Code Block
blueriq.case.engine.outbox.async.threads.pool.size=5

...

Outbox Poller is also possible to tune by adding extra poller concurrency threads into its publisher. It will split batchsize into smaller parts and will process them in parallel. By default concurrency pollier poller is disabled

Code Block
blueriq.case.engine.outbox.poller.concurrency.enabled=true
blueriq.case.engine.outbox.poller.concurrency.threads=2

...