Last active
March 21, 2023 16:01
-
-
Save softberries/c386743074a8af1972ed559a80bb47cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
processors: [ | |
# valid options are: [:concurrency, :min_demand, :max_demand, :partition_by, :spawn_opt, :hibernate_after] | |
default: [concurrency: 6, partition_by: &partition/1] | |
], | |
batchers: [ | |
# valid options are: [:concurrency, :batch_size, :max_demand, :batch_timeout, :partition_by, :spawn_opt, :hibernate_after] | |
pickup: [ | |
concurrency: 1, | |
batch_size: 5, | |
batch_timeout: 2_000 | |
], | |
dropoff: [ | |
concurrency: 1, | |
batch_size: 5, | |
batch_timeout: 2_000 | |
], | |
enroute: [ | |
concurrency: 4, | |
batch_size: 25, | |
batch_timeout: 2_000 | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment