This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
from d9d727b9c2 ARTEMIS-4224 Optimizing memory consumption from
MQTT5SoakTest
new 23bbf76bdf ARTEMIS-4233 Avoiding holder.iter=null with a compile time
validation
new 6d3dbc4383 ARTEMIS-4233 Large Message Issues After Failed Clients
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../utils/{BooleanUtil.java => ObjectCleaner.java} | 14 +-
.../activemq/artemis/api/core/RefCountMessage.java | 222 +++++++++---
.../artemis/core/client/ActiveMQClientLogger.java | 3 +
.../protocol/amqp/broker/AMQPLargeMessage.java | 10 +
.../protocol/amqp/broker/AMQPSessionCallback.java | 4 +-
.../protocol/amqp/broker/AMQPStandardMessage.java | 3 +-
.../amqp/proton/ProtonServerSenderContext.java | 16 +-
.../core/protocol/mqtt/MQTTSessionCallback.java | 2 +-
.../core/protocol/openwire/amq/AMQSession.java | 4 +-
.../artemis/core/protocol/stomp/StompSession.java | 2 +-
.../impl/ManagementRemotingConnection.java | 2 +-
.../impl/journal/LargeServerMessageImpl.java | 21 +-
.../impl/nullpm/NullStorageLargeServerMessage.java | 1 +
.../protocol/core/impl/CoreSessionCallback.java | 4 +-
.../artemis/core/server/ActiveMQServerLogger.java | 4 +-
.../activemq/artemis/core/server/Consumer.java | 2 +
.../core/server/cluster/impl/BridgeImpl.java | 14 +
.../core/server/cluster/impl/Redistributor.java | 11 +
.../artemis/core/server/impl/QueueImpl.java | 56 +--
.../artemis/core/server/impl/RefsOperation.java | 4 +
.../core/server/impl/ServerConsumerImpl.java | 35 +-
.../artemis/spi/core/protocol/SessionCallback.java | 2 +-
.../artemis/utils/ThreadLeakCheckRule.java | 4 +-
.../activemq/artemis/tests/util/TcpProxy.java | 321 +++++++++++++++++
.../tests/integration/cli/DummyServerConsumer.java | 5 +
.../tests/integration/client/HangConsumerTest.java | 3 +-
.../artemis/api/core/RefCountMessageAccessor.java | 8 +-
.../tests/leak/RefCountMessageLeakTest.java | 81 +++++
.../soak/interruptlm/LargeMessageFrozenTest.java | 384 +++++++++++++++++++++
.../replicationflow/SoakReplicatedPagingTest.java | 4 +-
.../unit/core/server/impl/fakes/FakeConsumer.java | 5 +
31 files changed, 1148 insertions(+), 103 deletions(-)
copy
artemis-commons/src/main/java/org/apache/activemq/artemis/utils/{BooleanUtil.java
=> ObjectCleaner.java} (77%)
create mode 100644
tests/artemis-test-support/src/main/java/org/apache/activemq/artemis/tests/util/TcpProxy.java
copy
artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/BroadcastEndpointFactory.java
=>
tests/leak-tests/src/test/java/org/apache/activemq/artemis/api/core/RefCountMessageAccessor.java
(84%)
create mode 100644
tests/leak-tests/src/test/java/org/apache/activemq/artemis/tests/leak/RefCountMessageLeakTest.java
create mode 100644
tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/interruptlm/LargeMessageFrozenTest.java