当前位置:网站首页>[event center azure event hub] interpretation of error information found in event hub logs
[event center azure event hub] interpretation of error information found in event hub logs
2020-11-06 01:17:00 【itread01】
Problem description
Use Event Hub Consumption Events , The interpretation of various client errors .( In the later stage, we encounter new wrong information , This description will continue to be added )
One : Again Linux In the implementation of Event Hub Consumer side programs , Come on Too many open files
Reading : This information refers to java The number of operating system file control codes opened by the program exceeds the operating system limit , Check whether the file control code limit of the operating system is preset 1024, If it is , Please change to unlimited .
Use ulimit -a perhaps ulimit -n View control code number open files (-n) 1024
Configuration file /etc/security/limits.conf
Add... To the configuration file
* soft nofile 65535 * hard nofile 65535
Two :New receiver 'nil' with higher epoch of '197' is created hence current receiver 'nil' with epoch '196' is getting disconnected
| Error message : java.util.concurrent.CompletionException: com.microsoft.azure.eventhubs.ReceiverDisconnectedException: New receiver 'nil' with higher epoch of '197' is created hence current receiver 'nil' with epoch '196' is getting disconnected. If you are recreating the receiver, make sure a higher epoch is used. TrackingId:xxxxxxxxxxxxxxx, SystemTracker:xxxxxxx:eventhub:xxxxxxx|$default, Timestamp:2020-10-20T15:50:16, errorContext[NS: xxxxxxxxx.servicebus.chinacloudapi.cn, PATH: xxxxxxxxx/ConsumerGroups/$Default/Partitions/3, REFERENCE_ID: xxxxxxxxxx, PREFETCH_COUNT: 300, LINK_CREDIT: 300, PREFETCH_Q_LEN: 0] java.util.concurrent.ExecutionException: com.microsoft.azure.eventprocessorhost.ExceptionWithAction: java.lang.RuntimeException: Lease lost while updating checkpoint |
Reading : The consumer program creates a separate consumption thread for each message segmentation slot , The consumption thread has a one-to-one relationship with the slot , When there is an extra consumer program to consume the same eventhub When , And store checkpoint In the same place , It will happen partition The redistribution of , perhaps , When one of the consumption threads goes wrong , The client will try to recover and take over all the slots of the failed thread . Usually, the error can be ignored .
3、 ... and :com.microsoft.azure.eventprocessorhost.ExceptionWithAction:The client could not finish the operation within specified maximum execution timeout.
Reading : After the client program is consumed , Will consume offset Deposit in Storage When , Network timeout occurred , It is recommended that you check the client network .
Four :com.microsoft.azure.eventhubs.EventHubException: The specified partition is invalid for an EventHub partition sender or receiver. It should be between 0 and 1.
Reading : The client program is consuming eventhub Information time , Wrong slot information specified .
5、 ... and :com.microsoft.azure.eventhubs.EventHubException: The supplied offset '0' is invalid. The last offset in the system is '-1'
Reading : The client is consuming eventhub Information time , Submitted the wrong offset value , You can't set the initial value to 0.
&n
版权声明
本文为[itread01]所创,转载请带上原文链接,感谢
边栏推荐
- “颜值经济”的野望:华熙生物净利率六连降,收购案遭上交所问询
- Listening to silent words: hand in hand teaching you sign language recognition with modelarts
- Want to do read-write separation, give you some small experience
- Save the file directly to Google drive and download it back ten times faster
- 遞迴思想的巧妙理解
- 【效能優化】納尼?記憶體又溢位了?!是時候總結一波了!!
- Filecoin主网上线以来Filecoin矿机扇区密封到底是什么意思
- Wiremock: a powerful tool for API testing
- Aprelu: cross border application, adaptive relu | IEEE tie 2020 for machine fault detection
- Vuejs development specification
猜你喜欢
随机推荐
Group count - word length
Wiremock: a powerful tool for API testing
H5 makes its own video player (JS Part 2)
嘘!异步事件这样用真的好么?
采购供应商系统是什么?采购供应商管理平台解决方案
Chainlink将美国选举结果带入区块链 - Everipedia
《Google軟體測試之道》 第一章google軟體測試介紹
多机器人行情共享解决方案
网络安全工程师演示:原来***是这样获取你的计算机管理员权限的!【维持】
Use of vuepress
This article will introduce you to jest unit test
简直骚操作,ThreadLocal还能当缓存用
DevOps是什么
Don't go! Here is a note: picture and text to explain AQS, let's have a look at the source code of AQS (long text)
TRON智能钱包PHP开发包【零TRX归集】
GDB除錯基礎使用方法
Analysis of react high order components
C++和C++程序员快要被市场淘汰了
你的财务报告该换个高级的套路了——财务分析驾驶舱
High availability cluster deployment of jumpserver: (6) deployment of SSH agent module Koko and implementation of system service management




