Re: Performance Testing Artemis ActiveMQ

2024-04-05 Thread Robbie Gemmell
Despite its claim of working with 'RabbitMQ or any AMQP message broker' I'd expect that jmeter-amqp-plugin won't actually work with many of them, including Artemis, since it indicates it is based around rabbitmq-client and so is presumably using the AMQP 0-9-1 protocol [with extensions] that

Re: Slack invitation

2024-02-07 Thread Robbie Gemmell
of the draft AMQP management extension is great, > I'm not aware of any AMQP 1.0 broker implementing it. > > I mainly ask because we are looking for "the best" (i.e a simple and > interoperable) approach to dynamically create and delete queues, exchanges, > and bindings via the AMQ

Re: Slack invitation

2024-02-06 Thread Robbie Gemmell
The invite I'll need to leave to someone else... I'm not sure what your questions are, but Artemis does not implement the "AMQP Management Version 1.0" extension though. I believe it was only ever at working-draft stage, i.e there is actually no Version 1.0 yet really, and I dont think there has

Re: REST Interface for Artemis Broker

2024-01-25 Thread Robbie Gemmell
Just FYI for anyone reading the thread later... The latest release docs are found at: https://activemq.apache.org/components/artemis/documentation/ Specifically, the user manual for the latest release (2.31.2 for a few more days) is found at:

Re: Filtrering issue when header is missing

2024-01-16 Thread Robbie Gemmell
I believe that's expected because =NULL is unknown. The filtering is essentially the SQL92 subset JMS / Jakarta Messaging outlines here: https://jakarta.ee/specifications/messaging/3.1/apidocs/jakarta.messaging/jakarta/jms/message Note it outlines that "If a property that does not exist in a

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Robbie Gemmell
Should have read all the mails first. Your python code below is almost certainly for an AMQP 0-x protocol client but note that Artemis supports clients using the AMQP 1.0 ISO standard protocol, so you won't be able to use that client with Artemis even once you set the dependencies+acceptor up

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Robbie Gemmell
You specifically note trying STOMP and AMQP clients, however you make no mention of bringing in the STOMP or AMQP protocol dependencies to enable support of those protocols. Have you? The artemis-jms-server dependency only brings in support for the CORE protocol, used by artemis-jms-client for

Re: GPG verification of apache-artemis 2.31.2

2023-12-13 Thread Robbie Gemmell
You are not missing anything, unfortunately I updated the redundant/unused 'dist dev area' KEYS file rather than the 'dist release area' KEYS file when I did the release, so when you checked earlier it simply didnt contain the appropriate key. It went unnoticed presumably as most people checking

Re: [ActiveMQ Classic] Broker dependencies in 5.18.3

2023-11-22 Thread Robbie Gemmell
Something about your specific build is making Maven select 5.18.2 for those modules, as the 5.18.3 broker module does originally depend on the 5.18.3 modules. Maven will resolve all the [transitive] dependencies of your build, and pick one version for everything used. In that process, something

Re: auto-delete on addresses that still have a producer

2023-11-03 Thread Robbie Gemmell
nitpick: AMQP 1.0 also supports 'named producers'. Thats actually all the protocol supported until an additional capability was documented for doing 'anonymous producer' stuff as e.g needed by some of JMS 1.1. Though its worth noting all producers on the 'simplified api' added in JMS 2.0 are

Re: Jakarta dependencies

2023-11-03 Thread Robbie Gemmell
Yes that list looks correct re: Jakarta.. For 5.x/6.x there are some relevant details at https://activemq.apache.org/jms2 around the ongoing JMS 2 and now Jakarta Messaging 3.1 work that might answer your questions. For Artemis, there are relevant details at

[ANNOUNCE] ActiveMQ Artemis 2.31.2 released

2023-10-27 Thread Robbie Gemmell
I am pleased to announce the release of ActiveMQ Artemis 2.31.2 Downloads are now available at: https://activemq.apache.org/components/artemis/download/ For a complete list of updates: https://activemq.apache.org/components/artemis/download/release-notes-2.31.2 This is a bug fix release.

Re: Official Container Image Issue

2023-09-19 Thread Robbie Gemmell
The referenced functionality was only added recently [1] for 2.31.0 as you noted, and so not surprisingly isnt available in 2.30.0. The change will be included in 2.31.0. A candidate is currently under release vote [2] and so all being well 2.31.0 should be available in the coming days. [1]

Re: Disable large messages support at all

2023-09-13 Thread Robbie Gemmell
end on your actual use case if a usable value was even feasible. On Wed, 13 Sept 2023 at 16:45, Robbie Gemmell wrote: > > I dont know know about that issue, no. Seems like it happens due to > converting from a 'large' Core message (which I believe is used for > MQTT too) into

Re: Disable large messages support at all

2023-09-13 Thread Robbie Gemmell
case > it's not clear why the message has been discarded, which makes intercepting > such errors very hard. > > > From: Robbie Gemmell > Date: Monday, 4 September 2023 at 19:08 > To: users@activemq.apache.org > Subject: Re: Disable large messages support at all > Neither t

Re: Disable large messages support at all

2023-09-04 Thread Robbie Gemmell
n my tests I was able to get the stream from Artemis once I switched > to use core instead of amqp) > > I’m looking forward to see the minLargeMessage supported by Camel streams > also with amqp endpoint. > > From: Robbie Gemmell > Date: Monday, 4 September 2023 at 14:11 > T

Re: Disable large messages support at all

2023-09-04 Thread Robbie Gemmell
ily affect what happens when the Core and AMQP clients are producing messages. Its not really clear so far what all you are doing at each component. On Mon, 4 Sept 2023 at 12:34, Robbie Gemmell wrote: > > The Artemis broker / client handling of 'large' messages, and > 'streaming p

Re: Disable large messages support at all

2023-09-04 Thread Robbie Gemmell
The Artemis broker / client handling of 'large' messages, and 'streaming payload to/from file at client' are 2 separate things and shouldnt be conflated. The Artemis 'Core' JMS client + broker consider messages over 100kb by default 'large' and treat them a little differently in terms of how they

Re: building docker image following the guide - not working for me - I'm sure I'm missing something

2023-08-28 Thread Robbie Gemmell
Recent JDK changes seemed to break something in the version of Karaf that the build was using. Updating to a newer version resolved things: https://issues.apache.org/jira/browse/ARTEMIS-4373 https://github.com/apache/activemq-artemis/commit/c81e079122 On Sat, 26 Aug 2023 at 15:49, Mike Williams

Re: Reg activemq jakarta namespace support

2023-08-08 Thread Robbie Gemmell
As Justin said, see https://activemq.apache.org/jms2. The 5.18.x zip distribution is only javax.jms API package based, nothing will change for the zip until 5.19.x adds jakarta.jms API package support for the wider codebase, something which is still being worked on (e.g

Re: Unexpected behaviour with virtual topics

2023-08-03 Thread Robbie Gemmell
ame()); > > > > //consume the message from the backing queue > > TextMessage messageReceived = (TextMessage) > messageConsumer.receive(5000); > > > > if (messageReceived != null) { > > System.out.println("Received message with ID: &

Re: Unexpected behaviour with virtual topics

2023-08-02 Thread Robbie Gemmell
I believe the virtualTopicConsumerWildcards stuff only applies for Openwire protocol clients (i.e ActiveMQ 5.x), as used in the example you referenced. Your description and log snippets note you are trying to use that with the Artemis Core JMS client instead, meaning those bits just dont apply.

Re: Artemis Compatible version Spring Boot Starter Artemis

2023-07-11 Thread Robbie Gemmell
Artemis releases after 2.19.1 require Java 11+ On Tue, 11 Jul 2023 at 13:49, Shivang Modi wrote: > > Hi Team, > > > > I am upgrading my Spring Boot project from ActiveMQ to Artemis. While > upgrading, if I use Artemis 2.19 version, connection happens successfully > and if I use Artemis 2.28

Re: Smallrye reactive messaging's emitter does not NACK messages sent to Artemis broker

2023-07-10 Thread Robbie Gemmell
The brokers auto-creation handling defaults to creating 'multicast' addresses+queues unless requested otherwise by either the connecting producer specifying what it wants, or by updating the brokers default address configuration for that address. That is, it gives topic-like pub-sub behaviour if

Re: Artemis client can't connect to Artemis server

2023-06-30 Thread Robbie Gemmell
The "Configuration %s: url is not set and devservices is activated. This is a bug. Please report it." IllegalStateException definitely seems like something is broken in quarkus-artemis-jms config handling, and worth reporting to them. Actually, I now see you already have as:

Re: PGP signature and SHA512 checksum do not match download

2023-06-09 Thread Robbie Gemmell
The signatures and checksums do validate ok here. The main archive links are to a mirror-selector script, be sure to click through to get the page with actual download link, rather than e.g downloading the page HTML as I guess you might have. If you aren't using the client already you might want

Re: Artemis docker container readme wrong or defective?

2023-05-23 Thread Robbie Gemmell
Also, rather than the repo folks can get the latest released script etc bits from the source release archive at https://activemq.apache.org/components/artemis/download/ On Tue, 23 May 2023 at 06:39, Vilius Šumskas wrote: > > Hi, > > you don't need whole repo, artemis-docker folder is enough. > >

Re: No Journal logging

2023-05-19 Thread Robbie Gemmell
he documentation says org.apache.activemq.artemis.journal > > Is the documentation wrong or does it just not apply to CORE? It is very > confusing, either way. > > From: Robbie Gemmell > Date: Friday, 19 May 2023 at 06:15 > To: users@activemq.apache.org > Subject: Re: No Journal l

Re: No Journal logging

2023-05-19 Thread Robbie Gemmell
would we do that? I > think you are saying we just aren’t seeing it because we aren’t hitting the > narrow set of issues that are actually logged, but I want to be sure that is > the correct interpretation. > > > From: Robbie Gemmell > Date: Thursday, 18 May 2023 at 10:13 &g

Re: No Journal logging

2023-05-18 Thread Robbie Gemmell
Those files are specifically for the 'identified messages' with IDs, as contained in them. You will only see anything for them if a situation arises to emit such a log message. That logger config is there to ensure those remain enabled by default even if adjusting with the wider config. If you

Re: Artemis activemq jms client all incompatible with artemis server

2023-05-15 Thread Robbie Gemmell
he feedback and confirming the issue. > > Regards, > > Filip > > > From: Robbie Gemmell > Sent: Wednesday, May 10, 2023 8:01 PM > To: users@activemq.apache.org > Subject: Re: Artemis activemq jms client all incompatible with artemis > server > > The artemis-jms-c

Re: Artemis activemq jms client all incompatible with artemis server

2023-05-10 Thread Robbie Gemmell
The artemis-jms-client-all module is really just intended to be used standalone, and it shades things that artemis-server / commons / etc do not (the server itself depends on the regular artemis-jms-client etc). There are various concessions with it, which is why it is the last thing mentioned in

Re: Payara connection pool 2.28.0

2023-04-20 Thread Robbie Gemmell
such things rather than more likely. On Thu, 20 Apr 2023 at 09:29, Robbie Gemmell wrote: > > As you said, the setters presumably didnt exist before, and still > dont, soperhaps the main difference is just in the logging setup? > > The old version was 2.19.1 (noted later) w

Re: Payara connection pool 2.28.0

2023-04-20 Thread Robbie Gemmell
As you said, the setters presumably didnt exist before, and still dont, soperhaps the main difference is just in the logging setup? The old version was 2.19.1 (noted later) which used JBoss Logging, while the newer version is 2.28.0 which now uses SLF4J API and in turn any supporting logging

Re: [URL Verdict: Neutral][Non-DoD Source] Re: Re: Query on OracleJava alternative for ActiveMQ

2023-03-15 Thread Robbie Gemmell
5.16.6 would use the same log4j configuration file, its still using reload4j (log4j 1.x fork) as before. 5.17.x uses Log4j 2, so you would need to use the newer log4j2 config file to configure things. On Wed, 15 Mar 2023 at 16:04, ABURTO, BRUNO M CTR USAF ACC 99 RS/MPC wrote: > > 5.16.5 > >

Re: Artemis REST API

2023-03-10 Thread Robbie Gemmell
It was removed in 2.26.0 about 6 months ago, see details at https://activemq.apache.org/components/artemis/documentation/latest/versions.html On Thu, 9 Mar 2023 at 22:52, Thai Le wrote: > > Hello, > > Does the REST API still exist in the latest version? I do not see it in the > doc of 2.28. > >

Re: Artemis - broker.xml configuration on Docker

2023-03-09 Thread Robbie Gemmell
Tangential note that 2.19.0 is old at this point, and isnt even the latest 2.19.x given that 2.19.1 was later released to backport some stuff from 2.20.0 and 2.21.0. The current release is 2.28.0. On Thu, 9 Mar 2023 at 10:04, Marko Lazić wrote: > > Hello! > > > I’ve built Artemis 2.19.0 image

Re: Versions no longer supported (EOL) of ActiveMq Artemis

2023-03-02 Thread Robbie Gemmell
What you mean by 'supported' is unclear. Folks can obviously assist with questions etc about older releases, but if you hit something needing a code change then that code change is going to arrive in a new current release, either the next planned minor or a patch release if really required. The

Re: Exception thrown in JmsTemplate.send session close

2023-02-28 Thread Robbie Gemmell
This is a debug level log including a stack trace for reference. Its not an exception being thrown to an application, or even logged at error or warning level to indicate an issue to/with the applicaton. It doesnt seem to be for indicating a problem at all and so seems fine not to be concerned

Re: Help Troubleshooting ActiveMQ on AWS

2023-02-28 Thread Robbie Gemmell
The error has nothing to do with the messages or fields in them. It is saying that a client connection is trying to use the same AMQP container-id as another existing client connection. The broker treats the connection container-id as the ClientID in JMS terms, only allowing one connection to use

Re: Request for details on activeMQ 5.16.6 release

2023-02-13 Thread Robbie Gemmell
You should review yes as 5.16.5 was announced as the intended final 5.16.x release, over 9 months ago as you noted. That is why it hasnt seen the same updates 5.17.x has during that time, any coming 5.16.6 release was not originally intended to exist. Robbie On Sat, 11 Feb 2023 at 08:49,

Re: [EXTERNAL] Re: Artemis API equivalent to ActiveMQMapMessage

2023-01-30 Thread Robbie Gemmell
Both ActiveMQ 5.x and Artemis have client jars with implementations of the JMS MapMessage interface, that both happen to be in a class called ActiveMQMapMessage, but they are independent implementations and live in different java packages. What Justin was saying is that the Artemis implementation

Re: query regarding security issues in artemis 2.19.1 ( Java 8 )

2023-01-30 Thread Robbie Gemmell
There aren't any plans for more 2.19.x releases that I know of. 2.19.1 was released a year ago, very shortly after the initial transition to requiring Java 11 with Artemis 2.20.0. There have been several newer >2.20.0 releases since then, the current version being 2.27.1 (with 2.28.0 intended

Re: question on Python QpidProton with Artemis

2023-01-17 Thread Robbie Gemmell
I believe the Proton python binding wont use PLAIN if offered, unless the connection is using TLS or it was instructed it can use it regardless: https://qpid.apache.org/releases/qpid-proton-0.38.0/proton/python/docs/proton.reactor.html#proton.reactor.Container.connect "allow_insecure_mechs

Re: Recommended way to define instance properties

2022-11-18 Thread Robbie Gemmell
2.27.0 included the addition of JAVA_ARGS_APPEND for the command run by the startup script. You should be able to use that env variable more simply to make additions to the startup args, e.g inline before calling the script, since it isnt used for anything else unlike the JAVA_ARGS one. On Fri,

Re: Mirror compatibility across versions

2022-10-14 Thread Robbie Gemmell
That helper command doesnt exist yet as Clebert said since the idea only came from discussing something else the other day, but the pre-existing logging related changes coming for 2.27.0 are covered in the docs along with diffs of the script changes from 2.26.0, you can see the current source

Re: ClassCastException when creating a new topic

2022-10-14 Thread Robbie Gemmell
A very similar report came in a couple months ago, and the reason was that the session (/children) was incorrectly being used from multiple threads, causing responses operations to 'overlap' and leading to a ClassCastException when the mismatching responses for a different operation arrived. On

Re: Disabling prefetch

2022-10-05 Thread Robbie Gemmell
e it for a bug report. > > > > Thanks > > john > > > > > [image: rg] <https://www.redpointglobal.com/> > > John Lilley > > Chief Architect, Redpoint Global Inc. > > 888 Worcester Street, Suite 200 Wellesley, MA 02482 > > *M: *+1 72

Re: Disabling prefetch

2022-10-03 Thread Robbie Gemmell
I think the suggestion was as a potential workaround for close-inside-auto-ack-listener behaviour, since it then wouldnt be trying to close within the listener. However it is a bug if that is not working (you should probably raise a JIRA with a minimal reproducer of your issue). Even if you did

Re: Processing only one message

2022-09-30 Thread Robbie Gemmell
. > > Thanks > > john > > > > > [image: rg] <https://www.redpointglobal.com/> > > John Lilley > > Chief Architect, Redpoint Global Inc. > > 888 Worcester Street, Suite 200 Wellesley, MA 02482 > > *M: *+1 7209385761 <+1%207209385761> | jo

Re: Processing only one message

2022-09-30 Thread Robbie Gemmell
If you only want to get a single message it might make more sense to use [possibly non-prefetching if really only wanting 1 message] consumer.receive(..) style calls rather than a MessageListener. Opening and closing a consumer and session per-message is quite inefficient. Are you also closing

Re: Is Artemis Production Ready?

2022-09-26 Thread Robbie Gemmell
Couple minor corrections for anyone else reading later.. On Mon, 26 Sept 2022 at 14:15, Clebert Suconic wrote: > > the major bit from the release (2) only tells you about the API. Currently > version 2 will be version 2 as long as we keep the API compatible with > previous releases. (When we

Re: maven stuck

2022-09-08 Thread Robbie Gemmell
/065bfe14f532858f2c2a20b0afb1a226b08ce013 For a released example, like you are building, just deleting the repositories definition entirely is also equivalent to that since it will have no snapshots in use. On Thu, 8 Sept 2022 at 15:00, Robbie Gemmell wrote: > > That is trying to download release artifacts from the sna

Re: maven stuck

2022-09-08 Thread Robbie Gemmell
That is trying to download release artifacts from the snapshots repository which it shouldnt be doing. Seems like the examples are incorrectly [and unnecessarily] adding a repo definition that is letting it do that. Yep, the root examples/pom.xml has some repositories defined...delete them. Them

Re: Artemis - Large Message - Core => AMQP

2022-07-25 Thread Robbie Gemmell
reate the Lambda in Java. Thank you!  > > Jan > > From: Robbie Gemmell<mailto:robbie.gemm...@gmail.com> > Sent: pondělí 25. července 2022 12:05 > To: users@activemq.apache.org<mailto:users@activemq.apache.org> > Subject: Re: Artemis - Large Message - Core => AMQP >

Re: Artemis - Large Message - Core => AMQP

2022-07-25 Thread Robbie Gemmell
Are you using StreamMessage because you think it will enable 'steaming'? If so I wouldnt bother, the Stream name isnt related, its just a JMS message type name meaning there is a list/sequence of things in it. Previously you just seemed to want to send text/bytes. For the Core client side you can

Re: Artemis - Large Message - Core => AMQP

2022-07-25 Thread Robbie Gemmell
The snagging described seems to be in the Core sending+conversion legs of things, so the receiving AMQP client wouldnt seem likely to make much difference currently. Once its converted any AMQP 1.0 client should be able to receive it really. On Fri, 22 Jul 2022 at 20:01, Clebert Suconic wrote: >

Re: Artemis - Large Message - Core => AMQP

2022-07-25 Thread Robbie Gemmell
The mailing lists strip basically all attachments so noone saw what you sent. You could attach it to the JIRA where the original was. On Fri, 22 Jul 2022 at 11:22, Andy Yar wrote: > > Hello, > Using the LargeServerMessageImpl was just an attempt providing a seemingly > easy way to introduce a

Re: JSON Message Body Not Display in Artemis Web Console

2022-07-21 Thread Robbie Gemmell
There was a followup mail, but it started a new thread due to the mail server/client screwing with the initial response. See the continuation at https://lists.apache.org/thread/zs57b4yqyhwvdl1fg9m2s4mbzw511r2x On Wed, 20 Jul 2022 at 23:24, Justin Bertram wrote: > > Any feedback here on

Re: [External] - Re: JSON Message Body Not Display in Artemis Web Console

2022-06-28 Thread Robbie Gemmell
On Mon, 27 Jun 2022 at 16:07, Richard Bergmann wrote: > > Here: > > - > from json import dumps > import stomp > import sys > > > conn = stomp.Connection12(heartbeats=(3,0)) > conn.connect("admin", > "admin", > wait=True, > headers = {"client-id":

Re: [External] - Re: How to avoid AMQ229014 TTL "dump" for a "patient" Python 3 Stomp Listener

2022-06-27 Thread Robbie Gemmell
y, and after two weeks of work, I finally have a working > solution, i.e., I have successfully migrated from Classic to Artemis. > > And all of this just so I can leverage more granular priorites! > > ____ > From: Robbie Gemmell > Sent: Friday, June 24, 20

Re: [External] - Re: How to avoid AMQ229014 TTL "dump" for a "patient" Python 3 Stomp Listener

2022-06-24 Thread Robbie Gemmell
Both your 'as is' code and 'on the other hand' description have from_server_hb_millis = 1 so its not clear what the other one was meant to be. Since you later referenced 'not requesting server HBs' I'd maybe guess your working case was just leaving it at the default value of 0. Presumably

Re: OPENWIRE acceptor parameter not being used

2022-05-23 Thread Robbie Gemmell
>From the documentation you linked: "Note at the beginning the InactivityMonitor negotiates the appropriate maxInactivityDuration and maxInactivityDurationInitalDelay. The shortest duration is taken for the connection." So I'd guess the client is asking for 30sec+10sec given those are the

Re: Durable subscriptions with fqqn results in AMQ229019: Queue already exists

2022-03-16 Thread Robbie Gemmell
Is it really a workaround? I was under the impression that was the actual expected use case, and its the only example given in the docs. On Wed, 16 Mar 2022 at 13:39, Justin Bertram wrote: > > Is the work-around I outlined viable for you or are you waiting on the fix? > > > Justin > > On Wed,

Re: NUGET package

2022-03-09 Thread Robbie Gemmell
Not an area I know about, but seems to be the same as this: https://issues.apache.org/jira/browse/AMQNET-745 https://github.com/apache/activemq-nms-api/pull/27 On Wed, 9 Mar 2022 at 13:58, Martin Sarosi wrote: > > [13:40:50 WRN] Connection Failed: activemq://localhost:61616/ >

Re: Artemis MQ critical security issue related to Jgroups

2022-03-02 Thread Robbie Gemmell
https://issues.apache.org/jira/browse/ARTEMIS-2413 On Wed, 2 Mar 2022 at 12:20, Benjamin Gentner wrote: > > Hello, > > our security analyze system tools found out that Artemis MQ (in version > 2.19.1) contains one CRITICAL security issue. Another tool from a customer > reported this too. Our

Re: Upcoming releases

2022-02-04 Thread Robbie Gemmell
Updating the site isnt actually hard at all, but its surprising how often people still manage not to get round to it for one reason or another. I recall on numerous occasions of asking about site updates for otherwise complete releases, sometimes weeks later. The last time adding a 'next release

Re: Confusion around reusing session, producer, consumer, ...

2021-11-18 Thread Robbie Gemmell
Setting a MessageListener on a consumer dedicates the Session to its asynchronous message delivery thread of control [while the connection is started]. So sending with one thread and also having listener(s) being delivered consumed messages on the same session is still multi-threading the session.

Re: [EXTERNAL] Re: ActiveMQ 5.x end of life info

2021-10-15 Thread Robbie Gemmell
You would need to upgrade to a 'current' minor version, i.e something from the website download page which is still seeing releases, typically the latest stream and sometimes an older one. On Fri, 15 Oct 2021 at 08:28, Giuseppe Sarno wrote: > > Hello, > Thanks both. Should have been bit more

Re: TLS 1.3

2021-10-15 Thread Robbie Gemmell
To add to the below, Java 11+ has TLS 1.3 enabled by default, e.g for the generic "TLS" protocol name, so unless something specifically restricts the enabledProtocols then it will be enabled. I believe more recent Java 8 JVMs have it enabled by default on the server side, but not the client side,

Re: SSL error as of artemis 2.18.0

2021-08-23 Thread Robbie Gemmell
Well, I didnt create it so much as update the description to repurpose it rather than simply close it hehe. On Mon, 23 Aug 2021 at 09:34, Robbie Gemmell wrote: > > Technically I updated it in both, I created ARTEMIS-3421 and made the > change against it so its in the next release notes,

Re: SSL error as of artemis 2.18.0

2021-08-23 Thread Robbie Gemmell
The first bit is slightly more nuanced meaning there is another possibility (which is what actually occurred in ARTEMIS-3421), so I would state it a little differently: Change the hostname value that is being connected to in the broker config, so it can match against the existing certificate

Re: SSL error as of artemis 2.18.0

2021-08-23 Thread Robbie Gemmell
Technically I updated it in both, I created ARTEMIS-3421 and made the change against it so its in the next release notes, and also mentioned ARTEMIS-3367 so it can also be seen by anyone happening across the original change via there. I tweaked the default doc and clarified what the setting does

Re: [PROPOSAL] Remove nabble links from website

2021-08-16 Thread Robbie Gemmell
ke a > great option! I'll reply to my thread with this and update the website as > well. > > > Justin > > On Mon, Aug 16, 2021 at 5:11 AM Robbie Gemmell > wrote: > > > There is also https://lists.apache.org/list.html?users@activemq.apache.org > > > > On

Re: [PROPOSAL] Remove nabble links from website

2021-08-16 Thread Robbie Gemmell
There is also https://lists.apache.org/list.html?users@activemq.apache.org On Fri, 13 Aug 2021 at 17:12, Dyck, Trevor wrote: > > Sounds great, thank-you. > > -Original Message- > From: Justin Bertram > Sent: Friday, August 13, 2021 9:09 AM > To: users@activemq.apache.org > Subject: RE:

Re: need details of parallel processing

2021-07-02 Thread Robbie Gemmell
It would seem you aren't failing to subscribe, but rather failing to create a Connection upon which attempt could even be made to subscribe. The exception looks to give the reason fairly clearly, it seems you are trying to create a connection using a ClientID that is already in use for another

Re: Understanding of Artemis multicastPrefix in AMQP address prevents the transfer of historical and pending messages of queue

2021-06-11 Thread Robbie Gemmell
x=anycast:;multicastPrefix=multicast:;sslEnabled=false > > > > > > > > > > > > > > > >

Re: Understanding of Artemis multicastPrefix in AMQP address prevents the transfer of historical and pending messages of queue

2021-06-08 Thread Robbie Gemmell
I haven't tried this, and what i'm about to say may not fully explain all the behaviour you describe, though I expected its related to the overall situation. The 'durable' option will then be causing it to create a durable topic subscriber, on your given destination. As there is no setting

Re: artemis.cmd run Found unexpected parameters: [run]

2020-09-28 Thread Robbie Gemmell
s help ' for more information on a specific command. > > > C:\java\apache-artemis-2.15.0\bin>java -version > openjdk version "11.0.7" 2020-04-14 > OpenJDK Runtime Environment AdoptOpenJDK (build 11.0.7+10) > OpenJDK 64-Bit Server VM AdoptOpenJDK (build 11.0.7+10, m

Re: Log rotation - remove files older than 5 days

2020-09-28 Thread Robbie Gemmell
I dont know if there is already a simple a way to use Logback directly/indirectly (without e.g implementing such a handler), but in terms of log rotation I see from etc/logging.properties that the config shows handler.FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandler is the default

Re: artemis.cmd run Found unexpected parameters: [run]

2020-09-28 Thread Robbie Gemmell
The below suggests you are trying to run the initial instal etc tool script, rather than a broker instance script used to start a specific broker. Did you create a broker instance as detailed in the readme (see the create command listed in the help output below) ? That creates a further script

Re: [DISCUSS] Apache Jira & GitHub integration

2020-08-07 Thread Robbie Gemmell
JIRAs have still been getting updated with PR opening/comment/closing, just maybe not in entirely the same way as old. The PR comment syncing changed to being added as JIRA work-log items by default a long long time ago, and remained that way unless you asked for them to instead be commented

Re: [ANNOUNCE] ActiveMQ Artemis 2.13.0 Released

2020-05-27 Thread Robbie Gemmell
On Wed, 27 May 2020 at 10:59, Robbie Gemmell wrote: > > On Tue, 26 May 2020 at 18:16, Clebert Suconic > wrote: > > > > I'm pleased to announce the release of ActiveMQ Artemis 2.13.0 > > > > Downloads are now available at: > > http://ac

Re: [ANNOUNCE] ActiveMQ Artemis 2.13.0 Released

2020-05-27 Thread Robbie Gemmell
On Tue, 26 May 2020 at 18:16, Clebert Suconic wrote: > > I'm pleased to announce the release of ActiveMQ Artemis 2.13.0 > > Downloads are now available at: > http://activemq.apache.org/artemis/download.html > > > This version has some major improvements on AMQP Performance. We > performed

Re: Creating a temporary queue from AMQP

2020-01-14 Thread Robbie Gemmell
The way to create a temp queue is to attach a receiving link with a source that sets 'dynamic' to true and with no address, instructing a server to create a dynamic/temporary node. The 'reply' attach source then contains its address (assuming success and that there is then a source). Robbie On

Re: Broken links relating to Destination docs in Java

2019-10-14 Thread Robbie Gemmell
Your wiki updates wont actually make it to the website, as the wiki isnt used for the site anymore. The website source and generated content are now maintained in a git repository at https://gitbox.apache.org/repos/asf/activemq-website.git , and mirror https://github.com/apache/activemq-website

Re: Non_persistent messages and qpid-jms-client-0.20.0.jar or higher.

2019-05-10 Thread Robbie Gemmell
FYI, the Qpid JMS 0.42.0 release contains a client change that should help avoid the broker bug. It should sync to Maven Central in the next hour or two. On Sun, 5 May 2019 at 16:30, Patrick Vansevenant wrote: > > > Thank you for the quick response, Tim. > > I'm indeed confronted with the same

Re: Artemis/AMQP Scheduled Delay

2019-05-09 Thread Robbie Gemmell
On the wire, the key in the message annotations map needs to be of 'symbol' type rather than string, with the delivery time value a long. I havent tried this but for the former I believe something like "symbol('x-opt-delivery-time')" would be what you need. On Thu, 9 May 2019 at 16:34, Neil

Re: Artemis GitHub repo archived?

2019-03-26 Thread Robbie Gemmell
gt; > > On Tue, Mar 26, 2019 at 9:43 AM +, "Robbie Gemmell" > wrote: > > > > > > > > > > > I also asked for assistance in infras chat but as expected though its > a bit quiet in there just now, likely need to wait until a little >

Re: Artemis GitHub repo archived?

2019-03-26 Thread Robbie Gemmell
I also asked for assistance in infras chat but as expected though its a bit quiet in there just now, likely need to wait until a little later in the day. Robbie On Tue, 26 Mar 2019 at 08:57, wrote: > > This is a mistake. > > > > > The PMC voted to deprecate apollo sub project. And i raised a

Re: [Artemis 2.6.2] AMQP messages going to expiry queue, redelivery off that queue is failing

2018-10-15 Thread Robbie Gemmell
gt; > that was acked immediately? > >> > > >> > speaking of this what is an appropriate way to NACK a message when using > >> > Client Acknowledgemnt and a JMS messageHandler? is it simply to reach > >> the > >> > end of the method execution without

Re: [Artemis 2.6.2] AMQP messages going to expiry queue, redelivery off that queue is failing

2018-08-30 Thread Robbie Gemmell
Tim and I had an initial look at this, and can see generally where the broker is internally corrupting things on send, though not yet the full picture how it gets there or what to do about it. The expiration is likely to be key, one difference with the non-transacted case is actually going to be

Re: Simple question on AMQP 1.0 protocol support

2018-07-24 Thread Robbie Gemmell
On 20 July 2018 at 17:49, dbeavon wrote: > If a client and broker implement the AMQP 1.0 standard spec, then they should > be able to interoperate, right? IE it is the standard that matters more > than the particular version/revision of the client code. > > I'm asking because redhat distributes

Re: [ANNOUNCE] ActiveMQ Artemis 2.6.2 Released

2018-06-25 Thread Robbie Gemmell
Thanks for mentioning, it looks like some of the final release steps weren't entirely completed. I've added a 2.6.2 release notes page. Robbie On 25 June 2018 at 07:28, Stefaniuk, Marcin wrote: > Release notes are a dead link. > > > -Original Message- > From: Clebert Suconic

Re: Change minLargeMessageSize on Artemis

2018-05-09 Thread Robbie Gemmell
AMQP messages arent classed as being 'large' or not at a protocol level, but rather just messages which can be sent using 1 or more message-transfer frames as needed or appropriate to the situation. Messages can be split into multiple frames based on the servers advertised max frame size, which it

Re: [DISCUSS] Using Travis CI for Artemis PR builds

2018-02-16 Thread Robbie Gemmell
I believe the mirrors in the apache github org have a shared resource pool at Travis, while jobs for your personal forks run in the global resource pool. Its not unusual for the latter to be quicker off the mark, but even then its usually just seconds of difference. Occasionally there can be a

Re: How to put "properties" on a message so they are accessible later

2017-10-12 Thread Robbie Gemmell
On 11 October 2017 at 09:46, Matthias Hanisch wrote: > Hi, > > let me explain a similar use case what we would use to show that there is a > demand for modification of application properties: > > We would like to enrich an AMQP message with additional application >

Re: Problem with setting JMSCorrelationID in ActiveMQ 5.14.1 with java Qpid client.

2016-12-13 Thread Robbie Gemmell
What client version are you using? What are you setting as the ID? Earlier client versions did trim the "ID:" and used an AMQP message-annotation to record its presence for other JMS peers, such that non-JMS AMQP peers didn't need to deal with the whole "ID:" situation in message-id or

Re: AMQP client does not deque messages !!

2016-09-21 Thread Robbie Gemmell
You can see that the client granted 1 credit (presumably when you called fetch) for the broker to send a message, then received a message, granted another credit and accepted the first message, but then didn't receive any more messages. Looks like https://issues.apache.org/jira/browse/AMQ-6422.

Re: [ANNOUNCE] Apache Artemis 1.4.0 Released

2016-09-13 Thread Robbie Gemmell
The mirrors just replicate whatever is on the main dist repo. They take a variable amount of time to update, typically several hours or more, as they aren't necessarily on the same update period and their update points are also potentially offset from each other. You can track mirror ages at

  1   2   >