I created shovels using , rabbitmqctl set_parameter shovel "MyShovel" ......
Now i want to delete it, Can you please tell me on how to achieve it using commandline.
I created shovels using , rabbitmqctl set_parameter shovel "MyShovel" ......
Now i want to delete it, Can you please tell me on how to achieve it using commandline.
I tried this and it works more or less instantly:
rabbitmqctl clear_parameter shovel MyShovel
You can also list and delete shovels from the command line using rabbitmqadmin
Listing Shovels command
rabbitmqadmin --host=HOST --port=443 --ssl --vhost=/ --username=USERNAME --password=PASSWORD -f tsv -q list parameters name component
Delete a Shovel command
rabbitmqadmin --host=HOST --port=443 --ssl --vhost=/ --username=USERNAME --password=PASSWORD -f tsv -q delete parameter component=shovel name=nameOfShovel