Replies: 8 comments
-
First idea is update sendAdminMessage method to:
|
Beta Was this translation helpful? Give feedback.
-
I'm not entirely sure because could not test more variants now but it works for me:
Please make more tests if you could. |
Beta Was this translation helpful? Give feedback.
-
I don't really understand how your topics/queues are defined. To summarize, can you tell how are mapped the following combination for you?
|
Beta Was this translation helpful? Give feedback.
-
I think that correct variant is:
|
Beta Was this translation helpful? Give feedback.
-
I commit some code to reflect that. you can download the beta version here: |
Beta Was this translation helpful? Give feedback.
-
Thank you for update. I have tested you code. It main cases it works ok, but i have lost 1 queue.
It should be selected by that condition: Do you have any ideas? |
Beta Was this translation helpful? Give feedback.
-
Is this queue marked as temporary and in the preference you said to not show system/temporary objects? |
Beta Was this translation helpful? Give feedback.
-
You are right. I enabled system/temporary objects in preference and got that queue. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
Let me tell about ActiveMQArtemis2QManager.class. I found algorithm of defining topic and queues in it. It is usually should works well, but I wouldn't be myself if I didn't work on exceptional situations and notes 😄
Now all my queues in Artemis MQ defined as topics. Thats why because delivery mode of them are arrays:
["MULTICAST", "ANYCAST"]
and queues have arrays of 1 element with same name.
Of cause you could tell "THIS IS ANTIPATTERN!" and you will be right. But my server is not configurable by me and i could not fix that. I have to live with this.
Some useful pages to read from official documentation:
Main idea is note:
That situation forced me to turn to the documentation and help to fix your algorithm of defining topic and queues.
I will take timeout to think. And will try to return with new algorithm.
I would be grateful if you have any more useful documentation on this issue.
Beta Was this translation helpful? Give feedback.
All reactions