hebrd
hebrd
猜测是开启了推空保护引起的,可尝试关闭推空保护,具体查看[文档](https://www.bookstack.cn/read/dubbo-3.1-zh/4a2641af52b3c42f.md#5.%20%E9%BB%98%E8%AE%A4%E5%85%B3%E9%97%AD%E6%8E%A8%E7%A9%BA%E4%BF%9D%E6%8A%A4)
谢谢回复。由于整个JVM涉及比较多商业信息,不是很方便全部公开出来。能否指导一下需要哪些关键信息,我看看能否脱敏后贴一些上来。
关闭推空保护之后,暂未发现改问题继续出现。
经过进一步定位,发现在K8S如下情况必然出现该问题: * K8S CronJob调度执行完成,但是对应的Pod还未删除,假设此时未被删除的Pod IP未ip1  * Provider启动,并且K8S将上一步的ip1分配给了服务提供方的Pod * 此时消费者调用Provider服务,则必然出现如下错误`java.io.IOException: Service com.XXXService with version 0.0.0 not found, invocation rejected.` * 删除调度任务的Pod之后,服务恢复正常 @AlbumenJ 这种情况有没有什么处理建议?
> 这个 "java.io.IOException: Service com.XXXService with version 0.0.0 not found, invocation rejected." 的异常是哪个 pod 报的 应该是消费者报错: ```Failed to invoke the method methodXXX in the service serviceYYY. Tried 1 times of...
> > 经过进一步定位,发现在K8S如下情况必然出现该问题: > > > > * K8S CronJob调度执行完成,但是对应的Pod还未删除,假设此时未被删除的Pod IP未ip1 > >  > > * Provider启动,并且K8S将上一步的ip1分配给了服务提供方的Pod > > * 此时消费者调用Provider服务,则必然出现如下错误`java.io.IOException: Service com.XXXService with version 0.0.0 not found, invocation...
dubbo 3.1.3。做了如果缓存处理,后续有更新再反馈到这: ``` ReferenceCache refCache = SimpleReferenceCache.newCache(); GenericService srv =refCache.get(reference); Object res = srv.$invoke(method, args, values); ```
It would be great if subprocess count for each task could be configured independently, like TaskThreadCount in JAVA client
> This issue is two-fold, I reported the one relevant to the SDK here: > > 1. I have a worker which sends the correct token to a self-hosted Temporal...
Many thanks. It help a lot!!!