Search⌘ K

Experiments

Explore hands-on experiments to implement server-side integration using Edge Side Includes in microservice architectures. Learn to create microservices that serve static and dynamic content, configure Docker containers, and route requests through Varnish cache. Understand caching strategies and simulate service failures to assess system resilience. This lesson helps you apply integration techniques in real-world scenarios.

We'll cover the following...

Experiments #

Here are some experiments you can do with all that you’ve learned in this chapter.

Supplement the system with an additional microservice.

Try it yourself! #

Try all the experiments in the environment below.

version: '3'
services:
  common:
    image: educative1/mapi_scsesi_common
  order:
    image: educative1/mapi_scsesi_order 
    ports:
     - "8090:8080"
  varnish:
    image: educative1/mapi_scsesi_varnish
    links:
     - common
     - order
    ports:
     - "8080:8080"
  • A microservice that simply displays a static HTML page can serve as an example.

  • The new ...