Microservice Architecture - Challenges

In the Micro Service Architecture world , We need to deal with more services in Enterprise level compared to current monolith world. We have the following basic challenges need to face in the Micro Service Architecture Challenges in MSA: 1) Service Management 2) Data Management Service Management : We are dealing with more number of services in MSA world compared to our current world . Here I am going to explain the how to manage the services in terms of access/invoke in the MSA world. In the normal world , we are using the port/IP to access the services and also we maintains those values into Config/DB . Based on the env we will place the different values for those attributes since we are managing only few services. Assume that we are managing 100 plus services in our environment , its more tedious work to manage those service's infra information like to PORT/IP and etc. Here we will see how to h...