|
1 | 1 | # AMQ 7 Reference Architecture Test Suite
|
2 | 2 |
|
3 |
| -AMQ7 RefArch test suite using JMS to showcase various broker uses, clustering, high-availability & interconnect routing features. The included tests are, in essence, runner scripts that are best |
4 |
| -consumed individually to understand the aspect showcased within each. |
| 3 | +This reference architecture demonstrates basic messaging patterns with single-broker, clustered, and fault-tolerant Red Hat JBoss AMQ 7 topologies, as well as direct, closest, balanced and |
| 4 | +multicast Interconnect routing configurations. |
5 | 5 |
|
6 |
| -## Prerequisites |
| 6 | +== Overview == |
| 7 | +Based on the upstream Apache ActiveMQ and Apache Qpid community projects, Red Hat JBoss AMQ 7 is a lightweight, standards-based open source messaging platform designed to enable real-time |
| 8 | +communication between different applications, services, devices, and Internet of Things (IoT) devices. It also serves as the messaging foundation for Red Hat JBoss Fuse, Red Hat’s lightweight, |
| 9 | +flexible integration platform, and is designed to provide the real-time, distributed messaging capabilities needed to support an agile integration approach for modern application development. |
7 | 10 |
|
8 |
| -* JDK 1.8+ |
9 |
| -* Maven |
10 |
| -* OpenShift 3.X environment running broker/router topologies from [correlating project](https://github.com/jeremyary/amq7-image). |
| 11 | +AMQ 7 introduces technology enhancements across three core components: the broker, clients, and Interconnect router. |
11 | 12 |
|
12 |
| -## Standalone AMQ7 Broker |
| 13 | +=== Broker === |
| 14 | +The :amq: broker, based on Apache ActiveMQ Artemis, manages connections, queues, topics, and subscriptions. The new :amq: broker has a asynchronous internal architecture, which can increase |
| 15 | +performance and scalability |
| 16 | +and enable it to handle more concurrent connections and achieve greater message throughput. AMQ Broker is a full-featured, message-oriented middleware broker. It offers specialized queueing |
| 17 | +behaviors, message persistence, and manageability. Core messaging is provided with support for different messaging patterns such as publish-subscribe, point-to-point, and store-and-forward. AMQ 7 |
| 18 | +supports multiple protocols and client languages, allowing integration of many, if not all, application assets. |
13 | 19 |
|
14 |
| -Demonstrates AMQ7 queue & topic interactivity and various basic EIP patterns via JMS. |
| 20 | +=== Clients === |
| 21 | +AMQ 7 expands its support of popular messaging APIs and protocols by adding new client libraries, including Java Message Service (JMS) 2.0, JavaScript, C++, .Net, and Python. With existing |
| 22 | +support for the popular open protocols MQTT and AMQP, :amq: now offers broad interoperability across the IT landscape that can open up data in embedded devices to inspection, analysis, and control. |
15 | 23 |
|
16 |
| -``` |
17 |
| -mvn -Dtest=SingleBrokerTest test |
18 |
| -``` |
| 24 | +=== Interconnect === |
| 25 | +The new Interconnect router in :amq: enables users to create an internet-scale network of uniformly-addressed messaging paths spanning data centers, cloud services, and geographic zones. The |
| 26 | +interconnect component serves as the backbone for distributed messaging, providing redundant network pathing for fault handling, traffic optimization, and more secure and reliable connectivity. |
19 | 27 |
|
20 |
| -## 3-Node Symmetric AMQ7 Broker Cluster |
| 28 | +== S2I Image == |
21 | 29 |
|
22 |
| - |
| 30 | +The S2I-Base-Image directory supplies a base build image & accompanying template set for establishing an environment on OpenShift Container Platform featuring single-broker, symmetric, |
| 31 | +fault-tolerant, and brokerless Interconnect topologies. |
23 | 32 |
|
24 |
| -Demonstrates AMQ7 queue & topic interactivity across a 3-broker symmetric cluster via JMS. |
| 33 | +== Test Suite == |
25 | 34 |
|
26 |
| -``` |
27 |
| -mvn -Dtest=SymmetricClusterTest test |
28 |
| -``` |
29 |
| - |
30 |
| -### 3-Pair Master/Slave AMQ7 Broker Failover Cluster |
31 |
| - |
32 |
| - |
33 |
| - |
34 |
| -Demonstrates producing/consuming to/from queues before and after a master broker failover scenario via JMS. |
35 |
| - |
36 |
| -``` |
37 |
| -mvn -Dtest=ReplicatedFailoverTest test |
38 |
| -``` |
39 |
| - |
40 |
| -## 7-Node Interconnect Router Topology |
41 |
| - |
42 |
| - |
43 |
| - |
44 |
| -Demonstrates various Interconnect routing mechanisms across a topology featuring several inter-router connections and multiple endpoint listeners for client |
45 |
| -connectivity via JMS. |
46 |
| - |
47 |
| -* Direct produce/consume: |
48 |
| -``` |
49 |
| -mvn -Dtest=InterconnectTest#testSendDirect test |
50 |
| -``` |
51 |
| - |
52 |
| -* Multicast from a single producer to 4 consumers: |
53 |
| -``` |
54 |
| -mvn -Dtest=InterconnectTest#testSendMulticast test |
55 |
| -``` |
56 |
| - |
57 |
| -* Balanced multi-consumer distribution with equal route weight: |
58 |
| -``` |
59 |
| -mvn -Dtest=testSendBalancedSameHops test |
60 |
| -``` |
61 |
| - |
62 |
| -* Balanced multi-consumer distribution with differentiating route weight: |
63 |
| -``` |
64 |
| -mvn -Dtest=testSendBalancedDifferentHops test |
65 |
| -``` |
66 |
| - |
67 |
| -* Single-consumer routing to closest consumer based on origin point: |
68 |
| -``` |
69 |
| -mvn -Dtest=testSendClosest test |
70 |
| -``` |
| 35 | +The Test-Suite directory supplies a maven-based project housing a test suite that will showcase the various topologies available after building an OpenShift environment from the provided S2I base |
| 36 | +image and templates. |
0 commit comments