Jason Song

Results 317 comments of Jason Song

@vacuityv this was solved via https://github.com/sofastack/sofa-boot/pull/944, you may use more recent versions, e.g. [3.18.0](https://github.com/sofastack/sofa-boot/releases/tag/v3.18.0)

This is interesting 😀

Because it's not open-sourced yet... Though it is widely used in ant group, it needs more effort before publicly available, e.g. adding more registry support(zk/consul/nacos/etc). There is no exact timeline...

``` export TUNNEL_SERVICE_PROXY_IMAGE_LATEST_VERSION=v0.1.3-arm64 s proxied setup ``` ERROR: (HTTP code 404) unexpected - manifest for registry.cn-hangzhou.aliyuncs.com/aliyunfc/ts-local:v0.1.3-arm64 not found: manifest unknown: manifest unknown

可以用管理员工具中的 删除 AppNamespace 功能 ![image](https://github.com/apolloconfig/apollo/assets/837658/fea2e38a-62ce-465b-8f5a-f561f072d614)

感谢,可以提个 PR 更新到 Python 客户端指南([zh](https://github.com/apolloconfig/apollo/blob/master/docs/zh/client/python-sdks-user-guide.md), [en](https://github.com/apolloconfig/apollo/blob/master/docs/en/client/python-sdks-user-guide.md))

> Support in-memory database This should only be enabled in quick-start scenarios, we could document this and make sure users are aware of this.

1. 没太明白为啥这条 sql 会导致 ob 的 cpu 耗尽,这个是用主键查询的。 2. 另外 in 的 id 值有多少个?看代码没有找到直接查询的地方,唯一有相关性的可能是下面这个 findFirst500ByIdGreaterThanOrderByIdAsc,一次性加载了 500 条记录,压力也不大的。 https://github.com/apolloconfig/apollo/blob/921af84678cdbea1715d8f7e2244a5db1288ac4e/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/repository/ReleaseMessageRepository.java#L31-L32

> 所以这块逻辑是否只需要查询startId和currentId之间,在ReleaseMessage表中真实存在的id即可 代码本意是如此,在实现上是用了一般数据库自增的特性来实现的。看来对 ob 不适用,可以看下是否有更好地方式来实现。