Yeray Borges
de7f6de094
[ARTEMIS-1666] List of prepared transaction details returns Object.toString() instead of Json string
2018-02-12 10:32:19 -06:00
Clebert Suconic
492b55e09a
ARTEMIS-1353 Initial replication of large messages out of executor
...
This is based on the work @jbertram made at the github pr #1466 and the discussions we had there
(cherry picked from commit ce6942a9aa
)
2017-09-26 14:28:07 -04:00
Martyn Taylor
5db0c8772e
NO JIRA Remove failing tests due to cherrypick
2017-09-26 14:28:06 -04:00
Howard Gao
7b1a1b058a
ARTEMIS-1221 Duplicated ID causes LargeMessage lost at backup
...
When a large message is replicated to backup, a pendingID is generated
when the large message is finished. This pendingID is generated by a
BatchingIDGenerator at backup.
It is possible that a pendingID generated at backup may be a duplicate
to an ID generated at live server.
This can cause a problem when a large message with a messageID that is
the same as another largemessage's pendingID is replicated and stored
in the backup's journal, and then a deleteRecord for the pendingID
is appended. If backup becomes live and loads the journal, it will
drop the large message add record because there is a deleteRecord of
the same ID (even though it is a pendingID of another message).
As a result the expecting client will never get this large message.
So in summary, the root cause is that the pendingIDs for large
messages are generated at backup while backup is not alive.
The solution to this is that instead of the backup generating
the pendingID, we make them all be generated in advance
at live server and let them replicated to backup whereever needed.
The ID generater at backup only works when backup becomes live
(when it is properly initialized from journal).
(cherry picked from commit d50f577cd5
)
2017-09-26 14:28:05 -04:00
Martyn Taylor
5faf2cd829
NO-JIRA Remove artemis-feature dep from integration tests
2017-09-26 14:28:05 -04:00
Clebert Suconic
e5ef406e4e
ARTEMIS-1333 Fix SendACK
...
(fix copied manually from master.. not possible to cherry-pick)
2017-08-10 22:27:57 -04:00
Clebert Suconic
9724571a98
ARTEMIS-1333 SendACK listener message loss (adding test)
...
next commit should have the fix.
this is to make it easy to confirm the fix by people looking.
(cherry picked from commit 96c6268f5a
)
2017-08-10 22:24:37 -04:00
Clebert Suconic
cba7af50b6
ARTEMIS-1304 ignoring invalid test
...
(cherry picked from commit cd9ce6a502
)
2017-07-25 10:09:04 -04:00
Clebert Suconic
ffa09afb1f
ARTEMIS-1304 fixing compilation 1.x
2017-07-24 22:55:07 -04:00
Clebert Suconic
2a2f25664c
ARTEMIS-1304 Message loss on Commmit timeout during failover
...
(cherry picked from commit 50a900c04b
)
2017-07-24 20:27:56 -04:00
xstefank
e2d9e1bb63
ARTEMIS-1257 ActiveMQActivationSpec.java should use boxed types for attributes values according to the JCA specification
...
(cherry picked from commit 553043393e
)
2017-07-24 09:42:25 -04:00
Clebert Suconic
423f26f027
ARTEMIS-1288 crash during compact control files issues
...
The system would become irresponsive if crashed right at the
control file writing.
2017-07-13 17:16:30 -04:00
Erich Duda
f0907f6f3f
ARTEMIS-1274 MultipleProducersTest.wrongQueue fails
...
(cherry picked from commit ab92306d81
)
2017-07-11 13:49:50 +02:00
Clebert Suconic
276319d72b
ARTEMIS-1269 Fixing blocked replication
...
If replication blocked anything on the journal
the processing from clients would be blocked
and nothing would work.
As part of this fix I am using an executor on ServerSessionPacketHandler
which will also scale better as the reader from Netty would be feed immediately.
2017-07-07 08:56:31 -04:00
Clebert Suconic
f744904fdb
ARTEMIS-1269 replication won't finish synchronization
...
(cherry picked from commit 6b2798a0fe02bcb5ca2f13b1431fd8dfe327d20e)
2017-07-01 00:47:50 -04:00
Erich Duda
5f346f203c
ARTEMIS-1250 ClusteredMessageCounterTest.testNonDurableMessageAddedWithPaging fails
...
Before sending of messages to server 0 begins, the test
should wait until consumer is registered at RemoteQueueBindingImpl
on server 0. Otherwise some messages may not be rebalanced
to server 1.
(cherry picked from commit c5a25d3322
)
2017-06-23 15:09:46 +02:00
Andy Taylor
0bc9ab2c49
ARTEMIS-1211 - Allow local transactions when no jta in Resource Adapter
...
https://issues.apache.org/jira/browse/ARTEMIS-1211
2017-06-14 13:20:46 -05:00
Andy Taylor
26d6bb3963
ARTEMIS-1224 - change the journal file size to nearest multiple
...
https://issues.apache.org/jira/browse/ARTEMIS-1224
2017-06-12 13:12:55 -05:00
Erich Duda
8574f9949f
ARTEMIS-1208 Do not use reconnect-atempts=-1 in tests
...
(cherry picked from commit 30e8ca656c
)
2017-06-12 08:43:36 +02:00
Francesco Nigro
fa8283f56c
ARTEMIS-1165 Artemis 1.x JMS bindings doesn't handle JDBC network problems
2017-05-17 15:00:10 +02:00
Clebert Suconic
c7dc04c2af
[maven-release-plugin] prepare for next development iteration
2017-05-08 21:00:29 -04:00
Clebert Suconic
ae41632bbe
[maven-release-plugin] prepare release 1.5.5
2017-05-08 21:00:17 -04:00
Bernd Gutjahr
88e629a7ae
ARTEMIS-1112: Added wait-for-activation option to shared-store-master config
...
Added a wait-for-activation option to shared-store master HA policies.
This option is enabled by default to ensure unchanged server startup behavior.
If this option is enabled, ActiveMQServer.start() with a shared-store master server will not return
before the server has been activated.
If this options is disabled, start() will return after a background activation thread has been started.
The caller can use waitForActivation() to wait until server is activated, or just check the current activation status.
(cherry picked from commit 6017e305d9
)
(cherry picked from commit 7aa50546b3
)
2017-05-04 11:28:12 +02:00
Martyn Taylor
9c013e74cb
ARTEMIS-1125 Persist JMS Bindings in Database on JDBC
2017-04-20 21:04:26 +01:00
Clebert Suconic
d8ff3f500f
ARTEMIS-1115 Traces and tests on JDBC Persistence
2017-04-19 00:43:40 -04:00
Martyn Taylor
2ccc4e14f1
ARTEMIS-1115 Call CriticalIOListener on JDBC Error
2017-04-19 00:35:48 -04:00
Francesco Nigro
c35960f6a4
ARTEMIS-1084 Throw RunTime on bad Oracle table size
...
(cherry picked from commit aa9ac4a914
)
2017-04-17 11:04:46 +01:00
Clebert Suconic
ec9615a01a
ARTEMIS-1114 Missing records after compacting
...
This is fixing an issue introduced on 4b47461f03
(ARTEMIS-822)
The Transactions were being looked up without the readLock and some of the controls for Read and Write lock
were broken after this.
(cherry picked from commit ddacda5062
)
2017-04-14 01:24:45 -04:00
Clebert Suconic
c2989e1742
ARTEMIS-1056 Removing PartialPooledByteBufAllocator
2017-04-03 12:56:21 +01:00
Martyn Taylor
7e4cb4d181
ARTEMIS-1084 Throw RunTime on bad Oracle table size
...
(cherry picked from commit 42bf845
)
2017-04-03 12:12:33 +01:00
Martyn Taylor
2779ad8553
ARTEMIS-990 Dont require Perms on MQTT mngment Q
...
(cherry picked from commit b33fea0d7f
)
2017-03-10 13:13:31 +00:00
John D. Ament
5896a2e176
[maven-release-plugin] prepare for next development iteration
2017-03-07 21:46:12 -05:00
John D. Ament
07807952a8
[maven-release-plugin] prepare release artemis-pom-1.5.4
2017-03-07 21:44:12 -05:00
Erich Duda
a4b33bb33a
ARTEMIS-995 Bulk of test fixes
...
This commit fixes tests:
ActiveMQScheduledComponentTest.testAccumulationOwnPool
PendingDeliveriesTest.testWithtReconnect
ReceiveTest.testReceiveImmediate
ActiveMQProducerResourceTest.testSendString
EmbeddedActiveMQResourceTest.testSendString
MultipleEmbeddedActiveMQResourcesTest.testMultipleServers
MultipleEmbeddedJMSResourcesTest.testMultipleServers
ActiveMQDynamicProducerResourceWithoutAddressTest.testSendString
ActiveMQDynamicProducerResourceWithoutAddressExceptionTest.testSendBytesToDefaultAddress
ActiveMQDynamicProducerResourceTest.testSendString
ActiveMQServerControlTest.testTotalMessageCount
EmbeddedActiveMQResourceCustomConfigurationTest.testCustomConfiguration
EmbeddedJMSResourceMultipleFileConfigurationTest.testConfiguration
EmbeddedJMSResourceQueueTest.testPushObjectMessage
EmbeddedJMSResourceSingleFileConfigurationTest.testConfiguration
EmbeddedActiveMQResourceFileConfigurationTest.testConfiguredQueue
EmbeddedJMSResourceTopicTest.testPushObjectMessage
LargeMessageFailoverTest.testTimeoutOnFailoverTransactionCommit
(cherry picked from commit 0c64cbfa4e
)
2017-02-24 17:17:21 +01:00
Clebert Suconic
20d627f2b7
ARTEMIS-989 fixing test after cherry-picking
2017-02-23 17:06:37 -05:00
Justin Bertram
4ddd969ffc
ARTEMIS-989 JMS2 context support custom session modes
...
(cherry picked from commit 0b829558b3
)
2017-02-23 11:42:21 -05:00
Martyn Taylor
f082185d7f
ARTEMIS-974 ensure will messages are retained
...
(cherry picked from commit 5a235d98b6
)
2017-02-16 20:15:12 +00:00
Clebert Suconic
446523f243
NO-JIRA: fixing alignment on test
2017-02-16 10:19:19 -05:00
Clebert Suconic
c5c50c53be
ARTEMIS-969 Unecessary buffer expansion on message delivery
...
(cherry picked from commit f38d5c7dbc
)
2017-02-15 14:39:54 -05:00
Martyn Taylor
e47b5d6951
NO-JIRA Fix after cherry-pick
2017-02-14 20:28:29 +00:00
Martyn Taylor
66c19d9408
ARTEMIS-960 Do not encode Will messages
...
(cherry picked from commit 59773c2849
)
2017-02-14 19:41:20 +00:00
Martyn Taylor
16f3659cda
[maven-release-plugin] prepare for next development iteration
2017-02-10 15:57:23 +00:00
Martyn Taylor
6996cd745f
[maven-release-plugin] prepare release 1.5.3
2017-02-10 15:55:17 +00:00
Martyn Taylor
f231fe4e9b
ARTEMIS-917 Only return body of retained message after reboot
...
(cherry picked from commit 3900cb0ec7
)
2017-02-10 14:55:24 +00:00
Martyn Taylor
7de8dd77e7
[maven-release-plugin] prepare for next development iteration
2017-02-09 20:32:08 +00:00
Martyn Taylor
ccd60d0b42
[maven-release-plugin] prepare release 1.5.3
2017-02-09 20:02:55 +00:00
Martyn Taylor
3b39dbc34a
ARTEMIS-952 Remove MQTT Queues on Clean Session
...
(cherry picked from commit b2e250d425
)
2017-02-09 14:11:05 +00:00
Clebert Suconic
6018b2d74c
ARTEMIS-937 Implementing proper alignment and adding perf-journal tool to validate the journal syncs
...
(cherry picked from commit ce035a8084
)
2017-02-03 15:15:58 -05:00
Clebert Suconic
a8a0c186d1
ARTEMIS-934 Stomp Heart beat not being stopped in some cases
...
(cherry picked from commit f79b21e866
)
2017-01-26 00:01:10 -05:00
Clebert Suconic
359c679627
NO-JIRA: just adding a test to avoid future issues
2017-01-19 15:24:30 -05:00