Posts

Showing posts with the label service mesh

Istio Service Mesh

Image
  Micro Service Challenges: Companies with large monolithic applications are breaking their applications into smaller microservices, as microservices offer agility, speed and flexibility. But during the process there are many hurdles which developers face like: • How are the requests routed between services? • Securing the communication • How do I detect failures and downtime? • How to upgrade and test new versions of a service? • Applications isn’t running in green field environments • Challenges in the network in between the services • N/w layer is hard to manage For all these problems, we use Service Mesh. Problem Solved by Service Mesh: What is Service Mesh ?? A service mesh is a dedicated infrastructure layer that you can add to your applications. It allows you to transparently add capabilities like observability, traffic management, and security, without adding them to your own code. The term “service mesh” describes both the type of software you use to implement this pattern...