console.log 522 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786
  1. 2025-04-16 12:27:58 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.1.Final
  2. 2025-04-16 12:27:58 [main] WARN c.a.n.client.logging.NacosLogging - Load Logback Configuration of Nacos fail, message: Could not initialize Logback Nacos logging from classpath:nacos-logback.xml
  3. 2025-04-16 12:27:58 [main] WARN c.a.n.client.logging.NacosLogging - Load Logback Configuration of Nacos fail, message: Could not initialize Logback Nacos logging from classpath:nacos-logback.xml
  4. 2025-04-16 12:27:58 [main] INFO o.d.system.RuoYiSystemApplication - Starting RuoYiSystemApplication using Java 17.0.8 with PID 8756 (D:\java\tino-ruoyi\tino-charge-cloud-master\ruoyi-modules\ruoyi-system\target\classes started by Administrator in D:\java\tino-ruoyi\tino-charge-cloud-master)
  5. 2025-04-16 12:27:58 [main] INFO o.d.system.RuoYiSystemApplication - The following 1 profile is active: "dev"
  6. 2025-04-16 12:27:58 [main] INFO c.a.c.n.c.NacosConfigDataLoader - [Nacos Config] Load config[dataId=ruoyi-system.yml, group=DEFAULT_GROUP] success
  7. 2025-04-16 12:27:58 [main] INFO c.a.c.n.c.NacosConfigDataLoader - [Nacos Config] Load config[dataId=datasource.yml, group=DEFAULT_GROUP] success
  8. 2025-04-16 12:27:58 [main] INFO c.a.c.n.c.NacosConfigDataLoader - [Nacos Config] Load config[dataId=application-common.yml, group=DEFAULT_GROUP] success
  9. 2025-04-16 12:28:02 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[org.dromara.system]' package. Please check your configuration.
  10. 2025-04-16 12:28:02 [main] WARN o.a.d.c.s.b.f.a.ServiceAnnotationPostProcessor - [DUBBO] No class annotated by Dubbo @DubboService or @Service was found under package [org.dromara.**.dubbo], ignore re-scanned classes: 10, dubbo version: 3.2.7, current host: 192.168.1.110, error code: 5-28. This may be caused by No annotations were found on the class, go to https://dubbo.apache.org/faq/5/28 to find instructions.
  11. 2025-04-16 12:28:06 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 2025-04-16 12:28:07 [main] INFO o.d.common.json.config.JacksonConfig - 初始化 jackson 配置
  13. 2025-04-16 12:28:08 [main] INFO o.d.c.r.config.RedisConfiguration - 初始化 redis 配置
  14. 2025-04-16 12:28:08 [main] INFO org.redisson.Version - Redisson 3.24.3
  15. 2025-04-16 12:28:08 [redisson-netty-2-6] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 117.72.115.2/117.72.115.2:16379
  16. 2025-04-16 12:28:09 [redisson-netty-2-3] INFO o.r.c.pool.MasterConnectionPool - 8 connections initialized for 117.72.115.2/117.72.115.2:16379
  17. 2025-04-16 12:28:09 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Starting...
  18. 2025-04-16 12:28:10 [main] INFO com.zaxxer.hikari.pool.HikariPool - master - Added connection com.mysql.cj.jdbc.ConnectionImpl@7fa1c05f
  19. 2025-04-16 12:28:10 [main] INFO com.zaxxer.hikari.HikariDataSource - master - Start completed.
  20. 2025-04-16 12:28:10 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  21. 2025-04-16 12:28:10 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
  22. 2025-04-16 12:28:12 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  23. 2025-04-16 12:28:14 [main] INFO io.undertow - starting server: Undertow - 2.3.10.Final
  24. 2025-04-16 12:28:14 [main] INFO org.xnio - XNIO version 3.8.8.Final
  25. 2025-04-16 12:28:14 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  26. 2025-04-16 12:28:15 [main] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  27. 2025-04-16 12:28:15 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP ruoyi-system 192.168.1.110:9201 register finished
  28. 2025-04-16 12:28:16 [main] WARN o.apache.dubbo.config.ServiceConfig - [DUBBO] Use random available port(20881) for protocol dubbo, dubbo version: 3.2.7, current host: 192.168.1.110, error code: 5-8. This may be caused by , go to https://dubbo.apache.org/faq/5/8 to find instructions.
  29. 2025-04-16 12:28:22 [main] INFO o.d.system.RuoYiSystemApplication - Started RuoYiSystemApplication in 26.925 seconds (process running for 28.036)
  30. 2025-04-16 12:28:22 [main] INFO c.a.c.n.r.NacosContextRefresher - [Nacos Config] Listening config: dataId=datasource.yml, group=DEFAULT_GROUP
  31. 2025-04-16 12:28:22 [main] INFO c.a.c.n.r.NacosContextRefresher - [Nacos Config] Listening config: dataId=application-common.yml, group=DEFAULT_GROUP
  32. 2025-04-16 12:28:22 [main] INFO c.a.c.n.r.NacosContextRefresher - [Nacos Config] Listening config: dataId=ruoyi-system.yml, group=DEFAULT_GROUP
  33. 2025-04-16 12:28:22 [RMI TCP Connection(5)-192.168.204.1] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  34. 2025-04-16 12:41:19 [nacos-grpc-client-executor-117.72.115.2-165] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777685320_114.246.237.154_16705]Request stream error, switch server,error={}
  35. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  36. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  37. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  38. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  39. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  40. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  41. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  42. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  43. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  44. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  45. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  46. at java.base/java.lang.Thread.run(Thread.java:833)
  47. Caused by: java.net.SocketException: Connection reset
  48. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  49. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  50. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  51. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  52. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  53. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  54. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  55. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  56. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  57. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  58. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  59. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  60. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  61. ... 1 common frames omitted
  62. 2025-04-16 12:41:21 [nacos-grpc-client-executor-117.72.115.2-164] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777696779_114.246.237.154_8286]Request stream error, switch server,error={}
  63. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  64. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  65. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  66. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  67. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  68. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  69. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  70. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  71. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  72. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  73. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  74. at java.base/java.lang.Thread.run(Thread.java:833)
  75. Caused by: java.net.SocketException: Connection reset
  76. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  77. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  78. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  79. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  80. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  81. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  82. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  83. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  84. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  85. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  86. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  87. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  88. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  89. ... 1 common frames omitted
  90. 2025-04-16 12:41:21 [nacos-grpc-client-executor-117.72.115.2-172] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777677550_114.246.237.154_16704]Request stream error, switch server,error={}
  91. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  92. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  93. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  94. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  95. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  96. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  97. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  98. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  99. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  100. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  101. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  102. at java.base/java.lang.Thread.run(Thread.java:833)
  103. Caused by: java.net.SocketException: Connection reset
  104. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  105. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  106. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  107. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  108. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  109. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  110. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  111. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  112. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  113. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  114. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  115. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  116. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  117. ... 1 common frames omitted
  118. 2025-04-16 12:41:22 [nacos-grpc-client-executor-117.72.115.2-157] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777698628_114.246.237.154_16707]Request stream error, switch server,error={}
  119. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  120. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  121. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  122. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  123. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  124. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  125. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  126. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  127. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  128. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  129. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  130. at java.base/java.lang.Thread.run(Thread.java:833)
  131. Caused by: java.net.SocketException: Connection reset
  132. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  133. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  134. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  135. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  136. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  137. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  138. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  139. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  140. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  141. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  142. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  143. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  144. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  145. ... 1 common frames omitted
  146. 2025-04-16 12:41:22 [nacos-grpc-client-executor-117.72.115.2-172] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777687587_114.246.237.154_8285]Request stream error, switch server,error={}
  147. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  148. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  149. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  150. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  151. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  152. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  153. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  154. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  155. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  156. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  157. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  158. at java.base/java.lang.Thread.run(Thread.java:833)
  159. Caused by: java.net.SocketException: Connection reset
  160. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  161. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  162. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  163. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  164. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  165. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  166. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  167. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  168. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  169. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  170. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  171. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  172. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  173. ... 1 common frames omitted
  174. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  175. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  176. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  177. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  178. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  179. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  180. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  181. 2025-04-16 12:41:23 [nacos-grpc-client-executor-117.72.115.2-166] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778482939_114.246.237.154_17184]Ignore error event,isRunning:true,isAbandon=true
  182. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  183. 2025-04-16 12:41:23 [nacos-grpc-client-executor-117.72.115.2-171] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778482983_114.246.237.154_8298]Ignore error event,isRunning:true,isAbandon=true
  184. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  185. 2025-04-16 12:41:23 [nacos-grpc-client-executor-117.72.115.2-171] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778483027_114.246.237.154_17190]Ignore error event,isRunning:true,isAbandon=true
  186. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  187. 2025-04-16 12:41:23 [nacos-grpc-client-executor-117.72.115.2-178] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778482971_114.246.237.154_8297]Ignore error event,isRunning:true,isAbandon=true
  188. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  189. 2025-04-16 12:41:23 [nacos-grpc-client-executor-117.72.115.2-171] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778483073_114.246.237.154_8302]Ignore error event,isRunning:true,isAbandon=true
  190. 2025-04-16 12:41:23 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  191. 2025-04-16 12:51:20 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@14c4d775 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  192. 2025-04-16 12:51:23 [nacos-grpc-client-executor-117.72.115.2-288] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744778483515_114.246.237.154_8309]Request stream error, switch server,error={}
  193. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  194. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  195. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  196. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  197. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  198. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  199. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  200. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  201. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  202. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  203. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  204. at java.base/java.lang.Thread.run(Thread.java:833)
  205. Caused by: java.net.SocketException: Connection reset
  206. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  207. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  208. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  209. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  210. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  211. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  212. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  213. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  214. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  215. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  216. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  217. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  218. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  219. ... 1 common frames omitted
  220. 2025-04-16 12:51:24 [nacos-grpc-client-executor-117.72.115.2-302] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744778483448_114.246.237.154_8307]Request stream error, switch server,error={}
  221. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  222. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  223. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  224. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  225. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  226. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  227. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  228. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  229. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  230. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  231. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  232. at java.base/java.lang.Thread.run(Thread.java:833)
  233. Caused by: java.net.SocketException: Connection reset
  234. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  235. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  236. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  237. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  238. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  239. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  240. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  241. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  242. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  243. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  244. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  245. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  246. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  247. ... 1 common frames omitted
  248. 2025-04-16 12:51:24 [nacos-grpc-client-executor-117.72.115.2-290] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744777686785_114.246.237.154_16706]Request stream error, switch server,error={}
  249. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  250. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  251. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  252. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  253. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  254. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  255. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  256. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  257. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  258. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  259. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  260. at java.base/java.lang.Thread.run(Thread.java:833)
  261. Caused by: java.net.SocketException: Connection reset
  262. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  263. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  264. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  265. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  266. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  267. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  268. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  269. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  270. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  271. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  272. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  273. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  274. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  275. ... 1 common frames omitted
  276. 2025-04-16 12:51:26 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] WARN o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received url with EMPTY protocol, will clear all available addresses., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 4-1. This may be caused by , go to https://dubbo.apache.org/faq/4/1 to find instructions.
  277. 2025-04-16 12:51:26 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] WARN o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received url with EMPTY protocol, will clear all available addresses., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 4-1. This may be caused by , go to https://dubbo.apache.org/faq/4/1 to find instructions.
  278. 2025-04-16 12:51:26 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  279. 2025-04-16 12:51:26 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  280. 2025-04-16 12:51:27 [nacos-grpc-client-executor-117.72.115.2-291] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744779086532_114.246.237.154_8786]Ignore error event,isRunning:true,isAbandon=true
  281. 2025-04-16 12:51:27 [nacos-grpc-client-executor-117.72.115.2-289] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744779086533_114.246.237.154_17682]Ignore error event,isRunning:true,isAbandon=true
  282. 2025-04-16 12:51:27 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  283. 2025-04-16 12:51:27 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  284. 2025-04-16 12:51:27 [nacos-grpc-client-executor-117.72.115.2-304] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744779086533_114.246.237.154_17680]Ignore error event,isRunning:true,isAbandon=true
  285. 2025-04-16 12:56:25 [NettyServerWorker-6-5] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:55314 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  286. 2025-04-16 12:57:29 [NettyServerWorker-6-6] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:55391 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  287. 2025-04-16 13:09:11 [NettyServerWorker-6-7] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:53954 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  288. 2025-04-16 13:15:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1d58d956 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  289. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Server healthy check fail, currentConnection = 1744779087065_114.246.237.154_17686
  290. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Server healthy check fail, currentConnection = 1744779087064_114.246.237.154_8798
  291. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  292. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  293. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  294. 2025-04-16 13:15:30 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  295. 2025-04-16 13:15:33 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  296. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 566900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@42773681[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  297. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  298. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  299. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  300. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  301. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  302. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  303. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  304. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  305. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  306. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  307. at java.base/java.lang.Thread.run(Thread.java:833)
  308. 2025-04-16 13:15:33 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  309. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 865300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@993d378[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  310. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  311. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  312. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  313. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  314. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  315. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  316. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  317. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  318. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  319. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  320. at java.base/java.lang.Thread.run(Thread.java:833)
  321. 2025-04-16 13:15:33 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  322. 2025-04-16 13:15:33 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  323. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  324. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 523600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@18ce55f0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  325. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  326. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  327. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  328. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  329. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  330. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  331. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  332. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  333. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  334. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  335. at java.base/java.lang.Thread.run(Thread.java:833)
  336. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  337. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 301500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6327ddfe[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  338. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  339. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  340. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  341. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  342. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  343. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  344. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  345. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  346. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  347. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  348. at java.base/java.lang.Thread.run(Thread.java:833)
  349. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  350. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  351. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  352. 2025-04-16 13:15:36 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  353. 2025-04-16 13:15:39 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  354. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 257000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c396249[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  355. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  356. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  357. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  358. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  359. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  360. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  361. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  362. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  363. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  364. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  365. at java.base/java.lang.Thread.run(Thread.java:833)
  366. 2025-04-16 13:15:39 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  367. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 208300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@55222f44[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  368. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  369. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  370. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  371. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  372. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  373. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  374. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  375. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  376. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  377. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  378. at java.base/java.lang.Thread.run(Thread.java:833)
  379. 2025-04-16 13:15:39 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  380. 2025-04-16 13:15:39 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  381. 2025-04-16 13:15:40 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  382. 2025-04-16 13:15:40 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  383. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744780541438_114.246.237.154_9780
  384. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744779087065_114.246.237.154_17686
  385. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  386. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 798600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@34e203db[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  387. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  388. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  389. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  390. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  391. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  392. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  393. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  394. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  395. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  396. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  397. at java.base/java.lang.Thread.run(Thread.java:833)
  398. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744779087065_114.246.237.154_17686
  399. 2025-04-16 13:15:43 [nacos-grpc-client-executor-117.72.115.2-600] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744779087065_114.246.237.154_17686]Ignore error event,isRunning:true,isAbandon=true
  400. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify disconnected event to listeners
  401. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  402. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] DisConnected,clear listen context...
  403. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify connected event to listeners.
  404. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Connected,notify listen context...
  405. 2025-04-16 13:15:43 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  406. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744780543782_114.246.237.154_9788
  407. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744779087064_114.246.237.154_8798
  408. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744779087064_114.246.237.154_8798
  409. 2025-04-16 13:15:44 [nacos-grpc-client-executor-117.72.115.2-591] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744779087064_114.246.237.154_8798]Ignore error event,isRunning:false,isAbandon=true
  410. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify disconnected event to listeners
  411. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] DisConnected,clear listen context...
  412. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify connected event to listeners.
  413. 2025-04-16 13:15:44 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Connected,notify listen context...
  414. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Server healthy check fail, currentConnection = 1744778483270_114.246.237.154_17192
  415. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  416. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  417. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744780549280_114.246.237.154_18674
  418. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744778483270_114.246.237.154_17192
  419. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744778483270_114.246.237.154_17192
  420. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  421. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  422. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  423. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  424. 2025-04-16 13:15:49 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  425. 2025-04-16 13:15:49 [nacos-grpc-client-executor-117.72.115.2-593] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744778483270_114.246.237.154_17192]Ignore error event,isRunning:true,isAbandon=true
  426. 2025-04-16 13:15:50 [nacos-grpc-client-executor-117.72.115.2-586] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1145
  427. 2025-04-16 13:15:50 [nacos-grpc-client-executor-117.72.115.2-586] INFO com.alibaba.nacos.client.naming - removed ips(1) service: DUBBO_GROUP_LKX@@ruoyi-resource -> [{"instanceId":"192.168.1.110#20880#null#ruoyi-resource","ip":"192.168.1.110","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO_GROUP_LKX@@ruoyi-resource","metadata":{"dubbo.endpoints":"[{\"port\":20880,\"protocol\":\"dubbo\"}]","dubbo.metadata.revision":"f90804b5e8983a9a58cdcb62da76f4da","dubbo.metadata.storage-type":"remote","timestamp":"1744777593460"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
  428. 2025-04-16 13:15:50 [nacos-grpc-client-executor-117.72.115.2-586] INFO com.alibaba.nacos.client.naming - current ips:(0) service: DUBBO_GROUP_LKX@@ruoyi-resource -> []
  429. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Received instance notification, serviceName: ruoyi-resource, instances: 0, dubbo version: 3.2.7, current host: 192.168.1.110
  430. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] 0 unique working revisions: , dubbo version: 3.2.7, current host: 192.168.1.110
  431. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Notify service org.dromara.resource.api.RemoteMessageService:null with urls 1, dubbo version: 3.2.7, current host: 192.168.1.110
  432. 2025-04-16 13:15:50 [nacos-grpc-client-executor-117.72.115.2-586] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1145
  433. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] WARN o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received url with EMPTY protocol, will clear all available addresses., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 4-1. This may be caused by , go to https://dubbo.apache.org/faq/4/1 to find instructions.
  434. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received invokers changed event from registry. Registry type: instance. Service Key: org.dromara.resource.api.RemoteMessageService. Urls Size : 1. Invokers Size : 0. Available Size: 0. Available Invokers : empty, dubbo version: 3.2.7, current host: 192.168.1.110
  435. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Notify service org.dromara.resource.api.RemoteFileService:null with urls 1, dubbo version: 3.2.7, current host: 192.168.1.110
  436. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] WARN o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received url with EMPTY protocol, will clear all available addresses., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 4-1. This may be caused by , go to https://dubbo.apache.org/faq/4/1 to find instructions.
  437. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0xcf0b682f, L:/192.168.1.110:54752 - R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  438. 2025-04-16 13:15:50 [NettyClientWorker-7-3] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:54752 -> /192.168.1.110:20880 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  439. 2025-04-16 13:15:50 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received invokers changed event from registry. Registry type: instance. Service Key: org.dromara.resource.api.RemoteFileService. Urls Size : 1. Invokers Size : 0. Available Size: 0. Available Invokers : empty, dubbo version: 3.2.7, current host: 192.168.1.110
  440. 2025-04-16 13:15:51 [nacos-grpc-client-executor-117.72.115.2-588] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1152
  441. 2025-04-16 13:15:51 [nacos-grpc-client-executor-117.72.115.2-588] INFO com.alibaba.nacos.client.naming - new ips(1) service: DUBBO_GROUP_LKX@@ruoyi-resource -> [{"instanceId":"192.168.1.110#20880#null#ruoyi-resource","ip":"192.168.1.110","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO_GROUP_LKX@@ruoyi-resource","metadata":{"dubbo.endpoints":"[{\"port\":20880,\"protocol\":\"dubbo\"}]","dubbo.metadata.revision":"f90804b5e8983a9a58cdcb62da76f4da","dubbo.metadata.storage-type":"remote","timestamp":"1744777593460"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
  442. 2025-04-16 13:15:51 [nacos-grpc-client-executor-117.72.115.2-588] INFO com.alibaba.nacos.client.naming - current ips:(1) service: DUBBO_GROUP_LKX@@ruoyi-resource -> [{"instanceId":"192.168.1.110#20880#null#ruoyi-resource","ip":"192.168.1.110","port":20880,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DUBBO_GROUP_LKX@@ruoyi-resource","metadata":{"dubbo.endpoints":"[{\"port\":20880,\"protocol\":\"dubbo\"}]","dubbo.metadata.revision":"f90804b5e8983a9a58cdcb62da76f4da","dubbo.metadata.storage-type":"remote","timestamp":"1744777593460"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}]
  443. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Received instance notification, serviceName: ruoyi-resource, instances: 1, dubbo version: 3.2.7, current host: 192.168.1.110
  444. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] 1 unique working revisions: f90804b5e8983a9a58cdcb62da76f4da , dubbo version: 3.2.7, current host: 192.168.1.110
  445. 2025-04-16 13:15:51 [nacos-grpc-client-executor-117.72.115.2-588] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1152
  446. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Notify service org.dromara.resource.api.RemoteMessageService:null with urls 1, dubbo version: 3.2.7, current host: 192.168.1.110
  447. 2025-04-16 13:15:51 [NettyClientWorker-7-4] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:54675 -> /192.168.1.110:20880 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  448. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.transport.AbstractClient - [DUBBO] Successfully connect to server /192.168.1.110:20880 from NettyClient 192.168.1.110 using dubbo version 3.2.7, channel is NettyChannel [channel=[id: 0x57c1ec44, L:/192.168.1.110:54675 - R:/192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  449. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.transport.AbstractClient - [DUBBO] Start NettyClient /192.168.1.110 connect to the server /192.168.1.110:20880, dubbo version: 3.2.7, current host: 192.168.1.110
  450. 2025-04-16 13:15:51 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Refreshed invoker size 1, dubbo version: 3.2.7, current host: 192.168.1.110
  451. 2025-04-16 13:15:52 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received invokers changed event from registry. Registry type: instance. Service Key: org.dromara.resource.api.RemoteMessageService. Urls Size : 1. Invokers Size : 1. Available Size: 1. Available Invokers : 192.168.1.110:20880, dubbo version: 3.2.7, current host: 192.168.1.110
  452. 2025-04-16 13:15:52 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Notify service org.dromara.resource.api.RemoteFileService:null with urls 1, dubbo version: 3.2.7, current host: 192.168.1.110
  453. 2025-04-16 13:15:52 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Refreshed invoker size 1, dubbo version: 3.2.7, current host: 192.168.1.110
  454. 2025-04-16 13:15:52 [nacos.publisher-com.alibaba.nacos.client.naming.event.InstancesChangeEvent] INFO o.a.d.r.c.ServiceDiscoveryRegistryDirectory - [DUBBO] Received invokers changed event from registry. Registry type: instance. Service Key: org.dromara.resource.api.RemoteFileService. Urls Size : 1. Invokers Size : 1. Available Size: 1. Available Invokers : 192.168.1.110:20880, dubbo version: 3.2.7, current host: 192.168.1.110
  455. 2025-04-16 13:15:52 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DEFAULT_GROUP@@ruoyi-system
  456. 2025-04-16 13:15:52 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DEFAULT_GROUP@@ruoyi-sentinel-dashboard#
  457. 2025-04-16 13:15:53 [nacos-grpc-client-executor-117.72.115.2-596] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Receive server push request, request = NotifySubscriberRequest, requestId = 1155
  458. 2025-04-16 13:15:53 [nacos-grpc-client-executor-117.72.115.2-596] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Ack server push request, request = NotifySubscriberRequest, requestId = 1155
  459. 2025-04-16 13:16:30 [redisson-timer-4-1] ERROR o.r.c.handler.PingConnectionHandler - Unable to send PING command over channel: [id: 0x683ecc5f, L:/192.168.1.110:54550 - R:117.72.115.2/117.72.115.2:16379]
  460. org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://117.72.115.2:16379]
  461. at org.redisson.client.RedisConnection.lambda$async$0(RedisConnection.java:256)
  462. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.run(HashedWheelTimer.java:715)
  463. at io.netty.util.concurrent.ImmediateExecutor.execute(ImmediateExecutor.java:34)
  464. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:703)
  465. at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:790)
  466. at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:503)
  467. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  468. at java.base/java.lang.Thread.run(Thread.java:833)
  469. 2025-04-16 13:17:04 [NettyServerWorker-6-8] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:54805 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  470. 2025-04-16 13:18:17 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5a7a002 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  471. 2025-04-16 13:28:17 [Dubbo-framework-cache-refreshing-scheduler-thread-1] INFO o.a.d.m.AbstractCacheManager$CacheRefreshTask - [DUBBO] Dumping mapping caches, latest entries 8, dubbo version: 3.2.7, current host: 192.168.1.110
  472. 2025-04-16 13:38:16 [Dubbo-framework-cache-refreshing-scheduler-thread-1] INFO o.a.d.m.AbstractCacheManager$CacheRefreshTask - [DUBBO] Dumping meta caches, latest entries 2, dubbo version: 3.2.7, current host: 192.168.1.110
  473. 2025-04-16 13:54:11 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@783894f (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  474. 2025-04-16 13:54:11 [nacos-grpc-client-executor-117.72.115.2-952] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744778483448_114.246.237.154_8303]Request stream error, switch server,error={}
  475. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  476. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  477. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  478. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  479. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  480. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  481. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  482. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  483. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  484. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  485. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  486. at java.base/java.lang.Thread.run(Thread.java:833)
  487. Caused by: java.net.SocketException: Connection reset
  488. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  489. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  490. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  491. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  492. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  493. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  494. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  495. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  496. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  497. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  498. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  499. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  500. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  501. ... 1 common frames omitted
  502. 2025-04-16 13:54:11 [redisson-timer-4-1] ERROR o.r.c.handler.PingConnectionHandler - Unable to send PING command over channel: [id: 0x0fd207ac, L:/192.168.1.110:62871 - R:117.72.115.2/117.72.115.2:16379]
  503. org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://117.72.115.2:16379]
  504. at org.redisson.client.RedisConnection.lambda$async$0(RedisConnection.java:256)
  505. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.run(HashedWheelTimer.java:715)
  506. at io.netty.util.concurrent.ImmediateExecutor.execute(ImmediateExecutor.java:34)
  507. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:703)
  508. at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:790)
  509. at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:503)
  510. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  511. at java.base/java.lang.Thread.run(Thread.java:833)
  512. 2025-04-16 13:54:11 [redisson-timer-4-1] ERROR o.r.c.handler.PingConnectionHandler - Unable to send PING command over channel: [id: 0x887a3783, L:/192.168.1.110:62874 - R:117.72.115.2/117.72.115.2:16379]
  513. org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://117.72.115.2:16379]
  514. at org.redisson.client.RedisConnection.lambda$async$0(RedisConnection.java:256)
  515. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.run(HashedWheelTimer.java:715)
  516. at io.netty.util.concurrent.ImmediateExecutor.execute(ImmediateExecutor.java:34)
  517. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:703)
  518. at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:790)
  519. at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:503)
  520. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  521. at java.base/java.lang.Thread.run(Thread.java:833)
  522. 2025-04-16 13:54:11 [NettyServerWorker-6-5] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:55314 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  523. 2025-04-16 13:54:11 [NettyServerWorker-6-9] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57307 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  524. 2025-04-16 13:54:11 [NettyServerWorker-6-8] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:54805 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  525. 2025-04-16 13:54:11 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57317 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  526. 2025-04-16 13:54:11 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] IdleStateEvent triggered, close channel NettyChannel [channel=[id: 0x9e06ebe5, L:/192.168.1.110:20881 - R:/192.168.1.110:62904]], dubbo version: 3.2.7, current host: 192.168.1.110
  527. 2025-04-16 13:54:11 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x9e06ebe5, L:/192.168.1.110:20881 - R:/192.168.1.110:62904], dubbo version: 3.2.7, current host: 192.168.1.110
  528. 2025-04-16 13:54:11 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:62904 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  529. 2025-04-16 13:54:11 [NettyServerWorker-6-2] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57321 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  530. 2025-04-16 13:54:12 [NettyServerWorker-6-4] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:63418 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  531. 2025-04-16 13:54:12 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57525 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  532. 2025-04-16 13:54:12 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] IdleStateEvent triggered, close channel NettyChannel [channel=[id: 0xa73bdc3f, L:/192.168.1.110:20881 - R:/192.168.1.110:62906]], dubbo version: 3.2.7, current host: 192.168.1.110
  533. 2025-04-16 13:54:12 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0xa73bdc3f, L:/192.168.1.110:20881 - R:/192.168.1.110:62906], dubbo version: 3.2.7, current host: 192.168.1.110
  534. 2025-04-16 13:54:12 [NettyClientWorker-7-2] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:62906 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  535. 2025-04-16 13:54:12 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:62906 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  536. 2025-04-16 13:54:12 [NettyServerWorker-6-7] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:53954 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  537. 2025-04-16 13:54:12 [NettyServerWorker-6-4] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57527 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  538. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:54675 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  539. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x57c1ec44, L:/192.168.1.110:54675 - R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  540. 2025-04-16 13:54:12 [NettyClientWorker-7-4] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:54675 -> /192.168.1.110:20880 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  541. 2025-04-16 13:54:12 [NettyClientWorker-7-5] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:57528 -> /192.168.1.110:20880 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  542. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.transport.netty4.NettyClient - [DUBBO] Close old netty channel [id: 0x57c1ec44, L:/192.168.1.110:54675 ! R:/192.168.1.110:20880] on create new netty channel [id: 0x96596f48, L:/192.168.1.110:57528 - R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  543. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.transport.AbstractClient - [DUBBO] Successfully connect to server /192.168.1.110:20880 from NettyClient 192.168.1.110 using dubbo version 3.2.7, channel is NettyChannel [channel=[id: 0x96596f48, L:/192.168.1.110:57528 - R:/192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  544. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:62906 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  545. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x2e9e4969, L:/192.168.1.110:62906 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  546. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.transport.netty4.NettyClient - [DUBBO] Close old netty channel [id: 0x2e9e4969, L:/192.168.1.110:62906 ! R:/192.168.1.110:20881] on create new netty channel [id: 0x467049ab, L:/192.168.1.110:57529 - R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  547. 2025-04-16 13:54:12 [NettyClientWorker-7-6] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:57529 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  548. 2025-04-16 13:54:12 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.transport.AbstractClient - [DUBBO] Successfully connect to server /192.168.1.110:20881 from NettyClient 192.168.1.110 using dubbo version 3.2.7, channel is NettyChannel [channel=[id: 0x467049ab, L:/192.168.1.110:57529 - R:/192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  549. 2025-04-16 13:54:12 [NettyServerWorker-6-5] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57529 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  550. 2025-04-16 13:54:12 [NettyServerWorker-6-6] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:55391 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  551. 2025-04-16 13:54:12 [NettyServerWorker-6-6] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57530 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  552. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Server healthy check fail, currentConnection = 1744778483448_114.246.237.154_8303
  553. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Try to reconnect to a new server, server is not appointed, will choose a random server.
  554. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  555. 2025-04-16 13:54:12 [master housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - master - Thread starvation or clock leap detected (housekeeper delta=7m25s30ms31µs801ns).
  556. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Success to connect a server [117.72.115.2:28848], connectionId = 1744782852131_114.246.237.154_18693
  557. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744778483448_114.246.237.154_8303
  558. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744778483448_114.246.237.154_8303
  559. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Try to reconnect to a new server, server is not appointed, will choose a random server.
  560. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify disconnected event to listeners
  561. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  562. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  563. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  564. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify connected event to listeners.
  565. 2025-04-16 13:54:12 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  566. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Success to connect a server [117.72.115.2:28848], connectionId = 1744782852369_114.246.237.154_10289
  567. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782852131_114.246.237.154_18693
  568. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782852131_114.246.237.154_18693
  569. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify disconnected event to listeners
  570. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  571. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  572. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify connected event to listeners.
  573. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  574. 2025-04-16 13:54:13 [nacos-grpc-client-executor-117.72.115.2-966] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782852131_114.246.237.154_18693]Ignore error event,isRunning:true,isAbandon=true
  575. 2025-04-16 13:54:13 [nacos-grpc-client-executor-117.72.115.2-985] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744780541438_114.246.237.154_9780]Request stream error, switch server,error={}
  576. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  577. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  578. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  579. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  580. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  581. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  582. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  583. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  584. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  585. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  586. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  587. at java.base/java.lang.Thread.run(Thread.java:833)
  588. Caused by: java.net.SocketException: Connection reset
  589. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  590. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  591. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  592. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  593. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  594. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  595. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  596. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  597. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  598. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  599. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  600. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  601. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  602. ... 1 common frames omitted
  603. 2025-04-16 13:54:13 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY4N30.5QkKrpR2Y8keS6f-tpDUet5X9YaCWpfsV2fcplRR3II, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d15f54ad5e01eafd707315bf966d1ae8, Client-RequestTS=1744782852977, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  604. 2025-04-16 13:54:13 [nacos-grpc-client-executor-117.72.115.2-974] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744780543782_114.246.237.154_9788]Request stream error, switch server,error={}
  605. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  606. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  607. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  608. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  609. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  610. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  611. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  612. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  613. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  614. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  615. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  616. at java.base/java.lang.Thread.run(Thread.java:833)
  617. Caused by: java.net.SocketException: Connection reset
  618. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  619. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  620. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  621. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  622. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  623. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  624. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  625. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  626. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  627. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  628. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  629. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  630. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  631. ... 1 common frames omitted
  632. 2025-04-16 13:54:13 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY4N30.5QkKrpR2Y8keS6f-tpDUet5X9YaCWpfsV2fcplRR3II, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d15f54ad5e01eafd707315bf966d1ae8, Client-RequestTS=1744782852977, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  633. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Server healthy check fail, currentConnection = 1744780541438_114.246.237.154_9780
  634. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  635. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  636. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Server healthy check fail, currentConnection = 1744780543782_114.246.237.154_9788
  637. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  638. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  639. 2025-04-16 13:54:13 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY4N30.5QkKrpR2Y8keS6f-tpDUet5X9YaCWpfsV2fcplRR3II, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d15f54ad5e01eafd707315bf966d1ae8, Client-RequestTS=1744782852977, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  640. 2025-04-16 13:54:13 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.config.impl.ClientWorker - Async listen config change error
  641. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
  642. at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:643)
  643. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1011)
  644. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:992)
  645. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.executeConfigListen(ClientWorker.java:786)
  646. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$startInternal$2(ClientWorker.java:704)
  647. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  648. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  649. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  650. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  651. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  652. at java.base/java.lang.Thread.run(Thread.java:833)
  653. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782853011_114.246.237.154_10775
  654. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744780541438_114.246.237.154_9780
  655. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744780541438_114.246.237.154_9780
  656. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify disconnected event to listeners
  657. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] DisConnected,clear listen context...
  658. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify connected event to listeners.
  659. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Connected,notify listen context...
  660. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  661. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  662. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782853102_114.246.237.154_19184
  663. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744780543782_114.246.237.154_9788
  664. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744780543782_114.246.237.154_9788
  665. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  666. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify disconnected event to listeners
  667. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] DisConnected,clear listen context...
  668. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  669. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify connected event to listeners.
  670. 2025-04-16 13:54:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Connected,notify listen context...
  671. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782853258_114.246.237.154_19189
  672. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782853011_114.246.237.154_10775
  673. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782853011_114.246.237.154_10775
  674. 2025-04-16 13:54:14 [nacos-grpc-client-executor-117.72.115.2-986] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782853011_114.246.237.154_10775]Ignore error event,isRunning:true,isAbandon=true
  675. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify disconnected event to listeners
  676. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] DisConnected,clear listen context...
  677. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify connected event to listeners.
  678. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Connected,notify listen context...
  679. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782853330_114.246.237.154_10785
  680. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782853102_114.246.237.154_19184
  681. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782853102_114.246.237.154_19184
  682. 2025-04-16 13:54:14 [nacos-grpc-client-executor-117.72.115.2-973] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782853102_114.246.237.154_19184]Ignore error event,isRunning:true,isAbandon=true
  683. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify disconnected event to listeners
  684. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] DisConnected,clear listen context...
  685. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify connected event to listeners.
  686. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Connected,notify listen context...
  687. 2025-04-16 13:54:14 [nacos-grpc-client-executor-117.72.115.2-957] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744778483446_114.246.237.154_8304]Request stream error, switch server,error={}
  688. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  689. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  690. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  691. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  692. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  693. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  694. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  695. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  696. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  697. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  698. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  699. at java.base/java.lang.Thread.run(Thread.java:833)
  700. Caused by: java.net.SocketException: Connection reset
  701. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  702. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  703. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  704. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  705. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  706. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  707. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  708. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  709. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  710. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  711. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  712. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  713. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  714. ... 1 common frames omitted
  715. 2025-04-16 13:54:14 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY3Nn0.-SUy7NK4tzQy11dhAL4dHYJHQKf18NU-oyX_pB_p-ss, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f04f61ddbac4ee4acbb986d74283126, Client-RequestTS=1744782854263, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  716. 2025-04-16 13:54:14 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY3Nn0.-SUy7NK4tzQy11dhAL4dHYJHQKf18NU-oyX_pB_p-ss, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f04f61ddbac4ee4acbb986d74283126, Client-RequestTS=1744782854263, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY
  717. 2025-04-16 13:54:14 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY3Nn0.-SUy7NK4tzQy11dhAL4dHYJHQKf18NU-oyX_pB_p-ss, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f04f61ddbac4ee4acbb986d74283126, Client-RequestTS=1744782854263, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY
  718. 2025-04-16 13:54:14 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.config.impl.ClientWorker - Async listen config change error
  719. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY
  720. at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:643)
  721. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1011)
  722. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:992)
  723. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.executeConfigListen(ClientWorker.java:786)
  724. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$startInternal$2(ClientWorker.java:704)
  725. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  726. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  727. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  728. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  729. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  730. at java.base/java.lang.Thread.run(Thread.java:833)
  731. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Server healthy check fail, currentConnection = 1744778483446_114.246.237.154_8304
  732. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  733. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  734. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782854082_114.246.237.154_11255
  735. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744778483446_114.246.237.154_8304
  736. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744778483446_114.246.237.154_8304
  737. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  738. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  739. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify disconnected event to listeners
  740. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] DisConnected,clear listen context...
  741. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify connected event to listeners.
  742. 2025-04-16 13:54:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Connected,notify listen context...
  743. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744782854311_114.246.237.154_11258
  744. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782854082_114.246.237.154_11255
  745. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782854082_114.246.237.154_11255
  746. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify disconnected event to listeners
  747. 2025-04-16 13:54:15 [nacos-grpc-client-executor-117.72.115.2-957] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782854082_114.246.237.154_11255]Ignore error event,isRunning:true,isAbandon=true
  748. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] DisConnected,clear listen context...
  749. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify connected event to listeners.
  750. 2025-04-16 13:54:15 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Connected,notify listen context...
  751. 2025-04-16 13:54:15 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system
  752. 2025-04-16 13:54:15 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system#
  753. 2025-04-16 13:54:15 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-resource#
  754. 2025-04-16 13:54:15 [nacos-grpc-client-executor-117.72.115.2-957] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1222
  755. 2025-04-16 13:54:15 [nacos-grpc-client-executor-117.72.115.2-957] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1222
  756. 2025-04-16 13:54:15 [nacos-grpc-client-executor-117.72.115.2-958] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1223
  757. 2025-04-16 13:54:15 [nacos-grpc-client-executor-117.72.115.2-958] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1223
  758. 2025-04-16 13:54:17 [nacos-grpc-client-executor-117.72.115.2-961] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744780549280_114.246.237.154_18674]Request stream error, switch server,error={}
  759. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  760. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  761. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  762. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  763. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  764. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  765. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  766. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  767. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  768. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  769. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  770. at java.base/java.lang.Thread.run(Thread.java:833)
  771. Caused by: java.net.SocketException: Connection reset
  772. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  773. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  774. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  775. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  776. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  777. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  778. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  779. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  780. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  781. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  782. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  783. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  784. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  785. ... 1 common frames omitted
  786. 2025-04-16 13:54:17 [nacos-grpc-client-executor-117.72.115.2-953] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744779087065_114.246.237.154_8797]Request stream error, switch server,error={}
  787. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  788. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  789. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  790. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  791. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  792. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  793. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  794. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  795. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  796. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  797. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  798. at java.base/java.lang.Thread.run(Thread.java:833)
  799. Caused by: java.net.SocketException: Connection reset
  800. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  801. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  802. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  803. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  804. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  805. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  806. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  807. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  808. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  809. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  810. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  811. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  812. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  813. ... 1 common frames omitted
  814. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Server healthy check fail, currentConnection = 1744780549280_114.246.237.154_18674
  815. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  816. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  817. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Server healthy check fail, currentConnection = 1744779087065_114.246.237.154_8797
  818. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Try to reconnect to a new server, server is not appointed, will choose a random server.
  819. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  820. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744782857141_114.246.237.154_19673
  821. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744780549280_114.246.237.154_18674
  822. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744780549280_114.246.237.154_18674
  823. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  824. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  825. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  826. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  827. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  828. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  829. 2025-04-16 13:54:17 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  830. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Success to connect a server [117.72.115.2:28848], connectionId = 1744782857292_114.246.237.154_11269
  831. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744779087065_114.246.237.154_8797
  832. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744779087065_114.246.237.154_8797
  833. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Try to reconnect to a new server, server is not appointed, will choose a random server.
  834. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  835. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify disconnected event to listeners
  836. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  837. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  838. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify connected event to listeners.
  839. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  840. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744782857405_114.246.237.154_11271
  841. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782857141_114.246.237.154_19673
  842. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782857141_114.246.237.154_19673
  843. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  844. 2025-04-16 13:54:18 [nacos-grpc-client-executor-117.72.115.2-976] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782857141_114.246.237.154_19673]Ignore error event,isRunning:true,isAbandon=true
  845. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  846. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  847. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  848. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  849. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Success to connect a server [117.72.115.2:28848], connectionId = 1744782857556_114.246.237.154_19679
  850. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782857292_114.246.237.154_11269
  851. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782857292_114.246.237.154_11269
  852. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify disconnected event to listeners
  853. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  854. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  855. 2025-04-16 13:54:18 [nacos-grpc-client-executor-117.72.115.2-968] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782857292_114.246.237.154_11269]Ignore error event,isRunning:true,isAbandon=true
  856. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify connected event to listeners.
  857. 2025-04-16 13:54:18 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  858. 2025-04-16 13:54:18 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DEFAULT_GROUP@@ruoyi-system
  859. 2025-04-16 13:54:18 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DEFAULT_GROUP@@ruoyi-sentinel-dashboard#
  860. 2025-04-16 13:54:19 [nacos-grpc-client-executor-117.72.115.2-966] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Receive server push request, request = NotifySubscriberRequest, requestId = 1240
  861. 2025-04-16 13:54:19 [nacos-grpc-client-executor-117.72.115.2-966] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Ack server push request, request = NotifySubscriberRequest, requestId = 1240
  862. 2025-04-16 14:09:46 [nacos-grpc-client-executor-117.72.115.2-1155] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744782857405_114.246.237.154_11271]Request stream error, switch server,error={}
  863. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  864. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  865. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  866. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  867. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  868. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  869. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  870. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  871. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  872. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  873. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  874. at java.base/java.lang.Thread.run(Thread.java:833)
  875. Caused by: java.net.SocketException: Connection reset
  876. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  877. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  878. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  879. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  880. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  881. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  882. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  883. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  884. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  885. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  886. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  887. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  888. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  889. ... 1 common frames omitted
  890. 2025-04-16 14:09:48 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Server healthy check fail, currentConnection = 1744782857405_114.246.237.154_11271
  891. 2025-04-16 14:09:48 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  892. 2025-04-16 14:09:48 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  893. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744783788644_114.246.237.154_20156
  894. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782857405_114.246.237.154_11271
  895. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782857405_114.246.237.154_11271
  896. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  897. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  898. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  899. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  900. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  901. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  902. 2025-04-16 14:09:50 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  903. 2025-04-16 14:09:52 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DEFAULT_GROUP@@ruoyi-system
  904. 2025-04-16 14:09:53 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  905. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 392100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@237c3e70[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  906. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  907. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  908. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  909. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  910. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  911. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  912. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  913. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  914. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  915. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  916. at java.base/java.lang.Thread.run(Thread.java:833)
  917. 2025-04-16 14:09:53 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  918. 2025-04-16 14:09:53 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DEFAULT_GROUP@@ruoyi-sentinel-dashboard#
  919. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744783792836_114.246.237.154_20158
  920. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744783788644_114.246.237.154_20156
  921. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744783788644_114.246.237.154_20156
  922. 2025-04-16 14:09:54 [nacos-grpc-client-executor-117.72.115.2-1159] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744783788644_114.246.237.154_20156]Ignore error event,isRunning:true,isAbandon=true
  923. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  924. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  925. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  926. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  927. 2025-04-16 14:09:54 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  928. 2025-04-16 14:09:57 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DEFAULT_GROUP@@ruoyi-system
  929. 2025-04-16 14:10:00 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DEFAULT_GROUP@@ruoyi-sentinel-dashboard#
  930. 2025-04-16 14:10:01 [nacos-grpc-client-executor-117.72.115.2-1173] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Receive server push request, request = NotifySubscriberRequest, requestId = 1253
  931. 2025-04-16 14:10:01 [nacos-grpc-client-executor-117.72.115.2-1173] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Ack server push request, request = NotifySubscriberRequest, requestId = 1253
  932. 2025-04-16 14:10:14 [redisson-timer-4-1] ERROR o.r.c.handler.PingConnectionHandler - Unable to send PING command over channel: [id: 0x70ec9a5d, L:/192.168.1.110:54761 - R:117.72.115.2/117.72.115.2:16379]
  933. org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://117.72.115.2:16379]
  934. at org.redisson.client.RedisConnection.lambda$async$0(RedisConnection.java:256)
  935. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.run(HashedWheelTimer.java:715)
  936. at io.netty.util.concurrent.ImmediateExecutor.execute(ImmediateExecutor.java:34)
  937. at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:703)
  938. at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:790)
  939. at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:503)
  940. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  941. at java.base/java.lang.Thread.run(Thread.java:833)
  942. 2025-04-16 14:17:22 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@46c581c4 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  943. 2025-04-16 14:17:24 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Server healthy check fail, currentConnection = 1744782852369_114.246.237.154_10289
  944. 2025-04-16 14:17:24 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Try to reconnect to a new server, server is not appointed, will choose a random server.
  945. 2025-04-16 14:17:24 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  946. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Success to connect a server [117.72.115.2:28848], connectionId = 1744784244791_114.246.237.154_11285
  947. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782852369_114.246.237.154_10289
  948. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782852369_114.246.237.154_10289
  949. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify disconnected event to listeners
  950. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  951. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  952. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify connected event to listeners.
  953. 2025-04-16 14:17:26 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  954. 2025-04-16 14:17:26 [nacos-grpc-client-executor-117.72.115.2-1243] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744782852369_114.246.237.154_10289]Ignore error event,isRunning:true,isAbandon=true
  955. 2025-04-16 14:17:28 [NettyServerWorker-6-9] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57307 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  956. 2025-04-16 14:17:28 [NettyServerWorker-6-2] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57321 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  957. 2025-04-16 14:17:28 [NettyServerWorker-6-6] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57530 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  958. 2025-04-16 14:17:28 [NettyServerWorker-6-4] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57527 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  959. 2025-04-16 14:17:29 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57317 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  960. 2025-04-16 14:17:29 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57525 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  961. 2025-04-16 14:17:29 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system
  962. 2025-04-16 14:17:30 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system#
  963. 2025-04-16 14:17:30 [NettyServerWorker-6-8] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49345 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  964. 2025-04-16 14:17:30 [NettyServerWorker-6-7] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49344 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  965. 2025-04-16 14:17:30 [NettyServerWorker-6-9] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49346 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  966. 2025-04-16 14:17:30 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49347 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  967. 2025-04-16 14:17:30 [NettyServerWorker-6-2] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49348 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  968. 2025-04-16 14:17:30 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49349 -> /192.168.1.110:20881 is established., dubbo version: 3.2.7, current host: 192.168.1.110
  969. 2025-04-16 14:17:30 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-resource#
  970. 2025-04-16 14:17:30 [nacos-grpc-client-executor-117.72.115.2-1246] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1269
  971. 2025-04-16 14:17:30 [nacos-grpc-client-executor-117.72.115.2-1246] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1269
  972. 2025-04-16 14:17:33 [nacos-grpc-client-executor-117.72.115.2-1248] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1270
  973. 2025-04-16 14:17:33 [nacos-grpc-client-executor-117.72.115.2-1248] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1270
  974. 2025-04-16 14:18:13 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@35157a75 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  975. 2025-04-16 14:19:20 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY4Nn0.sF8GR70fNLU7fsfcewPk5k63WZejsiY7bxlNTyFJIrU, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=edf56f1c73d25cc486de319e862891d2, Client-RequestTS=1744784357324, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 66300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@24cbcec0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  976. 2025-04-16 14:19:20 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.config.impl.ClientWorker - Async listen config change error
  977. com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 66300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@24cbcec0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  978. at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78)
  979. at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:645)
  980. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1011)
  981. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:992)
  982. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.executeConfigListen(ClientWorker.java:786)
  983. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$startInternal$2(ClientWorker.java:704)
  984. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  985. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  986. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  987. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  988. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  989. at java.base/java.lang.Thread.run(Thread.java:833)
  990. Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 66300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@24cbcec0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  991. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  992. at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76)
  993. ... 11 common frames omitted
  994. 2025-04-16 14:19:20 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Server check success, currentServer is 117.72.115.2:28848
  995. 2025-04-16 14:19:21 [com.alibaba.nacos.client.Worker] ERROR c.alibaba.nacos.common.remote.client - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc0NDc5NTY3Nn0.-SUy7NK4tzQy11dhAL4dHYJHQKf18NU-oyX_pB_p-ss, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f0921b18580f666d733c224ce3dcf2e, Client-RequestTS=1744784358371, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 882300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c7552c0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  996. 2025-04-16 14:19:21 [com.alibaba.nacos.client.Worker] ERROR c.a.n.c.config.impl.ClientWorker - Async listen config change error
  997. com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 882300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c7552c0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  998. at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:78)
  999. at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:645)
  1000. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1011)
  1001. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:992)
  1002. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.executeConfigListen(ClientWorker.java:786)
  1003. at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$startInternal$2(ClientWorker.java:704)
  1004. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1005. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1006. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1007. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1008. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1009. at java.base/java.lang.Thread.run(Thread.java:833)
  1010. Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 882300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c7552c0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}]]
  1011. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  1012. at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:76)
  1013. ... 11 common frames omitted
  1014. 2025-04-16 14:19:21 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Server check success, currentServer is 117.72.115.2:28848
  1015. 2025-04-16 14:19:38 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@f592508 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1016. 2025-04-16 14:20:08 [NettyServerWorker-6-5] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:57529 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1017. 2025-04-16 14:20:08 [NettyServerWorker-6-8] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49345 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1018. 2025-04-16 14:20:08 [NettyServerWorker-6-9] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49346 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1019. 2025-04-16 14:20:08 [NettyServerWorker-6-2] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49348 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1020. 2025-04-16 14:20:08 [NettyServerWorker-6-3] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49349 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1021. 2025-04-16 14:20:08 [NettyClientWorker-7-5] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:57528 -> /192.168.1.110:20880 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1022. 2025-04-16 14:20:08 [NettyServerWorker-6-1] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49347 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1023. 2025-04-16 14:20:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@37e3bc30 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1024. 2025-04-16 14:20:08 [NettyClientWorker-7-6] INFO o.a.d.r.t.netty4.NettyClientHandler - [DUBBO] The connection of /192.168.1.110:57529 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1025. 2025-04-16 14:20:08 [NettyServerWorker-6-7] WARN o.a.d.r.transport.AbstractServer - [DUBBO] All clients has disconnected from /192.168.1.110:20881. You can graceful shutdown now., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 99-0. This may be caused by unknown error in remoting module, go to https://dubbo.apache.org/faq/99/0 to find instructions.
  1026. 2025-04-16 14:20:08 [NettyServerWorker-6-7] INFO o.a.d.r.t.netty4.NettyServerHandler - [DUBBO] The connection of /192.168.1.110:49344 -> /192.168.1.110:20881 is disconnected., dubbo version: 3.2.7, current host: 192.168.1.110
  1027. 2025-04-16 14:20:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3a2ab95f (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1028. 2025-04-16 14:20:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@2c6c6aff (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1029. 2025-04-16 14:20:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@11e1250c (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1030. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1275] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744784244791_114.246.237.154_11285]Request stream error, switch server,error={}
  1031. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1032. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1033. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1034. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1035. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1036. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1037. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1038. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1039. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1040. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1041. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1042. at java.base/java.lang.Thread.run(Thread.java:833)
  1043. Caused by: java.net.SocketException: Connection reset
  1044. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1045. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1046. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1047. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1048. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1049. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1050. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1051. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1052. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1053. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1054. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1055. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1056. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1057. ... 1 common frames omitted
  1058. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1289] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744782853330_114.246.237.154_10785]Request stream error, switch server,error={}
  1059. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1060. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1061. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1062. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1063. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1064. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1065. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1066. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1067. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1068. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1069. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1070. at java.base/java.lang.Thread.run(Thread.java:833)
  1071. Caused by: java.net.SocketException: Connection reset
  1072. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1073. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1074. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1075. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1076. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1077. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1078. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1079. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1080. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1081. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1082. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1083. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1084. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1085. ... 1 common frames omitted
  1086. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1087. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1287] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744783792836_114.246.237.154_20158]Request stream error, switch server,error={}
  1088. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1089. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1090. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1091. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1092. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1093. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1094. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1095. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1096. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1097. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1098. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1099. at java.base/java.lang.Thread.run(Thread.java:833)
  1100. Caused by: java.net.SocketException: Connection reset
  1101. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1102. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1103. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1104. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1105. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1106. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1107. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1108. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1109. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1110. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1111. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1112. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1113. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1114. ... 1 common frames omitted
  1115. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1271] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744782854311_114.246.237.154_11258]Request stream error, switch server,error={}
  1116. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1117. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1118. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1119. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1120. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1121. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1122. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1123. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1124. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1125. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1126. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1127. at java.base/java.lang.Thread.run(Thread.java:833)
  1128. Caused by: java.net.SocketException: Connection reset
  1129. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1130. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1131. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1132. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1133. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1134. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1135. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1136. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1137. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1138. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1139. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1140. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1141. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1142. ... 1 common frames omitted
  1143. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1144. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1145. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1146. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1147. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1267] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744782857556_114.246.237.154_19679]Request stream error, switch server,error={}
  1148. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1149. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1150. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1151. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1152. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1153. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1154. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1155. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1156. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1157. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1158. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1159. at java.base/java.lang.Thread.run(Thread.java:833)
  1160. Caused by: java.net.SocketException: Connection reset
  1161. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1162. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1163. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1164. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1165. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1166. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1167. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1168. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1169. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1170. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1171. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1172. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1173. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1174. ... 1 common frames omitted
  1175. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1176. 2025-04-16 14:20:08 [nacos-grpc-client-executor-117.72.115.2-1298] ERROR c.a.n.c.r.client.grpc.GrpcClient - [1744782853258_114.246.237.154_19189]Request stream error, switch server,error={}
  1177. com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1178. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1179. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:487)
  1180. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1181. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1182. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1183. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1184. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1185. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1186. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1187. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1188. at java.base/java.lang.Thread.run(Thread.java:833)
  1189. Caused by: java.net.SocketException: Connection reset
  1190. at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394)
  1191. at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426)
  1192. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:258)
  1193. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
  1194. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
  1195. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
  1196. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
  1197. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1198. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1199. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1200. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1201. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1202. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1203. ... 1 common frames omitted
  1204. 2025-04-16 14:20:08 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@67bb1281 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  1205. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1206. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1207. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1208. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1209. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1210. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1211. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1212. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1213. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1214. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1215. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1216. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1217. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1218. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1219. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1220. at java.base/java.lang.Thread.run(Thread.java:833)
  1221. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1222. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1223. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1224. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1225. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1226. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1227. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1228. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1229. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1230. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1231. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1232. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1233. ... 3 common frames omitted
  1234. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1235. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1236. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1237. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1238. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1239. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1240. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1241. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1242. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1243. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1244. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1245. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1246. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1247. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1248. at java.base/java.lang.Thread.run(Thread.java:833)
  1249. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1250. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1251. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1252. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1253. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1254. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1255. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1256. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1257. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1258. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1259. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1260. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1261. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1262. at java.base/java.lang.Thread.run(Thread.java:833)
  1263. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1264. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1265. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1266. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1267. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1268. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1269. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1270. ... 3 common frames omitted
  1271. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1272. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1273. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1274. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1275. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1276. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1277. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1278. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1279. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1280. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1281. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1282. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1283. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1284. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1285. at java.base/java.lang.Thread.run(Thread.java:833)
  1286. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1287. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1288. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1289. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1290. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1291. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1292. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1293. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1294. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1295. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1296. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1297. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1298. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1299. at java.base/java.lang.Thread.run(Thread.java:833)
  1300. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1301. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1302. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1303. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1304. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1305. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1306. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1307. ... 3 common frames omitted
  1308. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1309. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1310. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1311. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1312. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1313. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1314. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1315. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1316. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1317. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1318. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1319. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1320. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1321. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1322. at java.base/java.lang.Thread.run(Thread.java:833)
  1323. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1324. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1325. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1326. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1327. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1328. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1329. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1330. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1331. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1332. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1333. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1334. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1335. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1336. at java.base/java.lang.Thread.run(Thread.java:833)
  1337. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1338. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1339. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1340. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1341. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1342. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1343. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1344. ... 3 common frames omitted
  1345. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1346. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1347. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1348. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1349. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1350. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1351. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1352. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1353. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1354. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1355. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1356. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1357. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1358. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1359. at java.base/java.lang.Thread.run(Thread.java:833)
  1360. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Server healthy check fail, currentConnection = 1744782857556_114.246.237.154_19679
  1361. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1362. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1363. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Server healthy check fail, currentConnection = 1744783792836_114.246.237.154_20158
  1364. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  1365. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1366. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1367. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1368. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1369. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1370. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1371. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1372. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1373. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1374. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1375. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1376. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1377. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1378. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1379. at java.base/java.lang.Thread.run(Thread.java:833)
  1380. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1381. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1382. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1383. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1384. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1385. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1386. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1387. ... 3 common frames omitted
  1388. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1389. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1390. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1391. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1392. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1393. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1394. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1395. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1396. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1397. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1398. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1399. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1400. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1401. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1402. at java.base/java.lang.Thread.run(Thread.java:833)
  1403. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1404. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1405. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1406. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1407. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1408. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1409. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1410. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1411. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1412. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1413. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1414. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1415. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1416. at java.base/java.lang.Thread.run(Thread.java:833)
  1417. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1418. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1419. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1420. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1421. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1422. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1423. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1424. ... 3 common frames omitted
  1425. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1426. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1427. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1428. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1429. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1430. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1431. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1432. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1433. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1434. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1435. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1436. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1437. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1438. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1439. at java.base/java.lang.Thread.run(Thread.java:833)
  1440. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1441. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1442. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1443. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1444. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1445. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1446. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1447. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1448. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1449. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1450. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1451. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1452. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1453. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1454. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1455. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1456. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1457. at java.base/java.lang.Thread.run(Thread.java:833)
  1458. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1459. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1460. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1461. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1462. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1463. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1464. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1465. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1466. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1467. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1468. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1469. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1470. ... 3 common frames omitted
  1471. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1472. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1473. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1474. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1475. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1476. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1477. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1478. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1479. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1480. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1481. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1482. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1483. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1484. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1485. at java.base/java.lang.Thread.run(Thread.java:833)
  1486. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1487. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1488. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1489. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1490. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1491. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1492. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1493. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1494. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1495. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1496. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1497. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1498. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1499. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1500. at java.base/java.lang.Thread.run(Thread.java:833)
  1501. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1502. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1503. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1504. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1505. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1506. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1507. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1508. ... 3 common frames omitted
  1509. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1510. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1511. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1512. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1513. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1514. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1515. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1516. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1517. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1518. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1519. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1520. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1521. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1522. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1523. at java.base/java.lang.Thread.run(Thread.java:833)
  1524. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1525. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1526. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1527. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1528. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1529. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1530. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1531. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1532. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1533. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1534. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1535. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1536. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1537. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1538. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1539. at java.base/java.lang.Thread.run(Thread.java:833)
  1540. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1541. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1542. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1543. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1544. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1545. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1546. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1547. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1548. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1549. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1550. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1551. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1552. ... 3 common frames omitted
  1553. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1554. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1555. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1556. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1557. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1558. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1559. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1560. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1561. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1562. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1563. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1564. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1565. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1566. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1567. at java.base/java.lang.Thread.run(Thread.java:833)
  1568. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1569. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1570. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1571. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1572. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1573. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1574. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1575. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1576. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1577. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1578. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1579. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1580. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1581. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1582. at java.base/java.lang.Thread.run(Thread.java:833)
  1583. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1584. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1585. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1586. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1587. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1588. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1589. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1590. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1591. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1592. ... 3 common frames omitted
  1593. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1594. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1595. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1596. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1597. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1598. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1599. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1600. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1601. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1602. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1603. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1604. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1605. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1606. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1607. at java.base/java.lang.Thread.run(Thread.java:833)
  1608. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1609. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1610. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1611. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1612. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1613. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1614. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1615. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1616. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1617. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1618. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1619. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1620. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1621. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1622. at java.base/java.lang.Thread.run(Thread.java:833)
  1623. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1624. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1625. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1626. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1627. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1628. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1629. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1630. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1631. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1632. ... 3 common frames omitted
  1633. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1634. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1635. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1636. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1637. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1638. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1639. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1640. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1641. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1642. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1643. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1644. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1645. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1646. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1647. at java.base/java.lang.Thread.run(Thread.java:833)
  1648. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1649. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1650. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1651. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1652. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1653. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1654. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1655. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1656. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1657. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1658. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1659. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1660. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1661. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1662. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1663. at java.base/java.lang.Thread.run(Thread.java:833)
  1664. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1665. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1666. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1667. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1668. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1669. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1670. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1671. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1672. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1673. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1674. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1675. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1676. ... 3 common frames omitted
  1677. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1678. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1679. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1680. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1681. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1682. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1683. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1684. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1685. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1686. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1687. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1688. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1689. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1690. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1691. at java.base/java.lang.Thread.run(Thread.java:833)
  1692. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 1 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1693. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1694. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1695. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1696. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1697. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1698. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1699. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1700. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1701. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1702. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1703. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1704. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1705. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1706. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1707. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1708. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1709. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1710. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1711. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1712. at java.base/java.lang.Thread.run(Thread.java:833)
  1713. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1714. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1715. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1716. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1717. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1718. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1719. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1720. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1721. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1722. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1723. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1724. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1725. ... 3 common frames omitted
  1726. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1727. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1728. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1729. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1730. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1731. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1732. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1733. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1734. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1735. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1736. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1737. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1738. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1739. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1740. at java.base/java.lang.Thread.run(Thread.java:833)
  1741. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1742. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1743. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1744. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1745. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1746. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1747. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1748. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1749. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1750. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1751. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1752. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1753. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1754. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1755. at java.base/java.lang.Thread.run(Thread.java:833)
  1756. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1757. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1758. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1759. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1760. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1761. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1762. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1763. ... 3 common frames omitted
  1764. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1765. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1766. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1767. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1768. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1769. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1770. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1771. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1772. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1773. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1774. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1775. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1776. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1777. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1778. at java.base/java.lang.Thread.run(Thread.java:833)
  1779. 2025-04-16 14:20:08 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1780. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1781. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1782. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1783. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1784. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1785. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1786. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1787. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1788. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1789. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1790. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1791. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1792. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1793. at java.base/java.lang.Thread.run(Thread.java:833)
  1794. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1795. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1796. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1797. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1798. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1799. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1800. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1801. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1802. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1803. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1804. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1805. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1806. ... 3 common frames omitted
  1807. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1808. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1809. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1810. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1811. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1812. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1813. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1814. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1815. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1816. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1817. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1818. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1819. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1820. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1821. at java.base/java.lang.Thread.run(Thread.java:833)
  1822. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1823. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1824. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1825. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1826. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1827. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1828. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1829. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1830. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1831. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1832. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1833. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1834. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1835. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1836. at java.base/java.lang.Thread.run(Thread.java:833)
  1837. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1838. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1839. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1840. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1841. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1842. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1843. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1844. ... 3 common frames omitted
  1845. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1846. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1847. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1848. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1849. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1850. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1851. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1852. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1853. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1854. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1855. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1856. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1857. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1858. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1859. at java.base/java.lang.Thread.run(Thread.java:833)
  1860. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1861. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1862. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1863. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1864. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1865. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1866. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1867. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1868. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1869. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1870. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1871. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1872. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1873. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1874. at java.base/java.lang.Thread.run(Thread.java:833)
  1875. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1876. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1877. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1878. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1879. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1880. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1881. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1882. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1883. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1884. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1885. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1886. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1887. ... 3 common frames omitted
  1888. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1889. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1890. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1891. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1892. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1893. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1894. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1895. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1896. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1897. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1898. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1899. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1900. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1901. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1902. at java.base/java.lang.Thread.run(Thread.java:833)
  1903. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1904. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1905. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1906. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1907. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1908. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1909. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1910. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1911. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1912. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1913. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1914. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1915. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1916. at java.base/java.lang.Thread.run(Thread.java:833)
  1917. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1918. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1919. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1920. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1921. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  1922. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  1923. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  1924. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  1925. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  1926. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  1927. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1928. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  1929. ... 3 common frames omitted
  1930. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1931. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1932. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1933. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1934. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1935. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1936. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1937. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1938. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1939. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1940. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1941. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1942. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1943. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1944. at java.base/java.lang.Thread.run(Thread.java:833)
  1945. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1946. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 2 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1947. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1948. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1949. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1950. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1951. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1952. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1953. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1954. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1955. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1956. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1957. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1958. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  1959. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  1960. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  1961. at java.base/java.lang.Thread.run(Thread.java:833)
  1962. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1963. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  1964. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  1965. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  1966. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  1967. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  1968. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  1969. ... 3 common frames omitted
  1970. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  1971. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  1972. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  1973. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  1974. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  1975. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  1976. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  1977. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  1978. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  1979. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  1980. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  1981. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  1982. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  1983. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  1984. at java.base/java.lang.Thread.run(Thread.java:833)
  1985. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  1986. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1987. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1988. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  1989. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  1990. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  1991. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  1992. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  1993. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  1994. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  1995. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  1996. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  1997. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  1998. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  1999. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2000. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2001. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2002. at java.base/java.lang.Thread.run(Thread.java:833)
  2003. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2004. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2005. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2006. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2007. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2008. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2009. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2010. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2011. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2012. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2013. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2014. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2015. ... 3 common frames omitted
  2016. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2017. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2018. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2019. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2020. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2021. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2022. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2023. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2024. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2025. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2026. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2027. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2028. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2029. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2030. at java.base/java.lang.Thread.run(Thread.java:833)
  2031. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2032. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2033. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2034. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2035. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2036. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2037. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2038. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2039. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2040. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2041. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2042. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2043. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2044. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2045. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2046. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2047. at java.base/java.lang.Thread.run(Thread.java:833)
  2048. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2049. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2050. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2051. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2052. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  2053. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  2054. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2055. ... 3 common frames omitted
  2056. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2057. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2058. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2059. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2060. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2061. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2062. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2063. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2064. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2065. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2066. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2067. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2068. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2069. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2070. at java.base/java.lang.Thread.run(Thread.java:833)
  2071. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2072. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2073. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2074. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2075. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2076. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2077. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2078. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2079. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2080. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2081. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2082. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2083. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2084. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2085. at java.base/java.lang.Thread.run(Thread.java:833)
  2086. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2087. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2088. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2089. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2090. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  2091. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  2092. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2093. ... 3 common frames omitted
  2094. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2095. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2096. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2097. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2098. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2099. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2100. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2101. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2102. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2103. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2104. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2105. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2106. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2107. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2108. at java.base/java.lang.Thread.run(Thread.java:833)
  2109. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2110. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2111. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2112. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2113. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2114. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2115. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2116. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2117. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2118. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2119. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2120. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2121. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2122. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2123. at java.base/java.lang.Thread.run(Thread.java:833)
  2124. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2125. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2126. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2127. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2128. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  2129. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  2130. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2131. ... 3 common frames omitted
  2132. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2133. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2134. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2135. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2136. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2137. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2138. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2139. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2140. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2141. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2142. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2143. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2144. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2145. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2146. at java.base/java.lang.Thread.run(Thread.java:833)
  2147. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2148. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2149. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2150. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2151. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2152. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2153. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2154. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2155. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2156. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2157. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2158. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2159. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2160. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2161. at java.base/java.lang.Thread.run(Thread.java:833)
  2162. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2163. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2164. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2165. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2166. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:510)
  2167. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:299)
  2168. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2169. ... 3 common frames omitted
  2170. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2171. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2172. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2173. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2174. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2175. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2176. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2177. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2178. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2179. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2180. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2181. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2182. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2183. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2184. at java.base/java.lang.Thread.run(Thread.java:833)
  2185. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 3 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2186. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2187. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2188. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2189. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2190. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2191. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2192. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2193. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2194. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2195. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2196. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2197. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2198. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2199. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2200. at java.base/java.lang.Thread.run(Thread.java:833)
  2201. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2202. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2203. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2204. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2205. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2206. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2207. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2208. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2209. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2210. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2211. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2212. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2213. ... 3 common frames omitted
  2214. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2215. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2216. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2217. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2218. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2219. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2220. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2221. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2222. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2223. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2224. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2225. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2226. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2227. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2228. at java.base/java.lang.Thread.run(Thread.java:833)
  2229. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2230. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2231. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2232. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2233. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2234. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2235. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2236. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2237. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2238. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2239. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2240. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2241. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2242. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2243. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2244. at java.base/java.lang.Thread.run(Thread.java:833)
  2245. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2246. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2247. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2248. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2249. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2250. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2251. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2252. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2253. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2254. ... 3 common frames omitted
  2255. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2256. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2257. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2258. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2259. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2260. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2261. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2262. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2263. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2264. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2265. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2266. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2267. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2268. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2269. at java.base/java.lang.Thread.run(Thread.java:833)
  2270. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2271. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2272. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2273. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2274. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2275. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2276. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2277. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2278. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2279. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2280. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2281. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2282. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2283. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2284. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2285. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2286. at java.base/java.lang.Thread.run(Thread.java:833)
  2287. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2288. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2289. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2290. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2291. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2292. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2293. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2294. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2295. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2296. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2297. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2298. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2299. ... 3 common frames omitted
  2300. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2301. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2302. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2303. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2304. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2305. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2306. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2307. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2308. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2309. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2310. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2311. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2312. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2313. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2314. at java.base/java.lang.Thread.run(Thread.java:833)
  2315. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2316. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2317. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2318. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2319. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2320. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2321. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2322. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2323. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2324. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2325. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2326. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2327. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2328. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2329. at java.base/java.lang.Thread.run(Thread.java:833)
  2330. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2331. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2332. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2333. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2334. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2335. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2336. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2337. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2338. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2339. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2340. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2341. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2342. ... 3 common frames omitted
  2343. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2344. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2345. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2346. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2347. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2348. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2349. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2350. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2351. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2352. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2353. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2354. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2355. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2356. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2357. at java.base/java.lang.Thread.run(Thread.java:833)
  2358. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2359. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2360. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2361. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2362. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2363. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2364. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2365. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2366. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2367. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2368. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2369. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2370. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2371. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2372. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2373. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2374. at java.base/java.lang.Thread.run(Thread.java:833)
  2375. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2376. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2377. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2378. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2379. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2380. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2381. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2382. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2383. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2384. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2385. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2386. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2387. ... 3 common frames omitted
  2388. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2389. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2390. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2391. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2392. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2393. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2394. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2395. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2396. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2397. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2398. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2399. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2400. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2401. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2402. at java.base/java.lang.Thread.run(Thread.java:833)
  2403. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2404. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2405. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2406. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2407. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2408. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2409. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2410. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2411. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2412. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2413. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2414. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2415. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2416. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2417. at java.base/java.lang.Thread.run(Thread.java:833)
  2418. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2419. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2420. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2421. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2422. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2423. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2424. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2425. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2426. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2427. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2428. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2429. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2430. ... 3 common frames omitted
  2431. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2432. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2433. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2434. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2435. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2436. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2437. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2438. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2439. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2440. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2441. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2442. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2443. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2444. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2445. at java.base/java.lang.Thread.run(Thread.java:833)
  2446. 2025-04-16 14:20:09 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 4 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2447. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2448. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2449. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2450. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2451. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2452. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2453. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2454. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2455. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2456. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2457. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2458. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2459. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2460. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2461. at java.base/java.lang.Thread.run(Thread.java:833)
  2462. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2463. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2464. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2465. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2466. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2467. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2468. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2469. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2470. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2471. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2472. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2473. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2474. ... 3 common frames omitted
  2475. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2476. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2477. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2478. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2479. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2480. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2481. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2482. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2483. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2484. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2485. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2486. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2487. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2488. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2489. at java.base/java.lang.Thread.run(Thread.java:833)
  2490. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2491. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2492. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2493. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2494. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2495. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2496. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2497. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2498. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2499. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2500. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2501. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2502. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2503. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2504. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2505. at java.base/java.lang.Thread.run(Thread.java:833)
  2506. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2507. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2508. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2509. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2510. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2511. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2512. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2513. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2514. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2515. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2516. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2517. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2518. ... 3 common frames omitted
  2519. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2520. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2521. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2522. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2523. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2524. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2525. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2526. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2527. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2528. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2529. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2530. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2531. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2532. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2533. at java.base/java.lang.Thread.run(Thread.java:833)
  2534. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2535. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2536. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2537. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2538. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2539. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2540. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2541. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2542. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2543. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2544. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2545. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2546. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2547. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2548. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2549. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2550. at java.base/java.lang.Thread.run(Thread.java:833)
  2551. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2552. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2553. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2554. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2555. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2556. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2557. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2558. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2559. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2560. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2561. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2562. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2563. ... 3 common frames omitted
  2564. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2565. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2566. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2567. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2568. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2569. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2570. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2571. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2572. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2573. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2574. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2575. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2576. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2577. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2578. at java.base/java.lang.Thread.run(Thread.java:833)
  2579. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2580. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2581. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2582. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2583. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2584. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2585. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2586. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2587. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2588. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2589. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2590. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2591. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2592. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2593. at java.base/java.lang.Thread.run(Thread.java:833)
  2594. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2595. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2596. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2597. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2598. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2599. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2600. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2601. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2602. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2603. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2604. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2605. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2606. ... 3 common frames omitted
  2607. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2608. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2609. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2610. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2611. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2612. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2613. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2614. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2615. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2616. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2617. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2618. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2619. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2620. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2621. at java.base/java.lang.Thread.run(Thread.java:833)
  2622. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2623. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2624. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2625. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2626. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2627. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2628. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2629. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2630. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2631. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2632. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2633. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2634. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2635. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2636. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2637. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2638. at java.base/java.lang.Thread.run(Thread.java:833)
  2639. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2640. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2641. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2642. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2643. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2644. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2645. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2646. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2647. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2648. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2649. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2650. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2651. ... 3 common frames omitted
  2652. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2653. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2654. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2655. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2656. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2657. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2658. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2659. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2660. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2661. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2662. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2663. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2664. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2665. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2666. at java.base/java.lang.Thread.run(Thread.java:833)
  2667. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2668. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2669. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2670. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2671. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2672. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2673. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2674. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2675. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2676. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2677. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2678. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2679. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2680. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2681. at java.base/java.lang.Thread.run(Thread.java:833)
  2682. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2683. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2684. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2685. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2686. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2687. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2688. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2689. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2690. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2691. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2692. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2693. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2694. ... 3 common frames omitted
  2695. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2696. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2697. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2698. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2699. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2700. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2701. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2702. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2703. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2704. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2705. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2706. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2707. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2708. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2709. at java.base/java.lang.Thread.run(Thread.java:833)
  2710. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2711. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2712. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2713. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2714. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2715. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2716. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2717. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2718. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2719. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2720. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2721. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2722. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2723. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2724. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2725. at java.base/java.lang.Thread.run(Thread.java:833)
  2726. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2727. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2728. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2729. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2730. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2731. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2732. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2733. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2734. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2735. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2736. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2737. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2738. ... 3 common frames omitted
  2739. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2740. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2741. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2742. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2743. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2744. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2745. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2746. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2747. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2748. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2749. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2750. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2751. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2752. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2753. at java.base/java.lang.Thread.run(Thread.java:833)
  2754. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2755. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2756. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2757. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2758. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2759. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2760. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2761. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2762. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2763. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2764. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2765. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2766. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2767. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2768. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2769. at java.base/java.lang.Thread.run(Thread.java:833)
  2770. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2771. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2772. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2773. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2774. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2775. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2776. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2777. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2778. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2779. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2780. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2781. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2782. ... 3 common frames omitted
  2783. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2784. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2785. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2786. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2787. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2788. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2789. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2790. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2791. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2792. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2793. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2794. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2795. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2796. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2797. at java.base/java.lang.Thread.run(Thread.java:833)
  2798. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2799. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2800. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2801. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2802. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2803. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2804. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2805. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2806. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2807. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2808. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2809. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2810. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2811. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2812. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2813. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2814. at java.base/java.lang.Thread.run(Thread.java:833)
  2815. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2816. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2817. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2818. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2819. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2820. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2821. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2822. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2823. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2824. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2825. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2826. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2827. ... 3 common frames omitted
  2828. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2829. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2830. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2831. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2832. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2833. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2834. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2835. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2836. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2837. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2838. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2839. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2840. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2841. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2842. at java.base/java.lang.Thread.run(Thread.java:833)
  2843. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2844. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2845. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2846. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2847. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2848. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2849. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2850. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2851. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2852. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2853. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2854. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2855. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2856. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2857. at java.base/java.lang.Thread.run(Thread.java:833)
  2858. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2859. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2860. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2861. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2862. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2863. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2864. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2865. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2866. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2867. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2868. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2869. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2870. ... 3 common frames omitted
  2871. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2872. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2873. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2874. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2875. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2876. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2877. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2878. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2879. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2880. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2881. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2882. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2883. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2884. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2885. at java.base/java.lang.Thread.run(Thread.java:833)
  2886. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2887. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2888. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2889. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2890. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2891. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2892. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2893. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2894. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2895. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2896. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2897. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2898. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2899. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2900. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2901. at java.base/java.lang.Thread.run(Thread.java:833)
  2902. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2903. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2904. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2905. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2906. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2907. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2908. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2909. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2910. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2911. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2912. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2913. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2914. ... 3 common frames omitted
  2915. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2916. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2917. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2918. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2919. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2920. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2921. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2922. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2923. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2924. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2925. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2926. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2927. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2928. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2929. at java.base/java.lang.Thread.run(Thread.java:833)
  2930. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2931. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2932. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  2933. java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2934. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:566)
  2935. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:445)
  2936. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  2937. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  2938. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  2939. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  2940. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  2941. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  2942. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  2943. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  2944. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  2945. at java.base/java.lang.Thread.run(Thread.java:833)
  2946. Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception
  2947. at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:539)
  2948. at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:544)
  2949. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:471)
  2950. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:435)
  2951. at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:468)
  2952. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:563)
  2953. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:70)
  2954. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:744)
  2955. at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:723)
  2956. at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
  2957. at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
  2958. ... 3 common frames omitted
  2959. Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedNoRouteToHostException: No route to host: no further information: /117.72.115.2:29848
  2960. Caused by: java.net.NoRouteToHostException: No route to host: no further information
  2961. at java.base/sun.nio.ch.Net.pollConnect(Native Method)
  2962. at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
  2963. at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946)
  2964. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337)
  2965. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334)
  2966. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:710)
  2967. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
  2968. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
  2969. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
  2970. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  2971. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  2972. at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  2973. at java.base/java.lang.Thread.run(Thread.java:833)
  2974. 2025-04-16 14:20:10 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  2975. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2976. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2977. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2978. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2979. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2980. 2025-04-16 14:20:11 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  2981. 2025-04-16 14:20:12 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7fea923f (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  2982. 2025-04-16 14:20:12 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3855face (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  2983. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744784411837_114.246.237.154_20165
  2984. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782853330_114.246.237.154_10785
  2985. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782853330_114.246.237.154_10785
  2986. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify disconnected event to listeners
  2987. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] DisConnected,clear listen context...
  2988. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Notify connected event to listeners.
  2989. 2025-04-16 14:20:13 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0] Connected,notify listen context...
  2990. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744784412664_114.246.237.154_20171
  2991. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744783792836_114.246.237.154_20158
  2992. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744783792836_114.246.237.154_20158
  2993. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Try to reconnect to a new server, server is not appointed, will choose a random server.
  2994. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  2995. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  2996. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  2997. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  2998. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  2999. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  3000. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Success to connect a server [117.72.115.2:28848], connectionId = 1744784412664_114.246.237.154_20170
  3001. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782857556_114.246.237.154_19679
  3002. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782857556_114.246.237.154_19679
  3003. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify disconnected event to listeners
  3004. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  3005. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Try to reconnect to a new server, server is not appointed, will choose a random server.
  3006. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  3007. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify connected event to listeners.
  3008. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  3009. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  3010. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744784412691_114.246.237.154_20649
  3011. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782853258_114.246.237.154_19189
  3012. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782853258_114.246.237.154_19189
  3013. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify disconnected event to listeners
  3014. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] DisConnected,clear listen context...
  3015. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Notify connected event to listeners.
  3016. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [cbdd7f6d-3c69-44aa-bd56-c55382e8f693_config-0] Connected,notify listen context...
  3017. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] ERROR c.a.n.c.r.client.grpc.GrpcClient - Server check fail, please check server 117.72.115.2 ,port 29848 is available , error ={}
  3018. java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 921300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c388905[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@63271ba9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7e077946, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2c75f9ee}}}}]]
  3019. at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:508)
  3020. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:218)
  3021. at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:329)
  3022. at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502)
  3023. at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$2(RpcClient.java:343)
  3024. at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
  3025. at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
  3026. at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
  3027. at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  3028. at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  3029. at java.base/java.lang.Thread.run(Thread.java:833)
  3030. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '117.72.115.2', server main port = 28848}, error = unknown
  3031. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Success to connect a server [117.72.115.2:28848], connectionId = 1744784412692_114.246.237.154_11775
  3032. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744784244791_114.246.237.154_11285
  3033. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784244791_114.246.237.154_11285
  3034. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify disconnected event to listeners
  3035. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  3036. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  3037. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Notify connected event to listeners.
  3038. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  3039. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Success to connect a server [117.72.115.2:28848], connectionId = 1744784413991_114.246.237.154_20663
  3040. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744784412664_114.246.237.154_20170
  3041. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784412664_114.246.237.154_20170
  3042. 2025-04-16 14:20:14 [nacos-grpc-client-executor-117.72.115.2-1275] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744784412664_114.246.237.154_20170]Ignore error event,isRunning:true,isAbandon=true
  3043. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify disconnected event to listeners
  3044. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  3045. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  3046. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [edf18974-bc92-45b4-8299-564912ef9ccc] Notify connected event to listeners.
  3047. 2025-04-16 14:20:14 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  3048. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Success to connect a server [117.72.115.2:28848], connectionId = 1744784414557_114.246.237.154_12252
  3049. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744784412664_114.246.237.154_20171
  3050. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784412664_114.246.237.154_20171
  3051. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify disconnected event to listeners
  3052. 2025-04-16 14:20:15 [nacos-grpc-client-executor-117.72.115.2-1295] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744784412664_114.246.237.154_20171]Ignore error event,isRunning:true,isAbandon=true
  3053. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - Grpc connection disconnect, mark to redo
  3054. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] WARN com.alibaba.nacos.client.naming - mark to redo completed
  3055. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Notify connected event to listeners.
  3056. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO com.alibaba.nacos.client.naming - Grpc connection connect
  3057. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.r.client.grpc.GrpcClient - grpc client connection server:117.72.115.2 ip,serverPort:29848,grpcTslConfig:{"sslProvider":"OPENSSL","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
  3058. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Success to connect a server [117.72.115.2:28848], connectionId = 1744784414877_114.246.237.154_12256
  3059. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Abandon prev connection, server is 117.72.115.2:28848, connectionId is 1744782854311_114.246.237.154_11258
  3060. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744782854311_114.246.237.154_11258
  3061. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify disconnected event to listeners
  3062. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] DisConnected,clear listen context...
  3063. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.alibaba.nacos.common.remote.client - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Notify connected event to listeners.
  3064. 2025-04-16 14:20:15 [com.alibaba.nacos.client.remote.worker] INFO c.a.n.c.config.impl.ClientWorker - [de8a5d12-9fbe-4ca6-a4f1-b4683691b3ec_config-0] Connected,notify listen context...
  3065. 2025-04-16 14:20:16 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system
  3066. 2025-04-16 14:20:16 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-system#
  3067. 2025-04-16 14:20:16 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DUBBO_GROUP_LKX@@ruoyi-resource#
  3068. 2025-04-16 14:20:16 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REGISTER for DEFAULT_GROUP@@ruoyi-system
  3069. 2025-04-16 14:20:17 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo subscriber operation REGISTER for DEFAULT_GROUP@@ruoyi-sentinel-dashboard#
  3070. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1279] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1310
  3071. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1279] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1310
  3072. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1280] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1316
  3073. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1280] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1316
  3074. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1299] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Receive server push request, request = NotifySubscriberRequest, requestId = 1320
  3075. 2025-04-16 14:20:17 [nacos-grpc-client-executor-117.72.115.2-1299] INFO c.alibaba.nacos.common.remote.client - [294bf08c-4750-4371-a63d-d514d736846a] Ack server push request, request = NotifySubscriberRequest, requestId = 1320
  3076. 2025-04-16 14:20:18 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@6db843a7 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  3077. 2025-04-16 14:20:19 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@79f8709b (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  3078. 2025-04-16 14:20:22 [master housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - master - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@6eec66e0 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
  3079. 2025-04-16 14:20:32 [nacos-grpc-client-executor-117.72.115.2-1293] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1394
  3080. 2025-04-16 14:20:32 [nacos-grpc-client-executor-117.72.115.2-1293] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1394
  3081. 2025-04-16 14:20:32 [nacos-grpc-client-executor-117.72.115.2-1294] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Receive server push request, request = NotifySubscriberRequest, requestId = 1402
  3082. 2025-04-16 14:20:32 [nacos-grpc-client-executor-117.72.115.2-1294] INFO c.alibaba.nacos.common.remote.client - [37a16256-7b56-4023-bd5a-fe88905ff05d] Ack server push request, request = NotifySubscriberRequest, requestId = 1402
  3083. 2025-04-16 14:20:38 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3084. 2025-04-16 14:20:38 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3085. 2025-04-16 14:20:41 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3086. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3008ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3087. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3088. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3089. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3090. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3091. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3092. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3093. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3094. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3095. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3096. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3097. at java.base/java.lang.Thread.run(Thread.java:833)
  3098. 2025-04-16 14:20:41 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3099. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3008ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3100. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3101. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3102. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3103. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3104. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3105. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3106. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3107. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3108. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3109. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3110. at java.base/java.lang.Thread.run(Thread.java:833)
  3111. 2025-04-16 14:20:41 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3112. 2025-04-16 14:20:41 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3113. 2025-04-16 14:20:44 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3114. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3011ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3115. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3116. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3117. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3118. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3119. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3120. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3121. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3122. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3123. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3124. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3125. at java.base/java.lang.Thread.run(Thread.java:833)
  3126. 2025-04-16 14:20:44 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3127. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3011ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3128. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3129. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3130. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3131. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3132. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3133. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3134. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3135. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3136. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3137. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3138. at java.base/java.lang.Thread.run(Thread.java:833)
  3139. 2025-04-16 14:21:42 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3140. 2025-04-16 14:21:42 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3141. 2025-04-16 14:21:45 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3142. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3002ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3143. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3144. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3145. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3146. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3147. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3148. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3149. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3150. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3151. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3152. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3153. at java.base/java.lang.Thread.run(Thread.java:833)
  3154. 2025-04-16 14:21:45 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3155. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3002ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3156. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3157. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3158. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3159. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3160. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3161. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3162. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3163. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3164. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3165. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3166. at java.base/java.lang.Thread.run(Thread.java:833)
  3167. 2025-04-16 14:21:45 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3168. 2025-04-16 14:21:45 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3169. 2025-04-16 14:21:48 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3170. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3003ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3171. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3172. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3173. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3174. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3175. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3176. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3177. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3178. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3179. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3180. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3181. at java.base/java.lang.Thread.run(Thread.java:833)
  3182. 2025-04-16 14:21:48 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3183. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3003ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3184. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3185. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3186. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3187. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3188. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3189. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3190. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3191. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3192. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3193. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3194. at java.base/java.lang.Thread.run(Thread.java:833)
  3195. 2025-04-16 14:22:46 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3196. 2025-04-16 14:22:46 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3197. 2025-04-16 14:22:49 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3198. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3002ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3199. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3200. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3201. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3202. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3203. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3204. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3205. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3206. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3207. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3208. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3209. at java.base/java.lang.Thread.run(Thread.java:833)
  3210. 2025-04-16 14:22:49 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3211. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3002ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3212. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3213. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3214. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3215. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3216. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3217. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3218. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3219. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3220. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3221. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3222. at java.base/java.lang.Thread.run(Thread.java:833)
  3223. 2025-04-16 14:22:49 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3224. 2025-04-16 14:22:49 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3225. 2025-04-16 14:22:52 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3226. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3014ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3227. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3228. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3229. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3230. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3231. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3232. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3233. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3234. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3235. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3236. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3237. at java.base/java.lang.Thread.run(Thread.java:833)
  3238. 2025-04-16 14:22:52 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3239. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3014ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3240. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3241. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3242. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3243. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3244. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3245. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3246. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3247. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3248. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3249. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3250. at java.base/java.lang.Thread.run(Thread.java:833)
  3251. 2025-04-16 14:23:50 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3252. 2025-04-16 14:23:50 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3253. 2025-04-16 14:23:53 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3254. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3007ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3255. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3256. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3257. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3258. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3259. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3260. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3261. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3262. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3263. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3264. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3265. at java.base/java.lang.Thread.run(Thread.java:833)
  3266. 2025-04-16 14:23:53 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3267. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3007ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3268. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3269. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3270. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3271. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3272. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3273. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3274. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3275. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3276. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3277. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3278. at java.base/java.lang.Thread.run(Thread.java:833)
  3279. 2025-04-16 14:23:53 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3280. 2025-04-16 14:23:53 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3281. 2025-04-16 14:23:56 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3282. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3007ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3283. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3284. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3285. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3286. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3287. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3288. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3289. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3290. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3291. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3292. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3293. at java.base/java.lang.Thread.run(Thread.java:833)
  3294. 2025-04-16 14:23:56 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3295. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3007ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3296. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3297. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3298. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3299. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3300. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3301. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3302. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3303. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3304. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3305. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3306. at java.base/java.lang.Thread.run(Thread.java:833)
  3307. 2025-04-16 14:24:54 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3308. 2025-04-16 14:24:54 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3309. 2025-04-16 14:24:57 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3310. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3016ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3311. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3312. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3313. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3314. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3315. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3316. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3317. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3318. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3319. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3320. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3321. at java.base/java.lang.Thread.run(Thread.java:833)
  3322. 2025-04-16 14:24:57 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3323. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3016ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3324. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3325. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3326. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3327. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3328. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3329. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3330. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3331. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3332. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3333. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3334. at java.base/java.lang.Thread.run(Thread.java:833)
  3335. 2025-04-16 14:24:57 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3336. 2025-04-16 14:24:57 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3337. 2025-04-16 14:25:00 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Failed to connect to provider server by other reason., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-1. This may be caused by network disconnected, go to https://dubbo.apache.org/faq/6/1 to find instructions.
  3338. io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20881
  3339. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3340. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3341. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3342. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3343. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3344. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3345. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3346. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3347. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3348. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3349. at java.base/java.lang.Thread.run(Thread.java:833)
  3350. 2025-04-16 14:25:00 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3351. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881, error message is:connection timed out after 3000 ms: /192.168.1.110:20881
  3352. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:226)
  3353. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3354. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3355. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3356. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3357. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3358. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3359. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3360. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3361. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3362. at java.base/java.lang.Thread.run(Thread.java:833)
  3363. Caused by: io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20881
  3364. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3365. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3366. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3367. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3368. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3369. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3370. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3371. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3372. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3373. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3374. ... 1 common frames omitted
  3375. 2025-04-16 14:25:32 [Dubbo-framework-cache-refreshing-scheduler-thread-1] INFO o.a.d.m.AbstractCacheManager$CacheRefreshTask - [DUBBO] Dumping mapping caches, latest entries 8, dubbo version: 3.2.7, current host: 192.168.1.110
  3376. 2025-04-16 14:25:58 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3377. 2025-04-16 14:25:58 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3378. 2025-04-16 14:26:01 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Failed to connect to provider server by other reason., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-1. This may be caused by network disconnected, go to https://dubbo.apache.org/faq/6/1 to find instructions.
  3379. io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20880
  3380. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3381. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3382. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3383. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3384. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3385. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3386. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3387. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3388. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3389. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3390. at java.base/java.lang.Thread.run(Thread.java:833)
  3391. 2025-04-16 14:26:01 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3392. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880, error message is:connection timed out after 3000 ms: /192.168.1.110:20880
  3393. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:226)
  3394. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3395. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3396. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3397. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3398. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3399. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3400. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3401. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3402. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3403. at java.base/java.lang.Thread.run(Thread.java:833)
  3404. Caused by: io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20880
  3405. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3406. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3407. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3408. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3409. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3410. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3411. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3412. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3413. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3414. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3415. ... 1 common frames omitted
  3416. 2025-04-16 14:26:01 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3417. 2025-04-16 14:26:01 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3418. 2025-04-16 14:26:04 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3419. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3014ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3420. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3421. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3422. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3423. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3424. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3425. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3426. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3427. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3428. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3429. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3430. at java.base/java.lang.Thread.run(Thread.java:833)
  3431. 2025-04-16 14:26:04 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3432. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3014ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3433. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3434. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3435. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3436. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3437. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3438. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3439. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3440. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3441. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3442. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3443. at java.base/java.lang.Thread.run(Thread.java:833)
  3444. 2025-04-16 14:27:02 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3445. 2025-04-16 14:27:02 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3446. 2025-04-16 14:27:05 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Failed to connect to provider server by other reason., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-1. This may be caused by network disconnected, go to https://dubbo.apache.org/faq/6/1 to find instructions.
  3447. io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20880
  3448. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3449. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3450. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3451. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3452. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3453. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3454. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3455. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3456. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3457. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3458. at java.base/java.lang.Thread.run(Thread.java:833)
  3459. 2025-04-16 14:27:05 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3460. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880, error message is:connection timed out after 3000 ms: /192.168.1.110:20880
  3461. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:226)
  3462. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3463. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3464. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3465. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3466. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3467. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3468. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3469. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3470. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3471. at java.base/java.lang.Thread.run(Thread.java:833)
  3472. Caused by: io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20880
  3473. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3474. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3475. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3476. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3477. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3478. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3479. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3480. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3481. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3482. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3483. ... 1 common frames omitted
  3484. 2025-04-16 14:27:05 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3485. 2025-04-16 14:27:05 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3486. 2025-04-16 14:27:08 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Failed to connect to provider server by other reason., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-1. This may be caused by network disconnected, go to https://dubbo.apache.org/faq/6/1 to find instructions.
  3487. io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20881
  3488. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3489. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3490. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3491. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3492. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3493. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3494. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3495. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3496. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3497. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3498. at java.base/java.lang.Thread.run(Thread.java:833)
  3499. 2025-04-16 14:27:08 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3500. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881, error message is:connection timed out after 3000 ms: /192.168.1.110:20881
  3501. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:226)
  3502. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3503. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3504. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3505. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3506. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3507. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3508. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3509. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3510. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3511. at java.base/java.lang.Thread.run(Thread.java:833)
  3512. Caused by: io.netty.channel.ConnectTimeoutException: connection timed out after 3000 ms: /192.168.1.110:20881
  3513. at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe$1.run(AbstractNioChannel.java:261)
  3514. at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
  3515. at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:153)
  3516. at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:173)
  3517. at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:166)
  3518. at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
  3519. at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569)
  3520. at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
  3521. at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
  3522. at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
  3523. ... 1 common frames omitted
  3524. 2025-04-16 14:28:06 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3525. 2025-04-16 14:28:06 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3526. 2025-04-16 14:28:09 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3527. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3015ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3528. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3529. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3530. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3531. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3532. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3533. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3534. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3535. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3536. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3537. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3538. at java.base/java.lang.Thread.run(Thread.java:833)
  3539. 2025-04-16 14:28:09 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3540. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3015ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3541. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3542. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3543. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3544. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3545. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3546. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3547. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3548. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3549. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3550. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3551. at java.base/java.lang.Thread.run(Thread.java:833)
  3552. 2025-04-16 14:28:09 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3553. 2025-04-16 14:28:09 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3554. 2025-04-16 14:28:12 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3555. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3006ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3556. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3557. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3558. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3559. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3560. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3561. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3562. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3563. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3564. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3565. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3566. at java.base/java.lang.Thread.run(Thread.java:833)
  3567. 2025-04-16 14:28:12 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3568. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3006ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3569. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3570. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3571. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3572. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3573. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3574. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3575. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3576. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3577. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3578. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3579. at java.base/java.lang.Thread.run(Thread.java:833)
  3580. 2025-04-16 14:29:10 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110
  3581. 2025-04-16 14:29:10 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3582. 2025-04-16 14:29:13 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3583. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3013ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3584. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3585. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3586. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3587. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3588. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3589. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3590. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3591. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3592. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3593. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3594. at java.base/java.lang.Thread.run(Thread.java:833)
  3595. 2025-04-16 14:29:13 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57528 -> /192.168.1.110:20880]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3596. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20880/org.dromara.resource.api.RemoteMessageService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20880,"protocol":"dubbo"}]&dubbo.metadata.revision=f90804b5e8983a9a58cdcb62da76f4da&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.resource.api.RemoteMessageService&logger=slf4j&metadata-type=remote&methods=publishAll,sendMessage&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777593460&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20880 client-side timeout 3000ms (elapsed: 3013ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3597. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3598. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3599. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3600. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3601. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3602. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3603. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3604. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3605. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3606. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3607. at java.base/java.lang.Thread.run(Thread.java:833)
  3608. 2025-04-16 14:29:13 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Initial connection to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110
  3609. 2025-04-16 14:29:13 [dubbo-client-heartbeat-reconnect-thread-1] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3610. 2025-04-16 14:29:16 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.transport.netty4.NettyClient - [DUBBO] Client-side timeout., dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-2. This may be caused by provider crash, go to https://dubbo.apache.org/faq/6/2 to find instructions.
  3611. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3010ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3612. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3613. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3614. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3615. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3616. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3617. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3618. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3619. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3620. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3621. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3622. at java.base/java.lang.Thread.run(Thread.java:833)
  3623. 2025-04-16 14:29:16 [dubbo-client-heartbeat-reconnect-thread-1] ERROR o.a.d.r.e.s.h.ReconnectTimerTask - [DUBBO] Fail to connect toHeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [/192.168.1.110:57529 -> /192.168.1.110:20881]], dubbo version: 3.2.7, current host: 192.168.1.110, error code: 6-16. This may be caused by , go to https://dubbo.apache.org/faq/6/16 to find instructions.
  3624. org.apache.dubbo.remoting.RemotingException: client(url: dubbo://192.168.1.110:20881/org.dromara.system.api.RemoteClientService?application=ruoyi-system&background=false&cache=false&check=false&codec=dubbo&deprecated=false&dubbo=2.0.2&dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}]&dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12&dubbo.metadata.storage-type=remote&dynamic=true&executor-management-mode=isolation&file-cache=true&generic=false&heartbeat=60000&interface=org.dromara.system.api.RemoteClientService&logger=slf4j&metadata-type=remote&methods=queryByClientId&pid=8756&prefer.serialization=fastjson2,hessian2&qos.enable=false&register-mode=instance&register.ip=192.168.1.110&release=3.2.7&retries=0&serialize.check.status=WARN&service-name-mapping=true&side=consumer&sticky=false&timeout=3000&timestamp=1744777698263&unloadClusterRelated=false&validation=jvalidationNew) failed to connect to server /192.168.1.110:20881 client-side timeout 3000ms (elapsed: 3010ms) from netty client 192.168.1.110 using dubbo version 3.2.7
  3625. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:240)
  3626. at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:173)
  3627. at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:219)
  3628. at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:273)
  3629. at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:185)
  3630. at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:53)
  3631. at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:94)
  3632. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:653)
  3633. at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:732)
  3634. at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:454)
  3635. at java.base/java.lang.Thread.run(Thread.java:833)
  3636. 2025-04-16 14:29:21 [Thread-6] WARN c.a.nacos.common.notify.NotifyCenter - [NotifyCenter] Start destroying Publisher
  3637. 2025-04-16 14:29:21 [Thread-6] WARN c.a.nacos.common.notify.NotifyCenter - [NotifyCenter] Destruction of the end
  3638. 2025-04-16 14:29:21 [Thread-1] WARN c.a.n.c.http.HttpClientBeanHolder - [HttpClientBeanHolder] Start destroying common HttpClient
  3639. 2025-04-16 14:29:21 [Thread-1] WARN c.a.n.c.http.HttpClientBeanHolder - [HttpClientBeanHolder] Destruction of the end
  3640. 2025-04-16 14:29:21 [DubboShutdownHook] INFO o.a.dubbo.config.DubboShutdownHook - [DUBBO] Run shutdown hook now., dubbo version: 3.2.7, current host: 192.168.1.110
  3641. 2025-04-16 14:29:21 [DubboShutdownHook] INFO o.a.dubbo.config.DubboShutdownHook - [DUBBO] Waiting for modules(Dubbo Application[1.1](ruoyi-system)) managed by Spring to be shutdown., dubbo version: 3.2.7, current host: 192.168.1.110
  3642. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] is stopping., dubbo version: 3.2.7, current host: 192.168.1.110
  3643. 2025-04-16 14:29:21 [DubboShutdownHook] INFO o.a.dubbo.config.DubboShutdownHook - [DUBBO] Dubbo wait for application(Dubbo Application[1.1](ruoyi-system)) managed by Spring to be shutdown failed, time usage: 20ms, dubbo version: 3.2.7, current host: 192.168.1.110
  3644. 2025-04-16 14:29:21 [DubboShutdownHook] INFO o.a.dubbo.config.DubboShutdownHook - [DUBBO] Dubbo shutdown hooks execute now. Dubbo Application[1.1](ruoyi-system), dubbo version: 3.2.7, current host: 192.168.1.110
  3645. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteClientService, group=mapping, cnt=0
  3646. 2025-04-16 14:29:21 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteClientService+mapping+dev
  3647. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteDeptService, group=mapping, cnt=0
  3648. 2025-04-16 14:29:21 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteDeptService+mapping+dev
  3649. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.resource.api.RemoteMessageService, group=mapping, cnt=0
  3650. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteDataScopeService, group=mapping, cnt=0
  3651. 2025-04-16 14:29:21 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.resource.api.RemoteMessageService+mapping+dev
  3652. 2025-04-16 14:29:21 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteDataScopeService+mapping+dev
  3653. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteLogService, group=mapping, cnt=0
  3654. 2025-04-16 14:29:21 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteLogService+mapping+dev
  3655. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.resource.api.RemoteFileService, group=mapping, cnt=0
  3656. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Destroying instance listener of [ruoyi-resource], dubbo version: 3.2.7, current host: 192.168.1.110
  3657. 2025-04-16 14:29:21 [Dubbo-framework-shared-scheduler-thread-4] INFO o.a.d.r.c.AbstractServiceDiscovery - [DUBBO] Metadata of instance changed, updating instance with revision 0., dubbo version: 3.2.7, current host: 192.168.1.110
  3658. 2025-04-16 14:29:21 [Dubbo-framework-shared-scheduler-thread-4] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] dev deregistering service ruoyi-system with instance: Instance{instanceId='null', ip='192.168.1.110', port=20881, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='null', serviceName='ruoyi-system', metadata={dubbo.endpoints=[{"port":20881,"protocol":"dubbo"}], dubbo.metadata.revision=a6bb356e0538e9ee6b1690debb891b12, dubbo.metadata.storage-type=remote, timestamp=1744777698263}}
  3659. 2025-04-16 14:29:21 [SpringApplicationShutdownHook] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x96596f48, L:/192.168.1.110:57528 ! R:/192.168.1.110:20880], dubbo version: 3.2.7, current host: 192.168.1.110
  3660. 2025-04-16 14:29:22 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.resource.api.RemoteFileService+mapping+dev
  3661. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteUserService, group=mapping, cnt=0
  3662. 2025-04-16 14:29:22 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteUserService+mapping+dev
  3663. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO c.a.n.client.config.impl.CacheData - [fixed-dev-117.72.115.2_28848] [remove-listener] ok, dataId=org.dromara.system.api.RemoteDictService, group=mapping, cnt=0
  3664. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.r.c.e.l.ServiceInstancesChangedListener - [DUBBO] Destroying instance listener of [ruoyi-system], dubbo version: 3.2.7, current host: 192.168.1.110
  3665. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.r.t.netty4.NettyChannel - [DUBBO] Close netty channel [id: 0x467049ab, L:/192.168.1.110:57529 ! R:/192.168.1.110:20881], dubbo version: 3.2.7, current host: 192.168.1.110
  3666. 2025-04-16 14:29:22 [com.alibaba.nacos.client.Worker] INFO c.a.n.c.config.impl.ClientWorker - [fixed-dev-117.72.115.2_28848] [unsubscribe] org.dromara.system.api.RemoteDictService+mapping+dev
  3667. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.1] has stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3668. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.dubbo.rpc.model.FrameworkModel - [DUBBO] Reset global default application from Dubbo Application[1.1](ruoyi-system) to null, dubbo version: 3.2.7, current host: 192.168.1.110
  3669. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.c.d.DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](ruoyi-system) is stopping., dubbo version: 3.2.7, current host: 192.168.1.110
  3670. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.r.protocol.dubbo.DubboProtocol - [DUBBO] Destroying protocol [DubboProtocol] ..., dubbo version: 3.2.7, current host: 192.168.1.110
  3671. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.r.protocol.dubbo.DubboProtocol - [DUBBO] Closing dubbo server: /192.168.1.110:20881, dubbo version: 3.2.7, current host: 192.168.1.110
  3672. 2025-04-16 14:29:22 [SpringApplicationShutdownHook] INFO o.a.d.r.transport.AbstractServer - [DUBBO] Close NettyServer bind /0.0.0.0:20881, export /192.168.1.110:20881, dubbo version: 3.2.7, current host: 192.168.1.110
  3673. 2025-04-16 14:29:23 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation REMOVE for DUBBO_GROUP_LKX@@ruoyi-system
  3674. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO org.apache.dubbo.qos.server.Server - [DUBBO] qos-server stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3675. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO org.apache.dubbo.qos.server.Server - [DUBBO] qos-server stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3676. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO org.apache.dubbo.qos.server.Server - [DUBBO] qos-server stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3677. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO org.apache.dubbo.qos.server.Server - [DUBBO] qos-server stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3678. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] is stopping., dubbo version: 3.2.7, current host: 192.168.1.110
  3679. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.1.0] has stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3680. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.r.support.RegistryManager - [DUBBO] Close all registries [nacos://117.72.115.2:28848/org.apache.dubbo.registry.RegistryService?application=ruoyi-system&dubbo=2.0.2&executor-management-mode=isolation&file-cache=true&group=DUBBO_GROUP_LKX&interface=org.apache.dubbo.registry.RegistryService&logger=slf4j&metadata-type=remote&namespace=dev&pid=8756&qos.enable=false&register-mode=instance&release=3.2.7&serialize.check.status=WARN, nacos://117.72.115.2:28848/org.apache.dubbo.registry.RegistryService?application=ruoyi-system&dubbo=2.0.2&executor-management-mode=isolation&file-cache=true&group=DUBBO_GROUP_LKX&interface=org.apache.dubbo.registry.RegistryService&logger=slf4j&metadata-type=remote&namespace=dev&pid=8756&qos.enable=false&register-mode=instance&release=3.2.7&serialize.check.status=WARN, nacos://117.72.115.2:28848/org.apache.dubbo.registry.RegistryService?application=ruoyi-system&dubbo=2.0.2&executor-management-mode=isolation&file-cache=true&group=DUBBO_GROUP_LKX&interface=org.apache.dubbo.registry.RegistryService&logger=slf4j&metadata-type=remote&namespace=dev&pid=8756&qos.enable=false&register=false&register-mode=instance&release=3.2.7&serialize.check.status=WARN], dubbo version: 3.2.7, current host: 192.168.1.110
  3681. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.registry.nacos.NacosRegistry - [DUBBO] Destroy registry:nacos://117.72.115.2:28848/org.apache.dubbo.registry.RegistryService?application=ruoyi-system&dubbo=2.0.2&executor-management-mode=isolation&file-cache=true&group=DUBBO_GROUP_LKX&interface=org.apache.dubbo.registry.RegistryService&logger=slf4j&metadata-type=remote&namespace=dev&pid=8756&qos.enable=false&register-mode=instance&release=3.2.7&serialize.check.status=WARN, dubbo version: 3.2.7, current host: 192.168.1.110
  3682. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
  3683. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
  3684. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
  3685. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
  3686. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
  3687. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
  3688. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
  3689. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
  3690. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3691. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3692. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
  3693. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
  3694. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3695. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3696. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
  3697. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown rpc client, set status to shutdown
  3698. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1ab8ad98[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3699. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784413991_114.246.237.154_20663
  3700. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client.grpc.GrpcClient - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f6ff374[Running, pool size = 3, active threads = 1, queued tasks = 0, completed tasks = 1420]
  3701. 2025-04-16 14:29:24 [nacos-grpc-client-executor-117.72.115.2-1389] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744784413991_114.246.237.154_20663]Ignore error event,isRunning:false,isAbandon=false
  3702. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@76348a4b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2270]
  3703. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [null] CredentialWatcher is stopped
  3704. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [null] CredentialService is freed
  3705. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
  3706. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
  3707. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
  3708. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
  3709. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
  3710. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
  3711. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
  3712. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
  3713. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
  3714. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3715. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3716. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
  3717. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
  3718. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3719. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3720. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
  3721. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown rpc client, set status to shutdown
  3722. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@b149ad2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3723. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784412692_114.246.237.154_11775
  3724. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client.grpc.GrpcClient - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@31094b6[Running, pool size = 16, active threads = 0, queued tasks = 0, completed tasks = 1455]
  3725. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2e758111[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2270]
  3726. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
  3727. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.t.m.DefaultExecutorRepository - [DUBBO] destroying application executor repository .., dubbo version: 3.2.7, current host: 192.168.1.110
  3728. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.d.DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.1](ruoyi-system) has stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3729. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - com.alibaba.nacos.client.config.impl.ClientWorker do shutdown begin
  3730. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - Trying to shutdown transport client com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient@77c9ba11
  3731. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - Trying to shutdown rpc client 2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0
  3732. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown rpc client, set status to shutdown
  3733. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6e299a8d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3734. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784411837_114.246.237.154_20165
  3735. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client.grpc.GrpcClient - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6bb70cf5[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 1685]
  3736. 2025-04-16 14:29:24 [nacos-grpc-client-executor-117.72.115.2-1410] WARN c.a.n.c.r.client.grpc.GrpcClient - [1744784411837_114.246.237.154_20165]Ignore error event,isRunning:false,isAbandon=false
  3737. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - Remove rpc client 2fc18e7a-8ff5-4cba-bd60-33ce2d6c4e18_config-0
  3738. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - Shutdown executor java.util.concurrent.ScheduledThreadPoolExecutor@51943aa0[Running, pool size = 8, active threads = 1, queued tasks = 1, completed tasks = 1367]
  3739. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.config.impl.ClientWorker - com.alibaba.nacos.client.config.impl.ClientWorker do shutdown stop
  3740. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.dubbo.rpc.model.FrameworkModel - [DUBBO] Destroying default framework model: Dubbo Framework[1], dubbo version: 3.2.7, current host: 192.168.1.110
  3741. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.dubbo.rpc.model.FrameworkModel - [DUBBO] Dubbo Framework[1] is destroying ..., dubbo version: 3.2.7, current host: 192.168.1.110
  3742. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.d.DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.0](DUBBO_INTERNAL_APPLICATION) is stopping., dubbo version: 3.2.7, current host: 192.168.1.110
  3743. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.0.0] is stopping., dubbo version: 3.2.7, current host: 192.168.1.110
  3744. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.deploy.DefaultModuleDeployer - [DUBBO] Dubbo Module[1.0.0] has stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3745. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.r.support.RegistryManager - [DUBBO] Close all registries [], dubbo version: 3.2.7, current host: 192.168.1.110
  3746. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.t.m.DefaultExecutorRepository - [DUBBO] destroying application executor repository .., dubbo version: 3.2.7, current host: 192.168.1.110
  3747. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.d.DefaultApplicationDeployer - [DUBBO] Dubbo Application[1.0](DUBBO_INTERNAL_APPLICATION) has stopped., dubbo version: 3.2.7, current host: 192.168.1.110
  3748. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.dubbo.rpc.model.FrameworkModel - [DUBBO] Dubbo Framework[1] is destroyed, dubbo version: 3.2.7, current host: 192.168.1.110
  3749. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.dubbo.rpc.model.FrameworkModel - [DUBBO] Reset global default framework from Dubbo Framework[1] to null, dubbo version: 3.2.7, current host: 192.168.1.110
  3750. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.r.GlobalResourcesRepository - [DUBBO] Destroying global resources ..., dubbo version: 3.2.7, current host: 192.168.1.110
  3751. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.r.GlobalResourcesRepository - [DUBBO] Dubbo is completely destroyed, dubbo version: 3.2.7, current host: 192.168.1.110
  3752. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.t.m.FrameworkExecutorRepository - [DUBBO] destroying framework executor repository .., dubbo version: 3.2.7, current host: 192.168.1.110
  3753. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.a.d.c.s.c.DubboSpringInitializer - [DUBBO] Unbind Dubbo Module[1.1.1] from spring container: org.springframework.beans.factory.support.DefaultListableBeanFactory@590765c4, dubbo version: 3.2.7, current host: 192.168.1.110
  3754. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.10.Final
  3755. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3756. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO o.d.common.core.config.AsyncConfig - ====关闭后台任务任务线程池====
  3757. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  3758. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - [DEREGISTER-SERVICE] dev deregistering service ruoyi-system with instance: Instance{instanceId='null', ip='192.168.1.110', port=9201, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
  3759. 2025-04-16 14:29:24 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO com.alibaba.nacos.client.naming - Redo instance operation UNREGISTER for DEFAULT_GROUP@@ruoyi-system
  3760. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  3761. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
  3762. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
  3763. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
  3764. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
  3765. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
  3766. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
  3767. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
  3768. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
  3769. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3770. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3771. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
  3772. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
  3773. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Start destroying NacosRestTemplate
  3774. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] WARN com.alibaba.nacos.client.naming - [NamingHttpClientManager] Destruction of the end
  3775. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
  3776. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown rpc client, set status to shutdown
  3777. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@232a7aaf[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  3778. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.alibaba.nacos.common.remote.client - Close current connection 1744784414557_114.246.237.154_12252
  3779. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client.grpc.GrpcClient - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@30089345[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1458]
  3780. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2fa9fde4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 2273]
  3781. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.alibaba.nacos.client.naming - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
  3782. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  3783. 2025-04-16 14:29:24 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown initiated...
  3784. 2025-04-16 14:29:25 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - master - Shutdown completed.
  3785. 2025-04-16 14:29:25 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - dynamic-datasource close the datasource named [master] success,
  3786. 2025-04-16 14:29:25 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye