We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bcs-k8s-watch在处理所有资源的事件更新时需要上报给bcs-storage。因为需要保证上报的顺序,所以是串行调用的,会把不同资源的上报事件放在不同的队列当中。 因为k8s集群中node的更新事件相当频繁,node每10秒就会上报自己的新的状态,在集群规模很大时,node的更新事件线性增长,bcs-k8s-watch在调用bcs-storage时处理不过来,导致node资源的队列堆积,使得事件更新有很大的延迟。
The text was updated successfully, but these errors were encountered:
fix: filter k8s node update event to avoid bcs-k8s-watch queue stuck.…
b0be599
… issue TencentBlueKing#220
fix: add comments. issue TencentBlueKing#220
b8cb211
DeveloperJim
No branches or pull requests
bcs-k8s-watch在处理所有资源的事件更新时需要上报给bcs-storage。因为需要保证上报的顺序,所以是串行调用的,会把不同资源的上报事件放在不同的队列当中。
因为k8s集群中node的更新事件相当频繁,node每10秒就会上报自己的新的状态,在集群规模很大时,node的更新事件线性增长,bcs-k8s-watch在调用bcs-storage时处理不过来,导致node资源的队列堆积,使得事件更新有很大的延迟。
The text was updated successfully, but these errors were encountered: