RE: Message delivery failure and Primary Key violation on load balanced ActiveMQ Broker

2024-02-12 Thread Jack Fry (They/Them)
Looking at the logs again, we noticed this warning on the broker as well: Store limit is 30720 mb (current store usage is 0 mb). The data directory: D:\Apps\apache-activemq-5.18.3\data only has 25672 mb of usable space. - resetting to maximum available disk space: 25672 mb Could this be

Message delivery failure and Primary Key violation on load balanced ActiveMQ Broker

2024-02-12 Thread Jack Fry (They/Them)
(Re-sent this as I wanted to change the subject) Hi, Last week our ActiveMQ message broker lost a message from the queue. We have a load balanced system with two separate brokers sharing a data store. At some point during the transfer of the lease, the original lease holder started shutting

FW: What i was going to send to ActiveMQ

2024-02-12 Thread Jack Fry (They/Them)
Hi, Last week our ActiveMQ message broker lost a message from the queue. We have a load balanced system with two separate brokers sharing a data store. At some point during the transfer of the lease, the original lease holder started shutting down, which started a cascade of failures as the

Re: PowerShell and STOMP Support

2024-02-12 Thread Domenico Francesco Bruscino
Hi Shiv, I confirm that the client needs to have the binary to execute artemis producer and it supports certificate based authentication. i.e. .\bin\artemis producer --url 'tcp://localhost:61616?sslEnabled=true=mykeystore.jks=***=mytruststore.jks=***' --protocol core --user admin --password

RE: PowerShell and STOMP Support

2024-02-12 Thread Shiv Kumar Dixit
Hi Domenico, Thanks for the response. Use-case is to send some status message to broker while executing an Octopus runbook. Client mentioned that they can call PS script hence I was exploring in that direction with STOMP. 'artemis producer .' could be a good option but client needs to have

Re: PowerShell and STOMP Support

2024-02-12 Thread Domenico Francesco Bruscino
Hi Shiv, for text messages you could use the artemis CLI, i.e. .\bin\artemis producer --url tcp://localhost:61616 --protocol core --user admin --password admin --destination queue://TEST --message-count 1 --message 'Hellow World!' Regards, Domenico On Mon, 12 Feb 2024 at 09:32, Shiv Kumar

PowerShell and STOMP Support

2024-02-12 Thread Shiv Kumar Dixit
Hi, I am exploring a way to securely (TLS) send/receive message to Artemis broker via PowerShell. Previously I tried configuring REST interface, but it was updated in community ticket that REST interface is now decommissioned, and STOMP protocol is expected to cover all the use cases intended