axeon
axeon
这个是知道的,有没有明确的sharding实现的方案? 另外,项目好久没有更新了
可以加入
一般来说consul的套路是server搭建集群,然后每台机器上都跑一个consul agent,这样就没你说的问题了。
这里需要优化一下的,对于微服务场景,可能因为nginx的consul链接就会导致超过1000个tcp链接
alibaba的应用全都有这个问题,乱开线程,丝毫不考虑cs切换成本。 nacos随便起一个实例,就开了1000多线程,也不知道他要干啥。
要加快了,spring 3.2是最重要的一次更新,支持了jdk21的虚拟线程。 我估计很多公司都会趁着这次机会全面迁移到jdk21。
Same problem. macOS Ventura 13.2 (m2 cpu)
application.yaml ```yaml server: port: 443 http2: enabled: true shutdown: graceful forward-headers-strategy: NATIVE compression: enabled: true error: include-message: always ssl: certificate: "classpath:/cert/default/cert.crt" certificate-private-key: "classpath:/cert/default/private.key" spring: cloud: config: allow-override: true override-none: true...
After rollback to Spring Boot 3.3.12 & Spring Cloud 2025.0.5, the X-Forward-For header can be passed correctly. I will gradually remove code and debug step by step to identify the...