Spring 如何扩容实例?

Spring how to scale instance?

我想设计一个微服务系统。 我是这样看的。我将所有请求发送到 spring-gateway-api.

然后他将它发送给服务(我们称之为订单) 但是我怎样才能动态地 increase/decrease 订单服务的实例数。 如果 sping-gateway-api 服务开始因请求数而死亡,我该怎么办?

这些问题是如何解决的

But how can I dynamically increase/decrease the number of instances of the order service.

缩放(我假设您的意思是水平)可以通过 运行订购您的服务的更多实例来实现。简单来说,这意味着 运行 您的 docker 图片的多个实例。 reference2

What should I do if the sping-gateway-api service starts dying from the number of requests?

你可以多研究断路器设计模式。此类问题可以通过断路器解决。