我们正在评估Argo工作流性能,并试图对其进行基准测试。当然,Argo所涉及的组件数量少于气流的数量,然而,我们想了解各种潜在的瓶颈时运行规模。
以下是Argo工作流的工作流控制器度量(localhost:9090/https://argoproj.github.io/argo-workflows/metrics/),以寻求对这些指标的解释。
# HELP argo_workflows_queue_adds_count Adds to the queue
# TYPE argo_workflows_queue_adds_count counter
argo_workflows_queue_adds_count{queue_name="cron_wf_queue"} 0
argo_workflows_queue_adds_count{queue_name="pod_queue"} 119
argo_workflows_queue_adds_count{queue_name="wf_cron_queue"} 0
argo_workflows_queue_adds_count{queue_name="workflow_queue"} 91
argo_workflows_queue_adds_count{queue_name="workflow_ttl_queue"} 02)以下指标意味着什么?这里的"le“是什么?
# HELP argo_workflows_queue_latency Time objects spend waiting in the queue
# TYPE argo_workflows_queue_latency histogram
argo_workflows_queue_latency_bucket{queue_name="cron_wf_queue",le="1"} 0
argo_workflows_queue_latency_bucket{queue_name="cron_wf_queue",le="5"} 0
argo_workflows_queue_latency_bucket{queue_name="cron_wf_queue",le="20"} 03)这两组队列是什么?一组用于工作流控制器,另一组用于Argo服务器?如果是,每个队列在做什么?

https://stackoverflow.com/questions/70664347
复制相似问题