gpt4 book ai didi

kubernetes - 即使端点正在工作,k8s 准备和活跃度探测也会失败

转载 作者:行者123 更新时间:2023-12-04 01:01:59 25 4
gpt4 key购买 nike

我有一个 Next.js 应用程序,它有 2 个简单的 readinessliveness具有以下实现的端点:

return res.status(200).send('OK');
我已经按照 the api routes docs 创建了端点.另外,我有一个 /stats basePath 依据 the docs here .因此,探针端点位于 /stats/api/readiness/stats/api/liveness .
当我在本地的 Docker 容器中构建和运行应用程序时 - 可以访问探针端点并返回 200 OK。
但是,当我将应用程序部署到我的 k8s 集群时,探测失败。有很多 initialDelaySeconds时间,所以这不是原因。
我连接到 service pods 通过 port-forward当 pod 刚刚启动时,在它失败之前,我可以到达端点并返回 200 OK。在它开始像往常一样失败后不久。
我还尝试通过健康的 pod 访问失败的 pod:
k exec -t [healthy pod name] -- curl -l 10.133.2.35:8080/stats/api/readiness
同样的情况 - 一开始,虽然 pod 还没有失败,但我在 curl 命令上得到 200 OK。过了一会儿,它开始失败。
我得到的探针上的错误是:
Readiness probe failed: Get http://10.133.2.35:8080/stats/api/readiness: net/http: request canceled (Client.Timeout exceeded while awaiting headers)
有趣的实验 - 我尝试为探针设置一个随机的、不存在的端点,但我得到了同样的错误。这让我想到探测失败是因为它无法访问正确的端点?
但话又说回来,在探测开始失败之前的一段时间内可以访问端点。所以,我真的不知道为什么会发生这种情况。
这是我的探针的 k8s 部署配置:
      livenessProbe:
httpGet:
path: /stats/api/liveness
port: 8080
scheme: HTTP
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 3
successThreshold: 1
failureThreshold: 5
readinessProbe:
httpGet:
path: /stats/api/readiness
port: 8080
scheme: HTTP
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 3
successThreshold: 1
failureThreshold: 3
更新
二手 curl -v根据评论的要求。结果是:
*   Trying 10.133.0.12:8080...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Connected to 10.133.0.12 (10.133.0.12) port 8080 (#0)
> GET /stats/api/healthz HTTP/1.1
> Host: 10.133.0.12:8080
> User-Agent: curl/7.76.1
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< ETag: "2-nOO9QiTIwXgNtWtBJezz8kv3SLc"
< Content-Length: 2
< Date: Wed, 16 Jun 2021 18:42:23 GMT
< Connection: keep-alive
< Keep-Alive: timeout=5
<
{ [2 bytes data]
100 2 100 2 0 0 666 0 --:--:-- --:--:-- --:--:-- 666
* Connection #0 to host 10.133.0.12 left intact
OK%
然后,当然,一旦它开始失败,结果是:
*   Trying 10.133.0.12:8080...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* connect to 10.133.0.12 port 8080 failed: Connection refused
* Failed to connect to 10.133.0.12 port 8080: Connection refused
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
* Closing connection 0
curl: (7) Failed to connect to 10.133.0.12 port 8080: Connection refused
command terminated with exit code 7

最佳答案

错误告诉你:Client.Timeout exceeded while awaiting headers .这意味着 TCP 连接已建立(未拒绝,也未超时)。
您的活跃度/就绪度探测超时时间太短。您的应用程序没有足够的时间来响应。
可能是由于 CPU 或内存分配比使用笔记本电脑时小,由于更高的并发性,可能是 LimitRange 设置了一些默认值,而您没有。
检查:

time kubectl exec -t [healthy pod name] -- curl -l 127.0.0.1:8080/stats/api/readiness
如果您无法分配更多 CPU,请将时间加倍,四舍五入,然后修复您的探针:
  livenessProbe:
...
timeoutSeconds: 10

readinessProbe:
...
timeoutSeconds: 10
或者,虽然精神上可能不那么好,但您可以用 tcpSocket 检查替换那些 httpGet 检查。它们会更快,但可能会错过实际问题。

关于kubernetes - 即使端点正在工作,k8s 准备和活跃度探测也会失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68007937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com