We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please consider to add rabbitmq_federation plugin managing/configuration
The text was updated successfully, but these errors were encountered:
rabbitmq_plugin { 'rabbitmq_federation_management': }
will manage the plugin.
This snippet from README.md shows how to setup federation:-
component_name => 'federation-upstream', value => { 'uri' => 'amqp://myserver', 'expires' => '360000', }, }
Sorry, something went wrong.
Unfortunately, I can't properly form uri string with multiple upstream servers
/sbin/rabbitmqctl set_parameter -p VHOST federation-upstream failover '{"uri":["amqp://user:pass@server1/VHOST","amqp://user:pass@server2"],"ack-mode":"on-publish","max-hops":1}
I tried different combinations, but it seems provider doesn't pass it properly
$upstreams = $nodes.map | $f | { "amqp://${admin_user}:${admin_pass}@${f}/${vhost}" } $upstream_list = $upstreams.join(',') $uri = "[${upstream_list}]"
No branches or pull requests
Please consider to add rabbitmq_federation plugin managing/configuration
The text was updated successfully, but these errors were encountered: