Skip to content

Commit 0f5d5a3

Browse files
committedOct 6, 2017
merging projects and readmes
1 parent 4938960 commit 0f5d5a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2412
-153
lines changed
 

‎README.md

+25-59
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,36 @@
11
# AMQ 7 Reference Architecture Test Suite
22

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.
55

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.
710

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.
1112

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.
1319

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.
1523

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.
1927

20-
## 3-Node Symmetric AMQ7 Broker Cluster
28+
== S2I Image ==
2129

22-
![Symmetric Broker Cluster Topology](images/Symmetric.png?raw=true "Symmetric Broker Cluster Topology")
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.
2332

24-
Demonstrates AMQ7 queue & topic interactivity across a 3-broker symmetric cluster via JMS.
33+
== Test Suite ==
2534

26-
```
27-
mvn -Dtest=SymmetricClusterTest test
28-
```
29-
30-
### 3-Pair Master/Slave AMQ7 Broker Failover Cluster
31-
32-
![Replication Cluster Topology](images/Replication.png?raw=true "Replication Cluster Topology")
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-
![Interconnect Topology](images/Interconnect.png?raw=true "Interconnect Topology")
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.

‎S2I-Base-Image/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea

0 commit comments

Comments
 (0)
Please sign in to comment.