heidloff.net - Building is my Passion
Post
Cancel

Developing resilient Microservices with Istio and MicroProfile

As stated in the reactive manifesto cloud-native reactive applications need to be resilient:

The system stays responsive in the face of failure. This applies not only to highly-available, mission-critical systems – any system that is not resilient will be unresponsive after a failure. Resilience is achieved by replication, containment, isolation …

In distributed systems you need to design for failure. For example microservices, which invoke other microservices, must be intelligent enough to continue to work even if some of their dependencies are currently not available.

There are several different ways to build resilient service meshes with Istio, for example via circuit breakers and retries.

The Istio functionality for resilient cloud-native applications is generic and independent from the implementation of the microservices. However in some cases the handling of failures depends on the business logic of the applications which is why this needs to be implemented in the microservices.

I have open sourced a simple sample that demonstrates this functionality. The application uses a Vue.js frontend that displays articles. The service ‘web-api’ implements the BFF (backend for frontend) pattern. The web application accesses the ‘web-api’ service which invokes both the ‘articles’ and ‘authors’ services.

image

If you wan to run this sample, get the code from GitHub.

Make sure that you’ve set up your development environment and that you have installed the prerequisites. After this invoke the following commands to deploy the microservices.

1
2
3
4
5
6
7
$ git clone https://github.com/nheidloff/cloud-native-starter.git
$ cd cloud-native-starter
$ 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/show-urls.sh

After running the scripts above, you will get a list of all URLs in the terminal. The web application can be opened via ‘http://your-minikube-ip:31380. The initial page shows the five most recent articles including information about the authors.

image

Now let’s delete the authors service:

1
$ scripts/delete-authors-nodejs.sh

When you refresh the web application, it will still display five articles, but this time without the information about the authors. While the web application cannot display the complete information anymore, in this simple scenario it still makes sense to display the titles and links of the articles.

image

The implementation of this behavior has been done in Service.java:

1
2
3
4
5
6
7
8
try {
   Author author = DataAccessManager.getAuthorsDataAccess().getAuthor(coreArticle.author);
   article.authorBlog = author.blog;
   article.authorTwitter = author.twitter;
} catch (NoConnectivity | NonexistentAuthor e) {	
   article.authorBlog = "";
   article.authorTwitter = "";
}

Next let’s delete the articles serivce:

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

When you refresh the web application, you’ll notice that the same five articles are still displayed. That’s because in this trivial scenario the ‘web-api’ service caches the last read articles. If the ‘articles’ service is not available it simply returns the information from the cache.

I’m using the Eclipse MicroProfile fallback annotation. In this case a fallback method is invoked if the original method throws an exception.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@Fallback(fallbackMethod = "fallbackNoArticlesService")
public List<Article> getArticles() throws NoDataAccess {
   List<CoreArticle> coreArticles = new ArrayList<CoreArticle>();	
   try {
      coreArticles = DataAccessManager.getArticlesDataAccess().getArticles(5);							
   } catch (NoConnectivity e) {
      System.err.println("com.ibm.webapi.business.getArticles: Cannot connect to articles service");
      throw new NoDataAccess(e);
   }
...
}	
...
public List<Article> fallbackNoArticlesService() {
   System.err.println("com.ibm.webapi.business.fallbackNoArticlesService: Cannot connect to articles service");
   if (lastReadArticles == null) lastReadArticles = new ArrayList<Article>();
      return lastReadArticles;
}

Read the article MicroProfile, the microservice programming model made for Istio, to learn more about how to build resilient applications with both Istio and MicroProfile.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags