Christopher L. Shannon (cshannon)
f240cb5806
AMQ-8520: Re-enable all modules to compile and build by default
...
Updates the modules part of the previous full.test profile to always
build but skip running tests by default.
Also fixed miss dependency updates including log4j and jetty
2022-03-02 10:49:52 -05:00
Christopher L. Shannon (cshannon)
00253b3219
NO-JIRA: Updating next development version to 5.18.0-SNAPSHOT
2022-03-01 09:36:34 -05:00
Jean-Baptiste Onofré
e597017200
Merge pull request #662 from jbonofre/AMQ-7426
...
[AMQ-7426] Upgrade to log4j2
2022-02-27 13:23:53 +01:00
Matt Pavlovich
094dbc89f3
[AMQ-8515] FailoverTransport should handle MaxFrameSizeExceededException ( #785 )
2022-02-25 19:46:45 -06:00
Matt Pavlovich
9956dd602a
[AMQ-8440] Set sendDuplicateFromStoreToDLQ to 'false' by default ( #773 )
2022-02-24 08:45:35 -06:00
jbonofre
472dcf8497
[AMQ-7426] Upgrade to log4j2
2022-02-24 15:20:51 +01:00
Christopher L. Shannon
856d54c7bc
Merge pull request #762 from mattrpav/AMQ-8443-tests
...
[AMQ-8443] Add unit test
2022-02-09 10:48:04 -05:00
Matt Pavlovich
09458713aa
[AMQ-8443] Add unit test
2022-02-09 08:50:24 -06:00
Christopher L. Shannon
a7109bc025
Merge pull request #761 from mattrpav/AMQ-8397-tests
...
[AMQ-8397] Add unit tests for AMQ-8397
2022-02-09 06:33:52 -05:00
Matt Pavlovich
9d8ee0d3b7
[AMQ-8397] Add unit tests for AMQ-8397
2022-02-08 22:19:57 -06:00
Matt Pavlovich
2a9f777aab
[AMQ-8413] NetworkConnectore remote user and pass unit test
2022-02-07 08:22:27 -06:00
Christopher L. Shannon
fb036974ca
Merge pull request #758 from mattrpav/AMQ-8053b
...
[AMQ-8053] UserIDBroker unit tests
2022-02-07 08:28:08 -05:00
Christopher L. Shannon (cshannon)
26a3c55833
AMQ-8412 - Add wireformat negotiation test for maxFrameSizeEnabled
...
Verify that maxFrameSizeEnabled being configured on the client or the
server is not negotiated and won't affect the other
2022-02-07 08:03:06 -05:00
Matt Pavlovich
67a2edbf0d
[AMQ-8412] Update client-side maxFrameSize handling to be more symetrical with server-side
...
- Handle in the OpenWireFormat class
- Add unit tests to confirm
- Verify compression is accounted for
- Verify the ability to disable using wireFormat.maxFrameSizeEnabled=false
- [cshannon] Reworked max frame size test case to add in all transports and all client/server cases
2022-02-06 17:45:11 -06:00
Matt Pavlovich
49f1b2c903
[AMQ-8053] UserIDBroker unit tests
2022-02-06 12:46:44 -06:00
Endre Stølsvik
9167a79b79
StatisticsBrokerPlugin: Add feat: request destination firstMessageTimestamp
...
Adding a feature (STATS_FIRST_MESSAGE_TIMESTAMP) to the
StatisticsBrokerPlugin's destination-statistics for getting the
timestamp of the first message in the destination(s) being requested: If
you on the query-message set the property
StatisticsBroker.STATS_FIRST_MESSAGE_TIMESTAMP to anything (e.g. boolean
true), a long value "firstMessageTimestamp" will be added to the
statistics reply message(s). Since the reply message has JMSTimestamp
set, which is the broker's now-timestamp, you may also on the query side
calculate the age of the first message in milliseconds. The key name was
chosen since that is the name of the corresponding feature in Artemis.
This extension of the existing feature is implemented to be as
non-intrusive as possible, adding very little runtime cost if not
requested. It also seems like the runtime cost for enabling this
feature, thus finding and adding the firstMessageTimestamp, is small.
While at it, also slightly improving an existing feature
(STATS_DENOTE_END_LIST) where a reply to a destination query can be
"null terminated": After sending the relevant replies, the
StatisticsBroker also sends an empty message. This feature is relevant
if the query is a wildcard query, thus returning multiple messages: The
empty message denotes the end of the replies. However, to activate this
feature, a somewhat complicated query destination had to be constructed.
Adopting the solution for the other StatisticsBroker feature where you
may reset the broker statistics by adding a property to the query
message, this null-termination feature now /also/ checks for the
presence of this query modifier STATS_DENOTE_END_LIST as a property.
(This property based solution was thus also adopted for the present
'firstMessageTimestamp' solution, as it was found much more intuitive).
Added tests for both the STATS_FIRST_MESSAGE_TIMESTAMP query modifier,
and the improved STATS_DENOTE_END_LIST property-based query modifier.
Had to make the Topic.doBrowse(List browseList, int max) public - the
corresponding method for Queue was already public.
Made the evaluation of whether this is a StatisticsBroker-relevant
message a microscopic bit more performant (exiting faster if not
relevant): To the initial test of whether the message is relevant, which
only checked for replyTo being set, a check for 'destination.
startsWith("ActiveMQ.Statistics")' was added. Only if so, the rest of
the evaluations kick in. Also using 'string.startsWith(..)' instead of
the verbose 'string.regionMatches(..)'.
Removed an unused import on PartitionBrokerTest.java, as IntelliJ
complained about not finding it.
2022-01-25 09:45:48 +01:00
Jean-Baptiste Onofré
3d2fb2b609
Merge pull request #707 from AlexejTimonin/sendTextMessageWithProperties-delimiter
...
[AMQ-8372] Allow custom delimiter when sending TextMessages via MBean
2022-01-22 17:14:03 +01:00
Jean-Baptiste Onofré
ee21925c08
[AMQ-7325] Upgrade to Derby 10.15.2.0
2022-01-17 16:29:53 +01:00
Jean-Baptiste Onofré
de563e76ce
Merge pull request #738 from mattrpav/AMQ-8341
...
[AMQ-8341] Remove FTP Blob strategy
2022-01-15 07:01:25 +01:00
Jean-Baptiste Onofré
ff134fd135
[AMQ-8456] Fix unit test compilation
2022-01-12 20:36:29 +01:00
Matt Pavlovich
2e784d07be
[AMQ-8341] Remove FTP Blob strategy
...
- Remove commons-net dependency
2022-01-12 11:05:43 -06:00
Matt Pavlovich
67256c61b1
[AMQ-7309] Update to jakarta.jms/jakarta.jms-api:2.0.3 ( #682 )
...
- API update only
- Throw UnsupportedOperationException
- Disable activemq-camel from build
- Formatting fixes
- Use geronimo-jms for osgi-related artifacts
- Fix features.xml invalid xml header
- Add a unit test to confirm JMS 2.0 methods for phase 1 (throw UnsupportedOperationException)
- Add deliveryTime field to Message
- Minor formatting fixes
2021-11-10 11:56:04 -06:00
Alexej Timonin
7c63227003
Allow custom delimiter when sending TextMessages via MBean
...
This enables possibility to send messages containing commas in the body
with tools such as jconsole.
Example simple text as body: body=Hello, world!
Example json as body: body={"a":"b","c":"d"}
2021-09-04 22:31:22 +02:00
Matt Pavlovich
c1a2ff25c1
[AMQ-8033] Remove activemq-camel ( #701 )
...
* [AMQ-8033] Remove activemq-camel
- Prerequisite for JMS v2.0 support
* [AMQ-8033] Remove activemq-camel
- Prerequisite for JMS v2.0 support
* [AMQ-8033] Assembly and karaf clean-ups
2021-09-03 11:21:13 -05:00
Christopher L. Shannon (cshannon)
8b99596eeb
AMQ-8349 - Ensure virtual destination consumer advisories are only
...
replayed to new advisory consumers and not existing
2021-08-05 09:58:37 -04:00
gtully
c4d2ddfce9
AMQ-7298 - fix regression with broker redelivery plugin, fix and test relates to AMQ-8168
2021-04-16 13:12:13 +01:00
charlie-aws
f8b0db2dd4
fix BrokerServiceTest by replacing powermock
...
fix BrokerServiceTest by replacing powermock
2021-03-29 10:30:47 -07:00
Jean-Baptiste Onofré
25b639c464
Merge pull request #593 from jbonofre/AMQ-7502
...
[AMQ-7502] Remove leveldb
2021-03-29 18:00:36 +02:00
charlie-aws
30986e372c
AMQ-8189 add wait time to CachedLDAPAuthorizationModuleTest
2021-03-25 13:05:37 -07:00
jbonofre
52a2bd446a
[AMQ-7502] Remove leveldb
2021-03-25 18:54:53 +01:00
Jean-Baptiste Onofré
fc0999cc87
Merge pull request #639 from charlie-cyf/AMQ8190
...
AMQ-8190 add wait time & shrink duration for CI test run
2021-03-25 12:51:22 +01:00
Jonathan Gallimore
edd0515d90
AMQ-8201 Forward commit commands for local transactions as well as XA transactions during ACK compaction
2021-03-25 11:02:53 +00:00
Charlie Chen
6691e23e48
AMQ-8190 add wait time & shrink duration for CI test run
2021-03-24 20:35:07 -07:00
gtully
09389d1ef3
AMQ-8202 - fix concurrency issue on tracking stores in mKahaDB, exposed by virtual topic concurrentSend
2021-03-24 15:55:44 +00:00
kimmking
b6ab868f94
ClientIdFilterDispatchPolicy dispatches messages in a topic to a given client. Then the message with a PTP_CLIENTID property, can be received by a mqtt client with the same clientId. ( #238 )
2021-03-22 16:22:01 +01:00
Christopher L. Shannon (cshannon)
2cf3decd8e
AMQ-8184 - Re-enable NIO tests
...
Re-enable the nio transport tests in activemq-unit-tests by default to
catch transport errors. Also fix broken tests
2021-03-11 11:16:29 -05:00
Christopher L. Shannon (cshannon)
944ca6c7e1
AMQ-8183 - prevent infinite loop when maxFrameSize is exceeded
...
This makes sure the nio transport thread properly terminates if
maxFrameSize is exceeded with OpenWire to prevent an infinite loop that
uses up all the cpu
2021-03-11 09:59:36 -05:00
gtully
2f40261362
AMQ-8131 - revert treating unmatched as real acks b/c individual acks are not tracked. make use of enableMessageExpirationOnActiveDurableSubs to ensure unmatched can eventually expire
2021-02-01 12:11:30 +00:00
gtully
e1b3204407
AMQ-8131 - track unmatched acks in the acks table
2021-01-28 14:46:29 +00:00
jbonofre
295400ae33
Fix missing ASF header
2021-01-13 15:17:06 +01:00
Marcono1234
9d220c286d
README and minor code fix ( #598 )
...
Fix README link and cleanups
2021-01-05 16:15:04 +01:00
Roman Nevezhyn
651c5ff2cf
- Tests AMQ-8104
...
- Fixes AMQ-8104
2020-12-16 12:54:03 -08:00
jbonofre
671f201a85
Quick fix on InMemoryJobSchedulerTest
2020-12-02 10:06:11 +01:00
jbonofre
2bc87c2c5f
[AMQ-8068] Fix topic memory leak on message eviction using UniquePropertyMessageEvictionStrategy
2020-11-23 06:26:37 +01:00
jbonofre
5c7e23ac90
Increase AMQ6815Test timeout (failing on slow machine like Jenkins)
2020-11-23 06:26:04 +01:00
Jean-Baptiste Onofré
fbdb302968
Merge pull request #571 from dhmgit/durable-sub-message-expiration
...
Adding an option which allows messages to expire on active durable subscriptions
2020-11-22 07:10:43 +01:00
murali.mogalayapalli
55914d3ac1
[AMQ-8028] Add sendWhenNotMatched option to composite destination filter
2020-11-21 14:20:08 +01:00
jbonofre
c9e4abf274
Give more time to AMQ6815Test (for Jenkins)
2020-11-19 08:43:50 +01:00
jbonofre
75c3fd4c34
Improve AMQ7118Test stability
2020-11-18 09:02:25 +01:00
dhmgit
2f2fe6855f
adding an option which allows messages to expire on active durable subscriptions
2020-11-10 10:22:32 -05:00
gtully
0c986c33f6
AMQ-8039 - support system property configuration of the inactivity monitor thread pool, follow example of nio. new test to verify
2020-09-11 10:39:15 +01:00
gtully
0e2b24be36
AMQ-8023 - serialize sub add with destination removal advisory processing to avoid resub blocking a necessary purge via removal, fix and test via mqtt clean session scenario
2020-08-25 16:56:50 +01:00
Jean-Baptiste Onofré
d2851888bf
Merge pull request #551 from coheigea/AMQ-7513
...
AMQ-7513 - Fix http://activemq.org links
2020-08-11 09:42:43 +02:00
Christopher L. Shannon (cshannon)
17defa79d4
NO-JIRA: Update branch to 5.17.0-SNAPSHOT after release
2020-07-14 07:27:43 -04:00
Colm O hEigeartaigh
fca3b615eb
AMQ-7513 - Fix http://activemq.org links
2020-07-10 17:29:01 +01:00
gtully
b3386c8ac7
no jira - add selector on originalDestination attribute test
2020-07-06 16:56:30 +01:00
Jean-Baptiste Onofré
334476ac63
[maven-release-plugin] prepare for next development iteration
2020-06-25 07:26:41 +02:00
Jean-Baptiste Onofré
86dd78b1aa
[maven-release-plugin] prepare release activemq-5.16.0
2020-06-25 07:26:13 +02:00
Jean-Baptiste Onofré
6908749c2f
Fix version
2020-06-25 07:13:04 +02:00
Jean-Baptiste Onofré
ff2dae82f3
[maven-release-plugin] prepare release activemq-5.16.0
2020-06-24 21:56:52 +02:00
Christopher L. Shannon (cshannon)
5901d9a6f0
AMQ-7505 - Adding missing license headers to two source files
2020-06-24 13:22:09 -04:00
jbonofre
4ed2ba22a9
Cancel 5.16.0 release
2020-06-24 15:19:34 +02:00
Jean-Baptiste Onofré
cd1e9f8697
[maven-release-plugin] prepare for next development iteration
2020-06-23 17:40:26 +02:00
Jean-Baptiste Onofré
2e890c6224
[maven-release-plugin] prepare release activemq-5.16.0
2020-06-23 17:39:53 +02:00
Jean-Baptiste Onofré
4991668549
Merge pull request #517 from coheigea/AMQ-7450
...
AMQ-7450 - Put some restrictions on the URLs that are allowed in Blob…
2020-06-23 07:01:38 +02:00
Christopher L. Shannon (cshannon)
d539ff77b9
(AMQ-7496) - Improve inflight message size test accuracy and reliability
2020-06-11 07:01:11 -04:00
Christopher L. Shannon (cshannon)
cc0bcdd5dc
AMQ-7496 - Properly decrement inflight message size on message
...
expiration
Also clean up some of the handling of inflight metrics in Prefetch
subscription
2020-06-10 11:36:34 -04:00
Colm O hEigeartaigh
45108a2328
AMQ-7450 - Put some restrictions on the URLs that are allowed in BlobMessages
2020-05-25 14:24:10 +01:00
gtully
62cfe83e9d
[AMQ-7291] rework fix to initializeWriting but just with the read only properties check
2020-05-21 10:41:58 +01:00
Jean-Baptiste Onofré
4bb7b1806c
Make DurablePersistentFalseRestartTest more robut on slow machine
2020-05-21 08:13:51 +02:00
Jean-Baptiste Onofré
2d83af17ba
Make JMSConsumerTest more robust on slow machine
2020-05-21 08:04:49 +02:00
gtully
8bedeb4b9b
[AMQ-7008] fix test dependent on the number of jdbc calls, now two new ones
2020-05-20 14:45:11 +01:00
gtully
cedac472a1
[AMQ-7488] mkahadb - detect txStore corruption and suspend recovery, auto recover if no outcomes pending
2020-05-20 12:43:37 +01:00
gtully
0ebb0f88ef
[AMQ-7485] add check for rollbackonly flag in session send such that failed ended transactions prevent further work till next transaction boundary
2020-05-15 15:39:56 +01:00
Jean-Baptiste Onofré
41bef94293
Merge pull request #521 from coheigea/AMQ-7458
...
AMQ-7458 - Implement bounds checking on the message scheduling proper…
2020-05-15 15:52:23 +02:00
jbonofre
e9caa75b1a
[AMQ-7473] Add stopOnError configuration to stop the broker when locker has an exception
2020-05-13 07:53:00 +02:00
gtully
aa03f295f5
AMQ-7464 - ensure message.copy before server session run dispatch
2020-04-08 14:57:49 +01:00
Colm O hEigeartaigh
24aaa4698c
AMQ-7458 - Implement bounds checking on the message scheduling properties
2020-03-27 12:14:03 +00:00
Jean-Baptiste Onofré
da9e4028c9
Merge pull request #513 from coheigea/AMQ-7447
...
AMQ-7447 - Update copyright years
2020-03-27 10:29:42 +01:00
Jean-Baptiste Onofré
4d968391a7
Merge pull request #518 from coheigea/AMQ-7454
...
AMQ-7454 - Remove xmpp artifacts
2020-03-27 10:22:48 +01:00
Colm O hEigeartaigh
9599ad8d95
AMQ-7457 - Support wider password encryption schemes
2020-03-27 08:34:10 +00:00
Colm O hEigeartaigh
1c504160d8
AMQ-7454 - Remove xmpp artifacts
2020-03-26 11:36:41 +00:00
Colm O hEigeartaigh
c3cdffb373
AMQ-7447 - Update copyright years
2020-03-20 07:14:43 +00:00
jbonofre
3cb8fe87ea
[AMQ-7403] Fix LeaseDatabaseLockerTest unit test (jmock assertion)
2020-03-11 18:00:16 +01:00
jbonofre
6355f507c3
Revert "AMQ-7291 - allow setting properties after clearProperties for BytesMessage, closes #420"
...
This reverts commit 503416a001
.
2020-03-10 16:16:01 +01:00
jbonofre
d878d877d5
[AMQ-7410] Align dependencies with Apache Karaf
2020-02-26 13:11:33 +01:00
Jean-Baptiste Onofré
11cdb5cb59
Ignore one unit test to avoid build failure on Jenkins (need refactoring)
2020-02-26 08:49:54 +01:00
Jonathan Gallimore
4522061527
Fix issue where the registry lookup was a hardcoded name and didn't account for the connector path
2020-02-24 11:10:46 +00:00
gtully
503416a001
AMQ-7291 - allow setting properties after clearProperties for BytesMessage, closes #420
2020-02-19 13:01:25 +00:00
Colm O hEigeartaigh
8cdddde5b4
AMQ-7399 - Adding a unit test
2020-02-12 14:09:29 +00:00
jbonofre
097506a458
[AMQ-7399] org.apache.activemq.SERIALIZABLE_PACKAGES doesn't include java* by default
2020-02-12 13:43:03 +01:00
Colm O hEigeartaigh
127852d2e7
AMQ-7142 - Inserting Bouncy Castle Provider Early in Java Security Provider Chain Breaks KeyStore Loading
2020-01-27 10:43:39 +00:00
gtully
a942591be4
no jira - usecase demonstrating effect of conduit=true|false for topic subs
2019-12-11 14:05:50 +00:00
gtully
4d6409b3b8
AMQ-5035 - fix intermittent failure due to async close
2019-12-02 11:42:08 +00:00
gtully
a0dace794a
no-jira - fix intermittent test failure where assertion fell on old bridge
2019-12-02 10:47:49 +00:00
gtully
3f5bb9710a
AMQ-5486 - fix intermittent failure in the test, reallign assertions
2019-11-25 12:13:07 +00:00
Christopher L. Shannon (cshannon)
0c6f9a9a1e
AMQ-7352 - Add support for anonymous producer advisories
...
By default this behavior is turned off but can be enabled by setting
anonymousProducerAdvisorySupport on the BrokerService to true
2019-11-22 13:35:32 -05:00
gtully
a7bf4fc804
AMQ-7302 - rename test such that is is run with surefire pattern match
2019-11-22 16:19:14 +00:00
gtully
e4f155f548
AMQ-7106 - fix intermittent failure in the test
2019-11-21 13:48:57 +00:00
gtully
f7e212ca0b
no jira - fix intermittent test failure due to incorrect assertion
2019-11-14 10:10:36 +00:00
Colm O hEigeartaigh
892c9e2a2d
AMQ-7295 - Update JTA spec
2019-10-16 14:28:17 +01:00
gtully
4af6f40186
AMQ-6494 is related, fix intermittent failure of RedeliveryPolicyTest related to vm transport server being shutdown while in use via async onException handler
2019-10-03 11:08:05 +01:00
gtully
1ab6793c85
no jira - fix test to aligh with implementation limitations of deprecated leveldb store
2019-09-26 16:19:37 +01:00
gtully
ed5edb03d7
AMQ-7311 - track recovered prepared ack locations on a per subscriber basis, fix and test
2019-09-26 15:54:57 +01:00
gtully
1c5beda834
no jira - fix intermittent test failure
2019-09-25 14:08:17 +01:00
gtully
644b529ef6
AMQ-7185 - rework to leave tx-inflight messages pending in the cursor to avoid duplicates on completion, fix and test
2019-09-24 17:32:54 +01:00
gtully
289750d7c9
AMQ-7308 - ensure kahadb message add does not auto create the message store in error, expect an existing store. fix and test
2019-09-20 10:22:56 +01:00
gtully
e8e27f0b16
AMQ-7118 ensure message size and usage is constant for the test, fix failure
2019-09-20 10:00:33 +01:00
gtully
501d55337a
AMQ-7302 - make jmx ops that pageIn aware of cursor memory limits to avoid excessive looping, fix and test
2019-09-10 11:46:04 +01:00
gtully
dc35218a2d
AMQ-7196 - fix broken test; recovery not applicable to inmemory store
2019-09-06 16:53:02 +01:00
gtully
640354fe79
no jira - fix intermittent failure by not differenciating between dispatch of delivery loops, it can be either depending on timing
2019-09-06 12:06:54 +01:00
gtully
a0f4f1c93d
no jira - fix intermittent test failure with two derby instanced in play in error
2019-09-04 17:14:37 +01:00
gtully
f155e92e58
AMQ-7298 - use final modifier in test to preserve older jdk builds
2019-09-04 13:05:42 +01:00
gtully
02548777c2
AMQ-7298 - rework redelivery message tracking to ensure no duplicate suppression (and dlq) in error for local transaction batches that failover
2019-09-04 12:24:42 +01:00
Jean-Baptiste Onofré
973c78cbec
[AMQ-7249] Upgrade to Jetty 9.4.19.v20190610
2019-08-20 21:44:28 +02:00
gtully
fb2296ac74
AMQ-7270 - remove toggle on maxPageSize, request page in of entire queue only when cache is in play or broker is non persistent, fix and test
2019-08-07 17:47:59 +01:00
Jean-Baptiste Onofré
a061109826
Merge pull request #377 from coheigea/AMQ-7244
...
AMQ-7244 - Update Apache Directory + FileServer
2019-08-07 07:46:39 +02:00
Jean-Baptiste Onofré
6ec56912fe
Merge pull request #367 from LionelCons/amq_7230
...
AMQ-7230 - Add support for regex based certificate authentication
2019-08-07 07:43:49 +02:00
Colm O hEigeartaigh
309b6a39b7
AMQ-7244 - Update Apache Directory + FileServer
2019-08-06 15:30:12 +01:00
Colm O hEigeartaigh
75023f2bed
Remove default "secret" password from the LDAPAuthorizationMap
2019-07-15 18:24:48 +01:00
Christopher L. Shannon (cshannon)
c7eff84058
AMQ-7238 - Ensure remoteId subscription map is also cleared when local
...
map is cleared inside DemandForwardingBridgeSupport
2019-07-08 08:38:34 -04:00
gtully
de3f77063f
AMQ-7234 - fix up memory usage wait timeout such that topic pfc in a transaction can see connection context state changes, fix and test
2019-06-21 16:55:13 +01:00
Lionel Cons
c4927638da
AMQ-7230 - Add support for regex based certificate authentication
2019-06-17 13:39:13 +02:00
Christopher L. Shannon (cshannon)
814a286dfe
AMQ-7221 - Fix InMemoryJobSchedulerManagementTest that was broken after
...
patch
2019-06-14 10:30:25 -04:00
Christopher L. Shannon (cshannon)
ac01af8dec
Merge branch 'AMQ-7221'
...
This closes #364
Thanks to Alan Protasio for the patch
2019-06-11 07:51:33 -04:00
gtully
28a0cc6e5a
AMQ-7225 - fix intermittent failure, avoid gc of partial tx pending commit
2019-06-11 12:36:02 +01:00
gtully
93e726d6a7
AMQ-7225 - defer cleanup task operation till recovery processing complete, track prepared location in recovered ops to ensure they are retained on recovery failure. Fix and test
2019-06-10 15:33:13 +01:00
Alan Protasio
5eb8403b1f
AMQ-7221 - Delete Scheduled messages causes ActiveMQ create/write a unnecessary huge transaction file
2019-06-04 00:02:05 -07:00
Alan Protasio
bce979349e
AMQ-7219 - ActiveMQ replays journal file on a clean/unclean shutdown with transacted session + Non persistent Messages
2019-05-30 10:13:16 -07:00
gtully
ac4f4a82a7
no jira - fix intermittent failure of JdbcXARecoveryBrokerTest#testQueuePersistentPreparedAcksAvailableAfterRollback
2019-05-17 11:46:25 +01:00
Jean-Baptiste Onofré
1e1cd11269
Merge pull request #318 from alanprot/AMQ-7107
...
[AMQ-7107] Make QueueBrowsingTest and UsageBlockedDispatchTest succee…
2019-05-14 07:39:14 +02:00
Alan Protasio
b56819123b
AMQ-7196 - During startup ActiveMq load all the scheduleDB.data on memory causing OOM
2019-05-08 12:00:42 -07:00
gtully
7404b43f2d
AMQ-7193 - resolve intermittent NPE on duplex network connector start; wait for start completion before dispatching inbound messages, fix and test
2019-05-02 16:31:26 +01:00
gtully
487d4a112e
AMQ-7185 - track durable sub prepared acks in preCommit callback and release/remove on xa outcome, avoid duplicate delivery; fix and test
2019-04-17 14:31:11 +01:00
gtully
2d394b383c
AMQ-7167 - ensure remote IP is visible in acceptor error messages from the transport connector - test and fix
2019-03-13 10:21:19 +00:00
gtully
d5df23b8fb
no jira - fix unit test failure
2019-03-13 10:03:18 +00:00
gtully
b9bcd2fcc3
AMQ-7165 - ensure failover updated uris are additive such that statically configured uris are respected
2019-03-12 12:24:20 +00:00
jgoodyear
ec9daee6c3
[AMQ-7135] Update AMQ2832 unit test expectation post 7135 fix
2019-01-28 18:08:00 -03:30
Christopher L. Shannon (cshannon)
9fba7ec352
AMQ-7132 - update RecoveryStatsBrokerTest back to using always journal sync but a smaller journal size and less test messages to speed up test
2019-01-16 13:52:52 -05:00
Christopher L. Shannon (cshannon)
ae357564b4
AMQ-7132 - user periodic fsync in RecoveryStatsBrokerTest to improve performance
2019-01-16 06:28:47 -05:00
Christopher L. Shannon (cshannon)
c3714457f1
AMQ-7136 - Improve recovery of durable subscription metrics in KahaDB
...
Updated metrics recovery to only have to iterate over the order index 1
time to recovery the pending metrics for the subscriptions instead of
making a pass over the index once per subscription
2019-01-15 14:22:26 -05:00
hkesler
5c23dd53ad
AMQ7135 : do a purge before deleting the destination
...
(cherry picked from commit 9f513f8878
)
2019-01-14 13:44:52 -03:30
Alan Protasio
4b51f8b66c
AMQ-7132 - ActiveMQ reads lots of index pages upon startup (after a graceful or ungraceful shutdown)
2019-01-14 10:54:26 -05:00
Christopher L. Shannon (cshannon)
fa2daa25e9
AMQ-7129 - fix durable message size statistics with individual ack
...
Make sure that the pending message size for a durable sub only includes
messages part of the ack range
2019-01-11 09:56:57 -05:00
Christopher L. Shannon (cshannon)
703b8cbda3
AMQ-7129 - minor junit test fix
2019-01-09 14:39:11 -05:00
Christopher L. Shannon (cshannon)
25de20c77e
AMQ-7129 - Properly recover messages from KahaDB for a durable when there are
...
messages to recover before the stored lastAck value
With individual ack mode we need to check the durable ackPosition
sequence set in the KahaDB index on subsription load to see if there are
earlier messages before the lastAck value that still haven't been acked.
While this normally wouldn't happen it is possible in individual ack
mode
2019-01-09 14:34:06 -05:00
jgoodyear
4a21edc8d5
[AMQ-7126] Improvement to perf of 5266Test
2019-01-07 21:22:34 -03:30
Jeff Genender
273afef47c
AMQ-7118 - Override hostname for naming to allow tests to apss on all
...
platforms
2019-01-07 17:07:08 -07:00
jgoodyear
b86c666c40
[AMQ-7126] Prevent OOM when recovering KahaDB and memory space is insufficient to load full page. Thank you Heath Kesler and Johan Edstrom for investigation and patch.
2019-01-03 15:46:39 -03:30
jgoodyear
612d4aeeb4
AMQ-7118 This closes #327 - with thanks to Heath Kesler
2018-12-04 12:54:30 -03:30