背景:我需要提供一种在生产过程中以尽可能低的性能成本更改参数值的方法。
目标:我想即时更改注释值并将其立即应用于所有微服务实例。
个人背景和限制:我知道我可以使用 Spring Cloud Config 来动态更改参数,就像本文中解释的那样 ,我知道动态更改注释涉及一些挑战和陷阱,就像在stackoveflow 问题中讨论的那样。
我知道 Spring Cloud Config 可用于在启动/启动期间设置应用于所有微服务实例的集中配置。我用过一点。我想知道是否可以使用它来集中可能影响自定义注释的参数。
一个想象的解决方案是:
... 每当我需要 somepPropertyValue
@Value("${config.somePropertyValue}")
private String somePropertyValue;
@Bean
public String somePropertyValue(){
return somePropertyValue;
}
所有微服务端点中的配置客户端,不仅在应用程序启动时而且在 Spring Cloud Config Server bootstrap.properties 中管理的 somePropertyValue 更新时都必须调用:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
public class SpringConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(SpringConfigClientApplication.class, args);
}
}
@RefreshScope
@RestController
class MessageRestController {
@Value("${server.somePropertyValue:Unable to connect to config server}")
private String somePropertyValue;
@RequestMapping("/server/somePropertyValue")
String getSomePropertyValue() {
return this.somePropertyValue;
}
}
并且以某种方式在 Spring Cloud Config 中维护了 somePropertyValue,如果在生产期间发生更改,它会影响所有微服务实例中对 somePropertyValue 进行注释的任何地方的需求。
我目前正在通过在所有侦听/观察主题的 SpringBoot 微服务中添加一个 kafka 消费者来实现这种行为,并且当它接收到新消息时,它会即时更改参数值。我在所有公司微服务中创建了一个 Kafka 依赖项,这似乎很奇怪。由于我在类似的场景中使用了 Spring Config,我想知道是否有更好的选择使用一些开箱即用的 Spring 方法。在我的情况下,性能也非常重要,同步所有参数的一点延迟不是问题。延迟是指在所有微服务中更新参数的两三秒不是问题。