You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my projects at work, I need to connect to different brokers in certain scenarios. For example I need to consume messages from one broker that is assigned to my team, and then during the processing of messages I need to push messages to another broker that is assigned to another team.
I was wondering if perhaps something like this would make sense (using amqp as an example):
amqp:
# connection namebrokerA:
addr: amqp://guest:guest@brokerA:5672/tls:
key: ""cert: ""root_ca: ""client_auth_type: no_client_certs# connection namebrokerB:
addr: amqp://guest:guest@brokerB:5672/tls:
key: ""cert: ""root_ca: ""client_auth_type: no_client_certsjobs:
pipelines:
pipeline-1:
driver: amqpconfig:
# this would be a new optionconnection: brokerApipeline-2:
driver: amqpconfig:
# this would be a new optionconnection: brokerB
The text was updated successfully, but these errors were encountered:
Plugin
JOBS
I have an idea!
Hi,
Million thanks for the awesome project!
In my projects at work, I need to connect to different brokers in certain scenarios. For example I need to consume messages from one broker that is assigned to my team, and then during the processing of messages I need to push messages to another broker that is assigned to another team.
I was wondering if perhaps something like this would make sense (using amqp as an example):
The text was updated successfully, but these errors were encountered: