Re: SSL using existing cert

2021-03-30 Thread Jean-Baptiste Onofre
Hi, Yes, you add your cert in the keystone, and you reference the keystone in activemq.xml configuration. Regards JB > Le 30 mars 2021 à 23:37, Justin Taylor a écrit : > > I already have the certificate that I have to use, so in that case is it a > simple matter of adding an section to my

Re: question on expiry of paged messages

2021-03-30 Thread Clebert Suconic
Just a heads up. We will still need to expire messages that are in memory. But what I plan to do is to optimize things a bit to it keeps depagjng and scanning as it’s empty. On Tue, Mar 30, 2021 at 6:30 PM Clebert Suconic wrote: > Perhaps we could optimize such use case.. issue a dapage an

Re: question on expiry of paged messages

2021-03-30 Thread Clebert Suconic
Perhaps we could optimize such use case.. issue a dapage an an immediate scan if all references in memory are expired. Do you want to create a JIRA for that? On Tue, Mar 30, 2021 at 6:18 PM Clebert Suconic wrote: > > All the messages had expiry ? > > My expectation was that the system would

Re: question on expiry of paged messages

2021-03-30 Thread Clebert Suconic
All the messages had expiry ? My expectation was that the system would depare more messages once they expired through the scanner. But perhaps that’s only happening every scan period milliseconds ? On Tue, Mar 30, 2021 at 5:24 PM Dondorp, Erwin wrote: > Hello! > > While testing, we produced

RE: SSL using existing cert

2021-03-30 Thread Justin Taylor
I already have the certificate that I have to use, so in that case is it a simple matter of adding an section to my activemq\conf\activemq.xml file (with the correct keyStore & keyStorePassword values)? Thanks -Original Message- From: Jean-Baptiste Onofre

question on expiry of paged messages

2021-03-30 Thread Dondorp, Erwin
Hello! While testing, we produced a queue in Artemis with over 1Gb of data in millions of messages. But there was never any consumer. All messages had a TTL of one hour. By now the messages have expired, but the queue browser still shows all/most messages. These messages have been paged-out,

[Your feedback matters to us] - Enterprise Messaging Survey for MQ users

2021-03-30 Thread Kohli, TP
Dear User, At Amazon Web Services, we're focused on finding ways to provide better customer experience. To do that, we need your feedback. We're hoping that you'll take 3-5 minutes of your time to share insights. Survey Link This

Recall: [Your feedback matters to us] - Enterprise Messaging Survey for MQ users

2021-03-30 Thread Kohli, TP
Kohli, TP would like to recall the message, "[Your feedback matters to us] - Enterprise Messaging Survey for MQ users".

[Your feedback matters to us] - Enterprise Messaging Survey for MQ users

2021-03-30 Thread Kohli, TP
Dear User, At Amazon Web Services, we're focused on finding ways to provide better customer experience. To do that, we need your feedback. We're hoping that you'll take 3-5 minutes of your time to share insights.

Re: send message

2021-03-30 Thread Clebert Suconic
If you call session.createQueue("QueueName") the JMS layer will perform a queueQuery on the server's side. If you actually have the system to auto-create the queue, the queue would be created... however... I wouldn't use auto-creation on production systems. I have seen things getting out of

Re: send message

2021-03-30 Thread Clebert Suconic
if you create se JMS Session with true, then you should pass in Session.SESSION_TRANSACTED. (I guess you would receive an exception if you don't... if you're not getting an exception you're lucky... and I'm not sure what constraints should be applied)... if you pass the following:

AW: send message

2021-03-30 Thread Tobias.Wolf
Thank you for the answer, I will go this way! Is it neccessary to create the session as "transacted=true" in case I want to be sure that the ByteBuf was stored sucessfully? session = connection.createSession(true, Session.AUTO_ACKNOWLEDGE); How can I check with the JMS client if a

create user in activemq 5.15.9

2021-03-30 Thread ??????o.--
hello: i have a question in using activemq 5.15.9. when i want to use activemq user, i want to know the broker has how many users ??In addition to viewing the configuration file, can I get it from other ways