docker - Kubernetes - 打开的文件太多

标签 docker kubernetes google-kubernetes-engine kubernetes-ingress kops

我正在尝试评估在 Pod 内运行的一台 Go 服务器的性能。但是,收到一条错误消息,指出打开的文件太多。有没有办法在 kubernetes 中设置 ulimit?

ubuntu@ip-10-0-1-217:~/ppu$ kubectl exec -it go-ppu-7b4b679bf5-44rf7 -- /bin/sh -c 'ulimit -a'
core file size (blocks)         (-c) unlimited
data seg size (kb)              (-d) unlimited
scheduling priority             (-e) 0
file size (blocks)              (-f) unlimited
pending signals                 (-i) 15473
max locked memory (kb)          (-l) 64
max memory size (kb)            (-m) unlimited
open files                      (-n) 1048576
POSIX message queues (bytes)    (-q) 819200
real-time priority              (-r) 0
stack size (kb)                 (-s) 8192
cpu time (seconds)              (-t) unlimited
max user processes              (-u) unlimited
virtual memory (kb)             (-v) unlimited
file locks                      (-x) unlimited

部署文件。

---
apiVersion: apps/v1
kind: Deployment                 # Type of Kubernetes resource
metadata:
  name: go-ppu           # Name of the Kubernetes resource
spec:
  replicas: 1                    # Number of pods to run at any given time  
  selector:
    matchLabels:
      app: go-ppu         # This deployment applies to any Pods matching the specified label
  template:                      # This deployment will create a set of pods using the configurations in this template
    metadata:
      labels:                    # The labels that will be applied to all of the pods in this deployment
        app: go-ppu  
    spec:                        # Spec for the container which will run in the Pod
      containers:
      - name: go-ppu 
        image: ppu_test:latest
        imagePullPolicy: Never
        ports:
          - containerPort: 8081  # Should match the port number that the Go application listens on
        livenessProbe:           # To check t$(minikube docker-env)he health of the Pod
          httpGet:
            path: /health
            port: 8081
            scheme: HTTP
          initialDelaySeconds: 35
          periodSeconds: 30
          timeoutSeconds: 20
        readinessProbe:          # To check if the Pod is ready to serve traffic or not
          httpGet:
            path: /readiness
            port: 8081
            scheme: HTTP
          initialDelaySeconds: 35
          timeoutSeconds: 20    

Pod 信息:

ubuntu@ip-10-0-1-217:~/ppu$ kubectl get pods
NAME                           READY   STATUS    RESTARTS   AGE
go-ppu-7b4b679bf5-44rf7        1/1     Running   0          18h

ubuntu@ip-10-0-1-217:~/ppu$ kubectl get services
NAME          TYPE           CLUSTER-IP      EXTERNAL-IP                                                               PORT(S)          AGE
kubernetes    ClusterIP      100.64.0.1      <none>                                                                    443/TCP          19h
ppu-service   LoadBalancer   100.64.171.12   74d35bb2a5f30ca13877-1351038893.us-east-1.elb.amazonaws.com   8081:32623/TCP   18h

当我使用 Locust 测试服务器的性能时,收到以下错误。

# fails Method  Name    Type
3472    POST    /supplyInkHistory   ConnectionError(MaxRetryError("HTTPConnectionPool(host='74d35bb2a5f30ca13877-1351038893.us-east-1.elb.amazonaws.com', port=8081): Max retries exceeded with url: /supplyInkHistory (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x....>: Failed to establish a new connection: [Errno 24] Too many open files',))",),)

最佳答案

请您看看https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ 但您需要启用一些功能才能使其正常工作。

  securityContext:
sysctls:
- name: fs.file-max
  value: "YOUR VALUE HERE"

关于docker - Kubernetes - 打开的文件太多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63700142/

相关文章:

docker - 在docker和master到tserver双向连接/循环链接问题中运行Kudu-docker composition

kubernetes - 没有在 Kubernetes worker 节点上提供任何配置

docker - 查找 `k8s.gcr.io/kubernetes-zookeeper:1.0-3.4.10` 的 Dockerfile 构建

google-kubernetes-engine - 大约 3 分钟的 GKE *集群* 启动时间正常吗?

c - 是否有可能以某种方式在 Docker 容器之间或容器与主机之间使用 POSIX 信号量?

asp.net - 如何将 Visual Studio for Mac 项目连接到 Azure Data Studio 数据库?

kubernetes - Bazel Kubernetes 对象错误 : no objects passed to apply (Google Container Registry)

kubernetes - 在Google Cloud Kubernetes中运行Traefik时,LoadBalancer Healthy失败

kubernetes - 如何通过 GKE 上的 Ingress-Nginx 正确配置 Kubernetes 仪表板

docker - "exec:\"scripts/script.sh\": stat scripts/script. sh: 没有那个文件或目录