polarismesh / grpc-java-polaris

gRPC-Java integrates with Polaris Service Discovery and Governance
Other
11 stars 19 forks source link

grpc polaris 无损下线 #49

Open stan9333 opened 1 year ago

stan9333 commented 1 year ago

我们部门有一套k8s服务、然后grpc服务下线的时候不是用的jvm hook来通知注册中心嘛。就会造成下线不稳定、有时候不能主动下线成功。

beretaa commented 1 year ago

做个ApplicationListener, 手动反注册,然后sleep阻塞一段时间,实现延迟下线, k8s要配置terminationGracePeriodSeconds PolarisAutoServiceRegistration polarisAutoServiceRegistration = SpringContextHolder.getApplicationContext().getBean(PolarisAutoServiceRegistration.class); polarisAutoServiceRegistration.stop(); Thread.sleep(10000);

chuntaojun commented 1 year ago

后续会在 polaris-java 提供标准的无损上下线 API 设计,暂时先移到 grpc-java-polaris

chuntaojun commented 8 months ago

这里需要引入最新的 polaris-java 支持无损上下线