Skip to content

[BUG]Investigate possible Netty buffer leak #47271

@FabianMeiswinkel

Description

@FabianMeiswinkel

Describe the bug
Tests in OrderByDocumentQueryTest.java show logs intermittently like below - this is purely based on client implementations - there are two implementations in the sdk/cosmos/azure-cosmos/implementation/directconnectivity and sdk/cosmos/azure-cosmos/implementation/http folders - one using ReactorNettyClient for HTTP and the other using Netty directly with a custom TCP protocol rntbd. Please review the implementations for ByteToMessageDecoder and ChannelHandlers in sdk/cosmos/azure-cosmos for bugs that could explain these intermittent leaks. Most likely due to missing release on discard?

2025-11-13T22:06:20.6753978Z 2025-11-13 22:06:20,657 [reactor-http-epoll-2] ERROR CosmosNettyLeakDetectorFactory - NETTY LEAK (traced) type=ByteBuf records=
2025-11-13T22:06:20.6754181Z
2025-11-13T22:06:20.6754777Z Recent access records:
2025-11-13T22:06:20.6755277Z #1:
2025-11-13T22:06:20.6755856Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:300)
2025-11-13T22:06:20.6756462Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6757072Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6757662Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6758257Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6758815Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6759392Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6760098Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6760714Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6761301Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6761875Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6762467Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6763066Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6763651Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6764353Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6764986Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6765581Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6766166Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6766877Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6767463Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6768038Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6768631Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6769240Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6769984Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6770555Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6771061Z #2:
2025-11-13T22:06:20.6771648Z io.netty.buffer.AdvancedLeakAwareByteBuf.skipBytes(AdvancedLeakAwareByteBuf.java:533)
2025-11-13T22:06:20.6772229Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:518)
2025-11-13T22:06:20.6772836Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6773459Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6774045Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6774613Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6775351Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6775964Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6776564Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6777179Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6777749Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6778331Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6778912Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6779509Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6780332Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6780980Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6781588Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6782191Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6782786Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6783399Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6784005Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6784596Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6785191Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6785913Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6786525Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6787101Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6787694Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6788270Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6788856Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6789395Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6790034Z #3:
2025-11-13T22:06:20.6790626Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6791209Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:517)
2025-11-13T22:06:20.6791850Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6792456Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6793035Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6793614Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6794221Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6794819Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6795433Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6796033Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6796739Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6797327Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6797890Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6798485Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6799067Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6799651Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6800377Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6800982Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6801580Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6802188Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6802790Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6803377Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6803964Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6804581Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6805153Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6805720Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6806307Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6806994Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6807623Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6808206Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6808707Z #4:
2025-11-13T22:06:20.6809292Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6809999Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:516)
2025-11-13T22:06:20.6810605Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6811214Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6811802Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6812379Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6812996Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6813609Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6814203Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6814802Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6815358Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6815925Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6816484Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6817078Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6817794Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6818382Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6818991Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6819597Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6820315Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6820925Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6821532Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6822126Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6822735Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6823356Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6823922Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6824498Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6825084Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6825660Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6833636Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6834232Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6834744Z #5:
2025-11-13T22:06:20.6835350Z io.netty.buffer.AdvancedLeakAwareByteBuf.readRetainedSlice(AdvancedLeakAwareByteBuf.java:107)
2025-11-13T22:06:20.6836067Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:502)
2025-11-13T22:06:20.6836694Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6837314Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6837915Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6838518Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6839143Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6839886Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6840525Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6841161Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6841735Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6842326Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6842897Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6843501Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6844097Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6844682Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6845299Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6845909Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6846655Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6847301Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6847907Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6848504Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6849105Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6849843Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6850465Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6851054Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6851671Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6852253Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6852837Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6853391Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6853890Z #6:
2025-11-13T22:06:20.6854469Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6855081Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1193)
2025-11-13T22:06:20.6855679Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.parse(HttpObjectDecoder.java:1246)
2025-11-13T22:06:20.6856259Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:476)
2025-11-13T22:06:20.6856845Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6857558Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6858177Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6858766Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6859362Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6860081Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6860698Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6861305Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6861874Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6862473Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6863044Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6863670Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6864266Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6864855Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6865451Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6866047Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6866649Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6867250Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6867992Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6868590Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6869188Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6869922Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6870520Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6871098Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6871689Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6872265Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6872854Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6873394Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6873895Z #7:
2025-11-13T22:06:20.6874471Z io.netty.buffer.AdvancedLeakAwareByteBuf.indexOf(AdvancedLeakAwareByteBuf.java:647)
2025-11-13T22:06:20.6875075Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1181)
2025-11-13T22:06:20.6875670Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.parse(HttpObjectDecoder.java:1246)
2025-11-13T22:06:20.6876243Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:476)
2025-11-13T22:06:20.6876831Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6877441Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6878017Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6878701Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6879339Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6880064Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6880690Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6881291Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6881857Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6882432Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6882982Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6883583Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6884144Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6884717Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6885302Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6885892Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6886499Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6887107Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6887708Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6888448Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6889046Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6889669Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6890419Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6890993Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6891598Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6892170Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6892757Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6893306Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6893805Z #8:
2025-11-13T22:06:20.6894394Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6894998Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1193)
2025-11-13T22:06:20.6895598Z io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(HttpObjectDecoder.java:768)
2025-11-13T22:06:20.6896192Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:382)
2025-11-13T22:06:20.6896778Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6897422Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6898045Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6898634Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6899242Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6900153Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6900825Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6901442Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6902005Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6902593Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6903157Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6903764Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6904343Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6904935Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6905545Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6906150Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6906744Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6907357Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6907983Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6908588Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6909184Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6910137Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6910757Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6911334Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6911943Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6912521Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6913106Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6913659Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6914151Z #9:
2025-11-13T22:06:20.6914738Z io.netty.buffer.AdvancedLeakAwareByteBuf.indexOf(AdvancedLeakAwareByteBuf.java:647)
2025-11-13T22:06:20.6915427Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1181)
2025-11-13T22:06:20.6916204Z io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(HttpObjectDecoder.java:768)
2025-11-13T22:06:20.6916963Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:382)
2025-11-13T22:06:20.6917484Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6917971Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6918413Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6918855Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6919335Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6919955Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6920532Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6921025Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6921459Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6921908Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6922336Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6922801Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6923250Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6923703Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6924162Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6924634Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6925131Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6925593Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6926053Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6926514Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6926967Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6927456Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6927896Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6928420Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6928878Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6929317Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6929870Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6930299Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6930671Z #10:
2025-11-13T22:06:20.6931117Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6931585Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1193)
2025-11-13T22:06:20.6932035Z io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(HttpObjectDecoder.java:746)
2025-11-13T22:06:20.6932488Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:382)
2025-11-13T22:06:20.6932954Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6933423Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6933863Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6934299Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6934756Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6935215Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6935666Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6936122Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6936614Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6937056Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6937471Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6937927Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6938359Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6938791Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6939240Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6939695Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6940263Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6940728Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6941179Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6941629Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6942080Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6942554Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6942986Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6943410Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6943865Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6944385Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6944826Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6945225Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6945575Z #11:
2025-11-13T22:06:20.6946007Z io.netty.buffer.AdvancedLeakAwareByteBuf.indexOf(AdvancedLeakAwareByteBuf.java:647)
2025-11-13T22:06:20.6946454Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1181)
2025-11-13T22:06:20.6946884Z io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(HttpObjectDecoder.java:746)
2025-11-13T22:06:20.6947313Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:382)
2025-11-13T22:06:20.6947742Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6948202Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6948636Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6949067Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6949514Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6950182Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6950658Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6951108Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6951518Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6951946Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6952360Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6952899Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6953347Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6953785Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6954242Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6954690Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6955142Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6955595Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6956042Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6956487Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6956927Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6957393Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6957819Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6958231Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6958676Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6959098Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6959527Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6960235Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6960598Z #12:
2025-11-13T22:06:20.6961028Z io.netty.buffer.AdvancedLeakAwareByteBuf.getByte(AdvancedLeakAwareByteBuf.java:155)
2025-11-13T22:06:20.6961473Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1193)
2025-11-13T22:06:20.6961919Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.parse(HttpObjectDecoder.java:1246)
2025-11-13T22:06:20.6962353Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:367)
2025-11-13T22:06:20.6962782Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6963243Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6963670Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6964102Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6964556Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6965004Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6965450Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6965899Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6966309Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6966733Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6967136Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6967581Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6968018Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6968526Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6968990Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6969437Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6969988Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6970448Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6970898Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6971349Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6971794Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6972261Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6972688Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6973104Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6973550Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6973973Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6974414Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6974818Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6975170Z #13:
2025-11-13T22:06:20.6975609Z io.netty.buffer.AdvancedLeakAwareByteBuf.indexOf(AdvancedLeakAwareByteBuf.java:647)
2025-11-13T22:06:20.6976158Z io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(HttpObjectDecoder.java:1181)
2025-11-13T22:06:20.6976608Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.parse(HttpObjectDecoder.java:1246)
2025-11-13T22:06:20.6977059Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:367)
2025-11-13T22:06:20.6977496Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6977956Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6978395Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6978830Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6979281Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6979850Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6980324Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6980783Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6981197Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6981630Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6982048Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6982500Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6982940Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6983372Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6983910Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6984385Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6984839Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6985296Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.6985749Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.6986196Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6986642Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.6987117Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.6987555Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.6987976Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.6988415Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.6988850Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.6989293Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.6989800Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.6990169Z #14:
2025-11-13T22:06:20.6990615Z io.netty.buffer.AdvancedLeakAwareByteBuf.forEachByte(AdvancedLeakAwareByteBuf.java:677)
2025-11-13T22:06:20.6991081Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.skipControlChars(HttpObjectDecoder.java:1252)
2025-11-13T22:06:20.6991535Z io.netty.handler.codec.http.HttpObjectDecoder$LineParser.parse(HttpObjectDecoder.java:1243)
2025-11-13T22:06:20.6992066Z io.netty.handler.codec.http.HttpObjectDecoder.decode(HttpObjectDecoder.java:367)
2025-11-13T22:06:20.6992507Z io.netty.handler.codec.http.HttpClientCodec$Decoder.decode(HttpClientCodec.java:320)
2025-11-13T22:06:20.6992971Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6993416Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6993854Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6994313Z io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
2025-11-13T22:06:20.6994777Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
2025-11-13T22:06:20.6995234Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6995703Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.6996126Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.6996561Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.6996981Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.6997437Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.6997874Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.6998316Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.6998766Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.6999235Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.6999865Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.7000351Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.7000811Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.7001266Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.7001721Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.7002197Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.7002631Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.7003053Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.7003511Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.7003945Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.7004385Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.7004787Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.7005150Z #15:
2025-11-13T22:06:20.7005561Z Hint: 'reactor.left.httpCodec' will handle the message from this point.
2025-11-13T22:06:20.7005999Z io.netty.channel.DefaultChannelPipeline.touch(DefaultChannelPipeline.java:115)
2025-11-13T22:06:20.7006466Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:417)
2025-11-13T22:06:20.7006925Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.7007343Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T22:06:20.7007890Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.7008319Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.7008781Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.7009299Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.7010156Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.7010836Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.7011464Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.7012085Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.7012702Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.7013320Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.8016943Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8017826Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.8018664Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.8019414Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.8020462Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.8021273Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.8022015Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.8022921Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.8023401Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.8023780Z #16:
2025-11-13T22:06:20.8024249Z io.netty.buffer.AdvancedLeakAwareByteBuf.internalNioBuffer(AdvancedLeakAwareByteBuf.java:737)
2025-11-13T22:06:20.8024680Z io.netty.handler.ssl.SslHandler.toByteBuffer(SslHandler.java:1650)
2025-11-13T22:06:20.8025094Z io.netty.handler.ssl.SslHandler.access$300(SslHandler.java:169)
2025-11-13T22:06:20.8025528Z io.netty.handler.ssl.SslHandler$SslEngineType$1.unwrap(SslHandler.java:223)
2025-11-13T22:06:20.8025945Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1486)
2025-11-13T22:06:20.8026373Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.8033693Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.8034199Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.8034666Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.8035119Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.8035616Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.8036073Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8036538Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.8036994Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.8037448Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.8038092Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8038549Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.8039032Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.8039464Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.8040030Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.8040503Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.8040943Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.8041397Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.8041814Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.8042177Z #17:
2025-11-13T22:06:20.8042632Z io.netty.buffer.AdvancedLeakAwareByteBuf.nioBufferCount(AdvancedLeakAwareByteBuf.java:707)
2025-11-13T22:06:20.8043067Z io.netty.handler.ssl.SslHandler.toByteBuffer(SslHandler.java:1650)
2025-11-13T22:06:20.8043488Z io.netty.handler.ssl.SslHandler.access$300(SslHandler.java:169)
2025-11-13T22:06:20.8043920Z io.netty.handler.ssl.SslHandler$SslEngineType$1.unwrap(SslHandler.java:223)
2025-11-13T22:06:20.8044340Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1486)
2025-11-13T22:06:20.8044769Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.8045179Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.8045637Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.8046081Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.8046519Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.8047066Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.8047545Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8048004Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.8048460Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.8048907Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.8049368Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8049953Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.8050453Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.8050896Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.8051325Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.8051781Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.8052215Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.8052651Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.8053052Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.8053414Z Created at:
2025-11-13T22:06:20.8053855Z io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(PooledByteBufAllocator.java:410)
2025-11-13T22:06:20.8054303Z io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:188)
2025-11-13T22:06:20.8054840Z io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:179)
2025-11-13T22:06:20.8055264Z io.netty.handler.ssl.SslHandler.allocate(SslHandler.java:2421)
2025-11-13T22:06:20.8055958Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1481)
2025-11-13T22:06:20.8056756Z io.netty.handler.ssl.SslHandler.decodeNonJdkCompatible(SslHandler.java:1390)
2025-11-13T22:06:20.8057239Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1430)
2025-11-13T22:06:20.8057713Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T22:06:20.8058159Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T22:06:20.8058602Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T22:06:20.8059063Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T22:06:20.8059523Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8060100Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T22:06:20.8060567Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T22:06:20.8061022Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T22:06:20.8061476Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T22:06:20.8061914Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T22:06:20.8062395Z io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
2025-11-13T22:06:20.8062819Z io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
2025-11-13T22:06:20.8063248Z io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
2025-11-13T22:06:20.8063802Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T22:06:20.8064249Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T22:06:20.8064690Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T22:06:20.8065093Z java.base/java.lang.Thread.run(Thread.java:1474)
2025-11-13T22:06:20.8065499Z : 62 leak records were discarded because they were duplicates

Metadata

Metadata

Assignees

Labels

ClientThis issue points to a problem in the data-plane of the library.CosmosService AttentionWorkflow: This issue is responsible by Azure service team.needs-team-attentionWorkflow: This issue needs attention from Azure service team or SDK team

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions