Artemis setup:
    Artemis server 1: standalone
        bin/artemis run --verbose
    Artemis server 2: standalone
        bin/artemis run --verbose

Both Artemis server setup a bridge to the other (pls see broker.xml)

Compiling the sources:
    openjdk 11
    maven 3.9.0

    For both projects:
        mvn clean install

Starting the test apps:

    Consumer connecting to Artemis server 1
        java -DportIncrement=1 -jar target/artemis.simple.consumer-0.0.1-SNAPSHOT-jar-with-dependencies.jar
    Consumer connecting to Artemis server 2
        java -DportIncrement=2 -jar target/artemis.simple.consumer-0.0.1-SNAPSHOT-jar-with-dependencies.jar
    Producer connecting to Artemis server 1:
        java -DportIncrement=1 -jar target/artemis.simple.producer-0.0.1-SNAPSHOT-jar-with-dependencies.jar

Test:
    - start both Artemis server using provided broker.xml (and bootstrap.xml for web console on different ports, pls change the path entry for server configuration)
    - start the test apps as mentioned above
    - wait a while -> no errors should occur
        - no errors even if the stress app would run
    - kill server 1 -> kill -9 <pid>
    (- the producer will throw errors -> Ctrl-c to stop it)
    (- the consumer connected to Artemis server 1 will terminate with an error)
    
    - restart the killed Artemis server 1
    - restart the consumer previously connected to Artemis server 1
    - restart the producer previously connected to Artemis server 1
Findings:
    - my host did not show much load
    - wait for a while and there should occur very few order mismatches, maybe none at all
    - starting stress app: stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 180s
    - now there should occur order mismatches for the consumer (re-)connected to Artemis server 1
        - pls see file: consumer-artemis-server-1.log

    - there is not a single order mismatch for the consumer connected to Artemis server 2 !

The following log files are attached:
    - artemis-server-1-console.log
    - artemis-server-2-console.log
    - producer.log (not really interesting)
    - consumer-artemis-server-1.log (here are the order mismatches [count devided by 3])
    - consumer-artemis-server-2.log (not a single error, except 1 expected error after the restart of the producer)

Pls let me know if I can do anything else.

Thanks in advance !

