rabbitmq / rabbitmq-stomp

RabbitMQ STOMP plugin
https://www.rabbitmq.com/stomp.html
Other
49 stars 28 forks source link

Give names to temp_queues generated using reply-to header #135

Closed ghost closed 5 years ago

ghost commented 5 years ago

Thank you for using RabbitMQ and for taking the time to report an issue.

Does This Belong to GitHub or RabbitMQ Mailing List?

GIthub

I want to have temp-queues in rabbitmq with Rabbitmq-stomp over websockets plugin, I want to be able to give name to temp queues created by reply-to headers, this is forcing us to maintain an in memory map and clean this map up on losing the queues, which is very cumbersome, is there any way where we could give the name of the temp-queue that is created.

michaelklishin commented 5 years ago

Thank you for your time.

Team RabbitMQ uses GitHub issues for specific actionable items engineers can work on. This assumes that we have a certain amount of information to work with.

Getting all the details necessary to reproduce an issue, make a conclusion or even form a hypothesis about what's happening can take a fair amount of time. Our team is multiple orders of magnitude smaller than the RabbitMQ community. Please help others help you by providing a way to reproduce the behavior you're observing and sharing as much relevant information as possible on the list:

Feel free to edit out hostnames and other potentially sensitive information.

When/if we have a complete enough understanding of what's going on, a recommendation will be provided or a new issues with more context will be filed.

Thank you.

michaelklishin commented 5 years ago

This plugin does not control queue names. I'm not sure what reply-to queues you are referring here but if you are trying to do what tutorial 6 demonstrates, it is entirely up to you what queue names you use. See what destinations are available in the STOMP guide.

At the moment his doesn't have enough details and is mailing list material. Sorry.

ghost commented 5 years ago

i am referring to the reply-to header in SEND frame of stomp. Temp Queue Destinations, it is mentioned that, inorder to create temporary queues, we should supply reply-to header. My question is how do we control the name of the temporary queue that is created.

michaelklishin commented 5 years ago

Accorindg to the code and one unit test, /temp-queue/{queue} should be supported as a value of said header. This discussion belongs to the mailing list. Consider providing a code example that can be used to understand what the end goal is.