Gary Tully
91fd12ad1f
ARTEMIS-4480: rationalise openwire session tx usage and operation context usage, use completion callbacks to ensure exclusive consumers are isolated
2023-11-20 12:20:36 +00:00
Timothy Bish
93a74dc00c
ARTEMIS-4502 Support core messages crossing broker connection links
...
Allow for core messages to be tunneled over broker connection links used
for AMQP Federation and for broker mirroring. This eliminates the need to
convert from Core to AMQP and from loading core large messages fully into
memory for that conversion.
2023-11-16 17:55:08 +00:00
Robbie Gemmell
54c1ae630c
ARTEMIS-4509: fail if LibaioContext check fouls before class, nicer in CI than just logging and failing after anyway
2023-11-16 10:43:07 +00:00
Clebert Suconic
766e81d26e
ARTEMIS-4505 Cleanup page transactions on startup of the broker
2023-11-15 17:14:05 -05:00
Clebert Suconic
11f76bc133
ARTEMIS-4476 Validating process to remove orphaned consumers
2023-11-13 11:37:07 -05:00
Clebert Suconic
3cdd6cc672
ARTEMIS-4483 Avoid log.warn on regular AMQP closing
2023-11-13 11:02:04 -05:00
Clebert Suconic
18692ec3c4
ARTEMIS-4476 Fixing Ghost consumer situation with AMQP
2023-11-09 15:09:35 -05:00
Robbie Gemmell
66dd52fcf2
ARTEMIS-4490: update to SLF4J 2.0.9
2023-11-03 17:55:48 +00:00
Robbie Gemmell
bbe40c4b45
[maven-release-plugin] prepare for next development iteration
2023-10-27 11:14:45 +01:00
Robbie Gemmell
f4bccc1a26
[maven-release-plugin] prepare release 2.31.2
2023-10-27 11:14:19 +01:00
Clebert Suconic
845648526f
[maven-release-plugin] prepare for next development iteration
2023-10-25 14:45:43 -04:00
Clebert Suconic
5a1c9bf3d1
[maven-release-plugin] prepare release 2.31.1
2023-10-25 14:45:41 -04:00
Domenico Francesco Bruscino
c27b7b65c7
ARTEMIS-4456 Register metrics plugin
2023-10-12 10:20:58 -05:00
Clebert Suconic
42be518deb
ARTEMIS-4450 Caching hasLocal boolean on bindings to avoid transversing the maps on every call
2023-10-05 14:05:40 -04:00
a181321
4db39520f2
ARTEMIS-4450 - Auto-deleted clustered destinations can cause message loss
2023-10-05 14:05:40 -04:00
Gary Tully
cca027b1cc
ARTEMIS-4443 support broker plugin config via broker properties
2023-10-02 10:54:18 +01:00
Clebert Suconic
7c9a15e9b4
ARTEMIS-4447 Add paging prefetch parameters into address settings
...
we are adding new attributes to determine how many messages (or bytes) we are reading from paging into Queue memory.
2023-09-29 18:43:23 -04:00
Clebert Suconic
5eb02d247b
ARTEMIS-4442 Redistributor Leaking Iterators
2023-09-25 14:56:52 -04:00
Clebert Suconic
b74f47867f
ARTEMIS-4434 Some trivial logging about Redistribution
2023-09-21 12:05:42 -04:00
Nicolas Filotto
1d3fd65008
ARTEMIS-4270 Allow hierarchy of wildcard bindings
...
In case the bindings "news.#" and "news.europe.#" are registered, only the first one matches with the address "news.europe" while both are supposed to match. Those changes are meant to get rid of this limitation.
2023-09-18 12:10:13 -05:00
Clebert Suconic
0d2a94b006
[maven-release-plugin] prepare for next development iteration
2023-09-15 14:40:49 -04:00
Clebert Suconic
74f08ea059
[maven-release-plugin] prepare release 2.31.0
2023-09-15 14:40:45 -04:00
Clebert Suconic
784aa9f884
[maven-release-plugin] prepare for next development iteration
2023-09-14 16:54:07 -04:00
Clebert Suconic
816b0828eb
[maven-release-plugin] prepare release 2.31.0
2023-09-14 16:54:05 -04:00
Clebert Suconic
6c9ddfd460
[maven-release-plugin] prepare for next development iteration
2023-09-14 14:58:10 -04:00
Clebert Suconic
30e4df8ff8
[maven-release-plugin] prepare release 2.31.0
2023-09-14 14:58:07 -04:00
haanhvu
6ec2131e32
ARTEMIS-3057 Add min-disk-free feature
...
To check if the remaining disk is enough. Alternative to max-disk-usage.
2023-09-14 17:20:43 +01:00
Justin Bertram
af2672e79a
ARTEMIS-966 MQTT subscription state isn't durable
...
Durable subscrption state is part of the MQTT specification which has
not been supported until now. This functionality is implemented via an
internal last-value queue. When an MQTT client creates, updates, or
adds a subscription a message using the client-ID as the last-value is
sent to the internal queue. When the broker restarts this data is read
from the queue and populates the in-memory MQTT data-structures.
Therefore subscribers can reconnect and resume their session's
subscriptions without have to manually resubscribe.
MQTT state is now managed centrally per-broker rather than in the
MQTTProtocolManager since there is one instance of MQTTProtocolManager
for each acceptor allowing MQTT connections. Managing state per acceptor
would allow odd behavior with clients connecting to different acceptors
with the same client ID.
The subscriptions are serialized as raw bytes with a "version" byte for
potential future use, but I intentionally avoided adding complex
scaffolding to support multiple versions. We can add that complexity
later if necessary.
Some tests needed to be changed since instantiating an MQTT protocol
manager now creates an internal queue. A handful of tests assume that no
queues will exist other than the ones they create themselves. I updated
the main test super-class so that an MQTT protocol manager is not
automatically instantiated when configuring a broker for in-vm support.
2023-09-13 11:28:53 +01:00
Clebert Suconic
6a8cd175dc
ARTEMIS-4401 improving JDBC Performance with Paging by a significant factor
2023-09-12 08:34:09 -04:00
Timothy Bish
d830f04de8
ARTEMIS-4419 Add federation support to AMQP broker connections
...
Allows federation of addresses and queues over an outbound AMQP broker
connection and provide configuration via XML or broker propeties.
2023-09-11 16:38:36 -04:00
Clebert Suconic
263a44e262
ARTEMIS-4421 Page counters should work before page rebuild is done
2023-09-10 19:35:38 -04:00
Gary Tully
91debf25db
ARTEMIS-4418 use consumer delivery sequence in messageId for openwire broker sequence id, makes delivery count calculation independent of message order
2023-09-07 15:24:35 +01:00
Robbie Gemmell
9864e005d2
ARTEMIS-4174: test is verifying hostname detail, so use floating ports to avoid sporadic bind failures that are happening
2023-09-06 16:33:43 +01:00
Robbie Gemmell
aa4e4409bf
ARTEMIS-4417: use ConcurrentHashMap for the sub-maps to make their use thread safe
2023-09-05 19:13:39 +02:00
Clebert Suconic
98710fe032
ARTEMIS-4174 Changing JMXRMIRegistryPortTest to extend ActiveMQTestBase
...
This way we ensure no thread leaks in tests
2023-09-01 15:26:28 -04:00
Justin Bertram
691771c766
ARTEMIS-4174 fix style & rat
2023-09-01 11:23:48 -05:00
Marvin Blauth
4d46588cdf
ARTEMIS-4174 Listen only to provided connector-host for JMX RMI sockets
2023-09-01 11:08:57 -05:00
Gary Tully
b11945e0c7
ARTEMIS-4410 - process deliveries before removing consumer on session close, ensure strict order for a single consumer
2023-09-01 12:52:58 +01:00
Justin Bertram
60ac0f32a5
ARTEMIS-4396 fill in some gaps
2023-08-31 11:35:00 -05:00
Justin Bertram
cd8a2e5c49
ARTEMIS-4396 make address/queue internal prop durable
2023-08-31 14:09:42 +01:00
Alexey Markevich
50a1824c02
ARTEMIS-4349: Replace Guava cache with Caffeine
...
Combination of changes from Alexey Markevich with updates from Robbie Gemmell. See PRs for detail.
This closes #4584 .
This closes #4540 .
2023-08-29 16:00:53 +01:00
Justin Bertram
56c8afe934
ARTEMIS-4405 wrong user logged for authz audits
2023-08-29 15:35:22 +01:00
Andy Taylor
6b053dd290
ARTEMIS-4398 - support configuring database using Broker Properties
...
https://issues.apache.org/jira/browse/ARTEMIS-4398
2023-08-29 15:23:51 +01:00
Robbie Gemmell
c1648d5917
ARTEMIS-4406: update LocalCache persisted entry tracking to use a ConcurrentHashMap
2023-08-29 10:07:32 +01:00
Robbie Gemmell
df410da7ae
ARTEMIS-4402: add some unit tests exercising the semi-generated log/message bundles to make generation problems more quickly noticable
2023-08-25 15:02:24 +01:00
Gary Tully
84c16f1a0d
ARTEMIS-4378 ignore address federation config if connection is configured as pull, consumerWindowSize=0
2023-08-25 11:15:07 +01:00
Justin Bertram
29fafb5fed
ARTEMIS-4399 fix disabled authn/z cache
2023-08-24 11:25:29 +01:00
Alexey Markevich
67f9c9d92d
ARTEMIS-4391 tests: rework AssertionLoggerHandler
2023-08-17 05:47:24 -04:00
Yashashree Chopada
ab3e67a24b
ARTEMIS-4389 The word "mesage" should be corrected to "message"
2023-08-16 09:05:55 -04:00
Šmucr Jan
2f2dacdd34
ARTEMIS-4387 Fix empty consumer filter string leak
2023-08-14 10:06:25 +02:00