diff options
author | Valery Piashchynski <[email protected]> | 2022-12-01 12:30:30 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-12-01 12:30:30 +0100 |
commit | 79ec1832e5bc08663fe6853afefb8660b1d2e0ce (patch) | |
tree | a138af0c4b96d9d5fb37d9581c8f6375929bdc72 /.rr.yaml | |
parent | 6277d47ffe939b5cb21248eba876a7566048b15b (diff) |
chore: update .rr.yaml and schemas
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -1239,7 +1239,7 @@ jobs: # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. priority: 10 - # Number of job to prefetch from the driver. + # Number of job to prefetch from the driver until ACK/NACK. # # Default: 100_000. prefetch: 10000 @@ -1303,6 +1303,21 @@ jobs: # Default: false durable: false + # Durable exchange (rabbitmq option: https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges) + # + # Default: true + exchange_durable: false + + # Auto-delete (exchange is deleted when last queue is unbound from it): https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges + # + # Default: false + exchange_auto_deleted: false + + # Auto-delete (queue that has had at least one consumer is deleted when last consumer unsubscribes) (rabbitmq option: https://www.rabbitmq.com/queues.html#properties) + # + # Default: false + queue_auto_deleted: false + # Delete queue when stopping the pipeline # # Default: false @@ -1397,8 +1412,7 @@ jobs: # If the job has priority set to 0, it will inherit the pipeline's priority. Default: 10. priority: 10 - # Number of jobs to prefetch from the SQS. Amazon SQS never returns more messages than this value - # (however, fewer messages might be returned). Valid values: 1 to 10. + # Number of jobs to prefetch from the SQS until ACK/NACK. # # Default: 10 prefetch: 10 |