All Projects → jtdeane → event-driven-microservices

jtdeane / event-driven-microservices

Licence: other
No description or website provided.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to event-driven-microservices

spring-projects
Some spring sample projects
Stars: ✭ 24 (+60%)
Mutual labels:  jms, activemq
learning-dome-code
分享日常java学习代码及用例,包括主流的框架、常用的组件、以及比较好的解决方案,项目会持续更新……
Stars: ✭ 58 (+286.67%)
Mutual labels:  jms, activemq
akka-microservice
Example of a microservice with Scala, Akka, Spray and Camel/ActiveMQ
Stars: ✭ 45 (+200%)
Mutual labels:  camel, activemq
Review System Demo
A Spring Boot and AngularJS boilerplate project.
Stars: ✭ 18 (+20%)
Mutual labels:  jms, activemq
messaging-replication
eXist-db JMS based messaging and document replication extension (JMS based)
Stars: ✭ 14 (-6.67%)
Mutual labels:  jms, activemq
camel-karavan
Karavan the Camel Integration Designer
Stars: ✭ 77 (+413.33%)
Mutual labels:  camel
mongodb-replica-set
Docker setting for mongodb replica set
Stars: ✭ 21 (+40%)
Mutual labels:  docker-compose
StressThing
a software testing platform to perform stress test on web of things
Stars: ✭ 12 (-20%)
Mutual labels:  jmeter
jmeter-grpc-plugin
A JMeter plugin supports load test gRPC
Stars: ✭ 36 (+140%)
Mutual labels:  jmeter
express-redis-docker
A Node/Express app with Redis through Docker Compose
Stars: ✭ 56 (+273.33%)
Mutual labels:  docker-compose
django-boilerplate
(An opinionated) Django boilerplate to run your project on Docker Compose (Redis, Rabbitmq, base/dev/prod settings ..etc) 🌟 Give it a star if you like it.
Stars: ✭ 35 (+133.33%)
Mutual labels:  docker-compose
docker4ruby
Docker-based Ruby stack (works for Rails)
Stars: ✭ 27 (+80%)
Mutual labels:  docker-compose
qpid-jms
Mirror of Apache Qpid JMS
Stars: ✭ 60 (+300%)
Mutual labels:  jms
docker-compose-v3
No description or website provided.
Stars: ✭ 15 (+0%)
Mutual labels:  docker-compose
jmeter-plugins
Docker image for Apache JMeter with JMeter plugins - https://jmeter.apache.org & https://jmeter-plugins.org
Stars: ✭ 20 (+33.33%)
Mutual labels:  jmeter
exo
A process manager & log viewer for dev
Stars: ✭ 296 (+1873.33%)
Mutual labels:  docker-compose
camel-quarkus-examples
Apache Camel Quarkus Examples
Stars: ✭ 37 (+146.67%)
Mutual labels:  camel
dgiot-dashboard
DG-IoT平台行业应用扩展插件 DG-IoT for application plugin
Stars: ✭ 229 (+1426.67%)
Mutual labels:  activemq
MMseqs2-App
MMseqs2 app to run on your workstation or servers
Stars: ✭ 16 (+6.67%)
Mutual labels:  docker-compose
camel-language-server
The Apache Camel LSP server implementation
Stars: ✭ 31 (+106.67%)
Mutual labels:  camel

Event-Driven Microservices Demo

Docker Execution

  1. Start-up Docker via Compose

    docker-compose up

  2. Open Hawtio send messages to event.ingestion (admin/admin)

    http://localhost:8090/hawtio/welcome

Connect Remote:

  • Name: broker
  • Scheme: http
  • Host: event-broker
  • Port: 8161
  • Path: api/jolokia

Open Queue-->event.injestion

Open Send Tab

OR

  1. Open ActiveMQ Queues (admin/admin)

    http://localhost:8161/admin

Click Send Tab

  • Destination: event-ingestion
  1. Send messages

Leon Kowalksi

{
  "resourceType": "Encounter",
  "id": "EMR56789",
  "text": {
    "status": "generated",
    "div": "Nose bleading and headaches"
  },
  "status": "in-progress",
  "class": "outpatient",
  "patient": {
    "reference": "Patient/P45678",
    "display": "Leon Kowalski"
  }
}

Roy Batty

{
  "resourceType": "Encounter",
  "id": "EMR56788",
  "text": {
    "status": "generated",
    "div": "Patient admitted with chest pains"
  },
  "status": "in-progress",
  "class": "inpatient",
  "patient": {
    "reference": "Patient/P12345",
    "display": "Roy Batty"
  }
}

Eldon Tyrell

{
  "resourceType": "Encounter",
  "id": "EMR56799",
  "text": {
    "status": "generated",
    "div": "Patient admitted with massive headache"
  },
  "status": "in-progress",
  "class": "outpatient",
  "patient": {
    "reference": "Patient/99999",
    "display": "Eldon Tyrell"
  }
}

Spring-Boot Execution

Requires ActiveMQ listening on tcp://localhost:61616

  1. Build all the sub-projects - mvn clean install
  • event-common
  • event-test-harness
  • event-ingestion
  • event-auditing
  • event-care-management
  • event-cep
  1. Start all Microservices - mvn spring-boot:run -Drun.arguments="-Xmx256m,-Xms128m"
  • event-ingestion
  • event-auditing
  • event-care-management
  • event-cep
  1. Run Test Harness

cd event-test-harness/target

  • java -Dactivemq.hostname=localhost -jar event-client-1.0.2.jar Leon

  • java -Dactivemq.hostname=localhost -jar event-client-1.0.2.jar Roy

  • java -Dactivemq.hostname=localhost -jar event-client-1.0.2.jar Eldon

or start JMeter and run test suite

..event-ingestion/src/test/jmeter/Camel Mock Publisher

  1. View Results in ActiveMQ Console - http://localhost:8161/admin

default uid/pw = admin/admin

  1. View Audit File Results

cd event-auditing/target/events

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].