Skip to content

Cloud Native Starter for Java EE based Microservices on Kubernetes and Istio

License

Notifications You must be signed in to change notification settings

angcap/cloud-native-starter

 
 

Repository files navigation

Cloud Native Starter for Java EE based Microservices on Kubernetes and Istio

This project contains sample code that demonstrates how to get started with cloud-native applications and microservice based architectures.

The project focusses on how to build microservices with Java EE and the open source technologies Eclipse MicroProfile, Eclipse OpenJ9, AdoptOpenJDK and Open Liberty.

The microservices can be easily deployed on Kubernetes environments running Istio like Minikube or the IBM Cloud Kubernetes Service.

The project showcases the following functionality:

  • REST APIs implementations incl. documentation
  • REST API invocations
  • Traffic management
  • Resiliency via fallbacks and circuit breakers
  • Authentication and authorization
  • Distributed tracing and logging
  • Monitoring and metrics

This diagram shows the key components:

The next screenshot shows the web application. More screenshots are in the images folder.

Setup

The sample application can be run locally on Minikube or on the IBM Cloud. The following instructions describe how to install everything locally.

If you would like to run the cloud native starter application on IBM Cloud Kubernetes Service, follow these instructions.

Before the microservices can be installed, make sure you've set up Minikube and Istio correctly or follow these instructions to set up Minikube and Istio from scratch. This should not take longer than 30 minutes.

The microservices can be installed via scripts. In addition to Minikube and Istio you need the following tools to be installed.

Prerequisites:

Deploy (and redeploy):

$ git clone https://github.com/nheidloff/cloud-native-starter.git
$ cd cloud-native-starter
$ scripts/check-prerequisites.sh
$ scripts/deploy-articles-java-jee.sh
$ scripts/deploy-web-api-java-jee.sh
$ scripts/deploy-authors-nodejs.sh
$ scripts/deploy-web-app-vuejs.sh
$ scripts/deploy-istio-ingress-v1.sh
$ scripts/show-urls.sh

Demo - Web Application

After running the scripts above, you will get a list of all URLs in the terminal.

Example URL to open the web app: http://192.168.99.100:31380

Example API endpoint: http://192.168.99.100:31380/web-api/v1/getmultiple

Demo - Traffic Routing

In order to demonstrate traffic routing you can run the following commands. 20 % of the web-api API request to read articles will now return 10 instead of 5 articles which is version 2. 80 % of the requests are still showing only 5 articles which is version 1.

$ scripts/deploy-web-api-java-jee-v2.sh
$ scripts/deploy-istio-ingress-v1-v2.sh

Demo - Resiliency

In order to demonstrate resiliency you can run the following command to delete the authors service:

$ scripts/delete-authors-nodejs.sh

In the next step delete the articles service:

$ scripts/delete-web-api-java-jee.sh

Demo - Metrics

The web-api service produces some application specific metrics.

Run 'scripts/show-urls.sh' to get the URL to display the unformatted metrics of this microservice (for example http://192.168.99.100:31223/metrics/application) as well as the URL to generate load (for example http://192.168.99.100:31223/web-api/v1/getmultiple).

In order to display the metrics with the Prometheus UI, Prometheus needs to be configured first:

$ scripts/configure-prometheus.sh

After this wait until the Prometheus pod has been restarted. Then run the command to forward the Prometheus port which is displayed as result of 'scripts/configure-prometheus.sh'.

The metrics are displayed in the Prometheus UI (http://localhost:9090) when you search for 'web-api' or 'articles'.

For example the amount of times /web-api/v1/getmultiple has been invoked can be displayed as well as the duration of these requests.

Cleanup

Run the following command to delete all cloud-native-starter components from Istio.

$ scripts/delete-all.sh

You can also delete single components:

$ scripts/delete-articles-java-jee.sh
$ scripts/delete-articles-java-jee-quarkus.sh
$ scripts/delete-web-api-java-jee.sh
$ scripts/delete-authors-nodejs.sh
$ scripts/delete-web-app-vuejs.sh
$ scripts/delete-istio-ingress.sh

Authors

Documentation

Here is a series of blog entries about this project:

Here is more information about Microservices, MicroProfile and Istio:

About

Cloud Native Starter for Java EE based Microservices on Kubernetes and Istio

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.4%
  • Shell 1.7%
  • Java 1.4%
  • Other 0.5%