sunheyi
sunheyi
> Please fix the compiler errors https://github.com/GreptimeTeam/greptimedb/actions/runs/10000323455/job/27646084014?pr=4384 ok,i will fix
> Can you provide your workflow url? The msg above is not the root cause/ in this [url](https://github.com/apache/dubbo/actions/workflows/build-and-test-scheduled-3.2.yml). In general, the "Build and Test Scheduled 3.1" and "Build and Test...
> > > Can you provide your workflow url? The msg above is not the root cause/ > > > > > > in this [url](https://github.com/apache/dubbo/actions/workflows/build-and-test-scheduled-3.2.yml). In general, the "Build...
@KomachiSion Modified
@KomachiSion 这个可以关闭了
看起来是cpu负载太高了,没有办法处理arthas的请求 所以连接不上吧
没看懂,第二个图片确实是对比出来了呀 都有红线了 就是不一样的地方呀
The Java startup port is already 8080, how can I identify a port path of 8848? Is it because of this reason that I start a Java project to specifically...
是的,这是由于rthas 术语与 Java 标准术语的差异导致的,实际上默认的情况下是disable-sub-class false 模式会匹配所有子类型(包括接口实现类)。改为true的话 就会只搜索这个类了,其实感觉这个true选项并没有什么用,如果已经知道了这个类,还去搜索这个类做什么?输出和输入一样,没啥用
你可以使用官方的那个教程中的演示试试,是可以正常运行的,你这个问题主要就是以下几个问题导致的 从你提供的异常信息 `com.sun.tools.attach.AttachOperationFailedException: java.lang.NoClassDefFoundError: Could not initialize class sun.util.calendar.ZoneInfoFile` 来看,这很可能是由于 JDK 相关的配置或文件存在问题导致 `Arthas` 无法成功 attach 到目标进程。以下是一些可能的原因和解决办法: 1. **JDK 完整性问题**: - **原因**:`NoClassDefFoundError` 通常表示类在编译时可以找到,但在运行时找不到,这里提示 `sun.util.calendar.ZoneInfoFile` 类无法初始化,可能是 JDK 的某些文件损坏或缺失,影响到了 `Arthas` 对目标进程的 attach 操作。...