zfyq124
zfyq124
> 考虑`TTL agent`的使用方式, > > * `jar`要独立自包含,即一个`jar`文件;期望将字节码库`shade`进来并`repackage`(防止类冲突/不兼容) 这个已经参考之前javassit方式处理了 > * 期望`jar`文件比较小 byte-buddy 本身就比较大(大约有3M)会造成新的ttl的交付jar由不足1M增长到4M左右。这个目前我还没有太好的处理方案 > > 使用byte-buddy 需要看看这些 > > > 支持重新增强已经加载过的类 > > 这个是大家提到多次的需求 👍 @zfyq124 由于jvm本身的限制我使用包装重写了之前ForkJoinTask的增强方案,这个需要重点关注下
> But why would you need to instrument these classes? You can normally safely ignore them. My agent will do some function base on the open-telemetry trace context so there...
@raphw I had checked the "withResubmission" API, from my understanding resubmit will retransform the error class according to the ResubmissionSpecification. But i think the resubmit will error again because the...