Commit Graph

3081 Commits

Author SHA1 Message Date
Clebert Suconic 468b8a954b ARTEMIS-1140: Trivial test fix
(cherry picked from commit 0146109d6a)
2017-05-03 16:41:42 -04:00
Clebert Suconic 534fd8093d ARTEMIS-1140 Avoid lock on queue for message counts
(cherry picked from commit 33f2ad65c9)
2017-05-03 16:41:31 -04:00
Clebert Suconic 6f0babb368 This closes #1245 2017-05-03 12:31:45 -04:00
Jeff Mesnil 64c89b6874 [ARTEMIS-1043] Support IPv6 in NettyConnector
Wrap the host added to the HTTP request headers with
IPV6Util.encloseHost to ensure that load balancers that reads the header
will have a valid IPv6 address.

JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1043
2017-05-03 09:56:24 +02:00
Andy Taylor a03db5baf0 This closes #1219 JDBC update and test fix 2017-04-21 10:55:56 +01:00
Andy Taylor 56a18759a7 no jira - fix test 2017-04-21 10:39:25 +01:00
Martyn Taylor 9c013e74cb ARTEMIS-1125 Persist JMS Bindings in Database on JDBC 2017-04-20 21:04:26 +01:00
Martyn Taylor 8a3f4ccd6f This closes #1216 2017-04-20 19:52:20 +01:00
Francesco Nigro 87bde15f38 ARTEMIS-1124 JDBC Network Timeout configuration
(cherry picked from commit a639774b54)
2017-04-20 19:45:19 +02:00
Martyn Taylor ec085b8ea0 This closes #1212 2017-04-19 09:36:37 +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 65481ef46a ARTEMIS-1114 Improving some comment 2017-04-14 18:07:54 -04: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
Bernd Gutjahr f07e592a66 ARTEMIS-1108: Removed AIOFileLockManager
AIOFileLockManager doesn't work on NFS-mounted share store directories.
Since the GFS2 bug https://bugzilla.redhat.com/show_bug.cgi?id=678585
has been fixed end of 2011, the class AIOFileLockManager is no longer needed and I have removed it.

(cherry picked from commit 557f02ba4d)
2017-04-12 11:07:31 -04:00
Martyn Taylor 75994b5fb2 This closes #1195 2017-04-11 10:47:47 +01:00
Francesco Nigro 3c33632882 ARTEMIS-1098 Improve flow control while streaming large messages
(cherry picked from commit c6d24e9073)
2017-04-11 10:47:46 +01:00
Martyn Taylor e82ef026b3 This closes #1192 2017-04-11 10:46:57 +01:00
Francesco Nigro a9fbd22fcb ARTEMIS-1089 fixing compilation 2017-04-11 07:30:06 +02:00
Clebert Suconic c30e7cd1da ARTEMIS-1089 fixing compilation 2017-04-10 12:50:15 -04:00
Clebert Suconic 8a4a307653 ARTEMIS-1089 Improving flow control on replication
(Cherry picked from 911888e8d1)
2017-04-07 15:30:21 -04:00
Justin Bertram f8be6a460d This closes #1178 2017-04-06 19:58:47 -05:00
Jeff Mesnil a97303118b [ARTEMIS-1043] Support IPv6 in NettyConnector
Call IPV6Util.encloseHost when creating the uri used to send the HTTP
ugrade request to ensure that IPv6 address are properly enclosed.

JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1043
2017-04-06 19:58:47 -05:00
Clebert Suconic f428f53e16 This closes #1152 2017-04-06 13:36:18 -04:00
Francesco Nigro 55f5124932 ARTEMIS-1025 Improve flow control on NettyConnection
(cherry picked from commit 27cfb2d902)
2017-04-06 18:51:58 +02:00
Clebert Suconic 7929fff893 ARTEMIS-1089 Fixing Replication catchup slow 2017-04-03 12:58:13 +01:00
Clebert Suconic b819026dfc ARTEMIS-1056 Improving allocations on InVM Transport 2017-04-03 12:58:13 +01:00
Clebert Suconic c2989e1742 ARTEMIS-1056 Removing PartialPooledByteBufAllocator 2017-04-03 12:56:21 +01:00
Martyn Taylor 200088778e ARTEMIS-1085 Perform storelineup on appendRecord
(cherry picked from commit 120b8aa7ad)
2017-04-03 12:12:33 +01:00
Martyn Taylor bae011bafb ARTEMIS-1087 Make InVM buffer pooling configurable
(cherry picked from commit 8760b3ddfd)
2017-04-03 12:12:33 +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
Bernd Gutjahr f94f8f4718 ARTEMIS-1078 Improving ActiveMQThreadPoolExecutor
This is now considering only threads waiting for the queue to get new tasks as idle.

The thread pool maintained a counter of active threads, but that counter was increased
too late in the beforeExecute method. Submitting a task created a new thread.
If now a second task was submitter before the new thread had started to execute it's task,
the second task was queued without creating a 2nd thread. So the second task was only
executed after the first task had been completed - even if the thread pool's
maximum number of thread had not been reached.

This fix now maintains the delta between the number those threads that are currently waiting
in the queue's poll or take methods as idle threads, and the number of queued tasks.
It creates new threads unless there are enough idle threads to pick up all queued tasks.

This closes #1144

(cherry picked from commit 5a31e70353)
2017-03-31 19:02:24 -04:00
Clebert Suconic ea01aeb65e This closes #1154 2017-03-29 09:59:09 -04:00
Francesco Nigro ec3ed04d08 ARTEMIS-1036 Streaming huge messages between cluster nodes causes java.lang.OutOfMemoryError: Direct buffer memory
(cherry picked from commit 1686b3545d)
2017-03-29 15:09:25 +02:00
Justin Bertram 20f5554e8d This closes #1148 2017-03-28 20:33:39 -05:00
Armand Roelens 9330fc8546 ARTEMIS-1074 Acceptors/Connectors now start up when configured to use SSL and a password codec
(cherry picked from commit 3ceb332866)
2017-03-28 17:40:35 -07:00
Justin Bertram 4e8a98f2be This closes #1137 2017-03-27 22:02:24 -05:00
Clebert Suconic 7d8f5bca02 ARTEMIS-1072: moving java-opts to /etc/artemis.profile 2017-03-27 15:03:35 -04:00
Justin Bertram 5e4fe476b6 This closes #1116 2017-03-22 10:00:21 -05:00
Jeff Mesnil 35800351ea [ARTEMIS-1057] Log AMQ214023 at DEBUG level
JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1057
2017-03-22 10:30:25 +01:00
Clebert Suconic 655f6beb04 NO-JIRA: logger on Exception
(cherry picked from commit 75a4162a36)
2017-03-14 09:51:10 -04:00
Justin Bertram 6f96b057d5 This closes #1089 2017-03-13 10:30:42 -05:00
Clebert Suconic dce89c9c75 ARTEMIS-1033 Fixing NPE on PageTX and reload 2017-03-13 09:08:30 -04:00
Martyn Taylor 87c7e05820 ARTEMIS-930 Return the ID field on createFile statement
(cherry picked from commit 0bcf003a87)
2017-03-13 10:20:28 +00:00
Martyn Taylor 512dbee133 NO-JIRA Update Copyright Dates 2017-03-10 13:13:31 +00: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
Clebert Suconic e0cd9aa8b3 NO-JIRA: update notice
(cherry picked from commit 12394afc5d)
2017-03-09 09:09:53 -05: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