How to avoid TCPIngress keep ping tcp endpoints or reduce logs/rate? #3192
Unanswered
sheltonsuen
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We config a TCPIngress to proxy connections from iot devices to iot services, the functionality is ok, and we can have correct connection between devices and services,
But the console keep print logs as below, something like the IngressController keep trying to ping the iot service:
2022-11-28 16:10:47.946 INFO 1 --- [tLoopGroup-6-10] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:0b978e25,当前client数:1,channel map:1 2022-11-28 16:10:48.091 INFO 1 --- [tLoopGroup-6-11] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:304df245,当前client数:1,channel map:1 2022-11-28 16:10:48.098 INFO 1 --- [tLoopGroup-6-12] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:3728cd47,当前client数:1,channel map:1 2022-11-28 16:10:48.209 INFO 1 --- [tLoopGroup-6-13] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:374edbd9,当前client数:1,channel map:1 2022-11-28 16:10:48.213 INFO 1 --- [tLoopGroup-6-14] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:399ac94b,当前client数:2,channel map:1 2022-11-28 16:10:48.244 INFO 1 --- [tLoopGroup-6-15] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:3c7b32bb,当前client数:1,channel map:1 2022-11-28 16:10:48.373 INFO 1 --- [tLoopGroup-6-16] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:38cf08f5,当前client数:1,channel map:1 2022-11-28 16:10:48.374 INFO 1 --- [ntLoopGroup-6-1] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:e37d8cb4,当前client数:1,channel map:1 2022-11-28 16:10:48.394 INFO 1 --- [ntLoopGroup-6-2] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:3d35a3eb,当前client数:1,channel map:1 2022-11-28 16:10:49.049 INFO 1 --- [ntLoopGroup-6-3] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:b8c4cb23,当前client数:1,channel map:1 2022-11-28 16:10:49.258 INFO 1 --- [ntLoopGroup-6-4] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:0bc46ab5,当前client数:1,channel map:1 2022-11-28 16:10:49.459 INFO 1 --- [ntLoopGroup-6-5] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:80c13680,当前client数:1,channel map:1 2022-11-28 16:10:49.515 INFO 1 --- [ntLoopGroup-6-6] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:8fa4d903,当前client数:1,channel map:1 2022-11-28 16:10:49.546 INFO 1 --- [ntLoopGroup-6-7] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:adcd335a,当前client数:1,channel map:1 2022-11-28 16:10:50.032 INFO 1 --- [ntLoopGroup-6-8] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:b3e92fee,当前client数:1,channel map:1 2022-11-28 16:10:50.201 INFO 1 --- [ntLoopGroup-6-9] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:c1fd3c1b,当前client数:1,channel map:1 2022-11-28 16:10:50.244 INFO 1 --- [tLoopGroup-6-10] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:695bc3d1,当前client数:1,channel map:1 2022-11-28 16:10:50.384 INFO 1 --- [tLoopGroup-6-11] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:32c1cfee,当前client数:1,channel map:1 2022-11-28 16:10:50.602 INFO 1 --- [tLoopGroup-6-12] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:01fe9d1f,当前client数:1,channel map:1 2022-11-28 16:10:50.838 INFO 1 --- [tLoopGroup-6-13] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:a34b808b,当前client数:1,channel map:1 2022-11-28 16:10:51.031 INFO 1 --- [tLoopGroup-6-14] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:51a4ba2e,当前client数:1,channel map:1 2022-11-28 16:10:51.291 INFO 1 --- [tLoopGroup-6-15] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:c870439f,当前client数:1,channel map:1 2022-11-28 16:10:52.065 INFO 1 --- [tLoopGroup-6-16] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:5220b172,当前client数:1,channel map:1 2022-11-28 16:10:52.114 INFO 1 --- [ntLoopGroup-6-1] c.n.d.d.r.handler.RegisterBizHandler : 客户端链接:d5c32c1d,当前client数:1,channel map:1 2022-11-28 16:10:52.163 INFO 1 --- [tLoopGroup-6-13] n.h.LengthFieldBasedFrameCustomerDecoder : 0 --------DECODE READ: 79B
Does anyone konw how to avoid this, thanks a lot :)
Beta Was this translation helpful? Give feedback.
All reactions