Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Multiple instances of microservices per host

Pragya Keshap answered on February 18, 2023 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • multiple hosts in same role
  • multiple hosts in same role
  • 31. How do you configure Multiple Provider Instances?
  • What is the benefit of Single Service per Host model in Microservices?
  • How can clients find microservices and their instances?
  • A single instance of a microservice per host
  • A single instance of microservice per container
  • Multiple instances of the same configuration#
  • Creating multiple instances of the same provider#

  • Multiple instances of microservices per host

    0

    You can achieve this pattern of microservice deployment using the following methods:

    Deploying multiple instances of microservices on the same Apache Tomcat server or in the same JVM

    Deploying an instance of a microservice as a JVM process or on an Apache Tomcat server, such as a Tomcat instance, per service instance

    This pattern has the following benefits:

    It has more efficient resource utilization than other approaches

    Deploying a service instance is relatively fast

    However, this approach also has the following disadvantages:

    There is no isolation between the instances of microservices; therefore, a defective service instance could produce noise or affect other services in the same process

    It could create conflict over resource utilization between instances of microservices

    It could also cause problems due to a conflict between versions

    We can't assign a specific amount of resource utilization, nor can we increase the resource capacity for a specific instance of microservices

    It is also difficult to monitor resource utilization independently for one instance of a microservice

    Popularity 1/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on Feb 18 2023
    Pragya Keshap
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.