繁体   English   中英

如果在python multiprocessing.cpu_count()中返回64,我是否可以从gcloud计算引擎的96个vCPU中受益?

[英]Do I benefit from the 96 vCPUs of a gcloud Compute Engine if in python multiprocessing.cpu_count() returns 64?

我在Google Compute Engine上运行python并行CPU密集型任务。 因此,我可以运行它的vCPU数量越多,速度就越快。

我已经读过创建一个大小超过可用vCPU数量的多处理池没有意义,这是有意义的,所以我使用multiprocessing.cpu_count()确定multiprocessing.dummy.Pool池的大小。

我使用gcloud Kubernetes Engine在Pod中运行此脚本,并在开发期间在少于96个vCPU的计算机上进行测试。 自动确定的池大小似乎总是与vCPU的数量相匹配。 但是,在具有96个vCPU的计算机上运行它, multiprocessing.cpu_count()返回64而不是96.我不在乎手动将该大小设置为96但问题是,如果python不是,我将从这些额外的32个vCPU中受益“意识到”他们?

该机器是运行容器优化OS(cos)的n1-highcpu-96(96个vCPU,86.4 GB内存)。 Python版本是3.6.3。

在留言板上有一个答案,有人在问题的评论中链接,但是,在这个页面上得到答案似乎更好,以及一些解释。

简短的回答:在pod中运行grep -c ^processor /proc/cpuinfo - 这个数字应该与multiprocessing.cpu_count() 如果是,则可以信任multiprocessing.cpu_count()

但是,AFAICT会识别节点上的所有核心,并完全忽略Kubernetes部署YAML中设置的资源限制。 例如,您的部署文件可能包含:

spec:
  containers:
  - image: IMAGENAME
    name: LABEL
    ports:
    - containerPort: 5000
    resources:
      limits:
        cpu: 100m
        memory: 400M
      requests:
        cpu: 50m
        memory: 200M

本文中 ,作者给出了以下功能,它尊重资源限制 (而不是请求):

import math
from pathlib import Path


def get_cpu_quota_within_docker():
    cpu_cores = None

    cfs_period = Path("/sys/fs/cgroup/cpu/cpu.cfs_period_us")
    cfs_quota = Path("/sys/fs/cgroup/cpu/cpu.cfs_quota_us")

    if cfs_period.exists() and cfs_quota.exists():
        # we are in a linux container with cpu quotas!
        with cfs_period.open('rb') as p, cfs_quota.open('rb') as q:
            p, q = int(p.read()), int(q.read())

            # get the cores allocated by dividing the quota
            # in microseconds by the period in microseconds
            cpu_cores = math.ceil(q / p) if q > 0 and p > 0 else None

    return cpu_cores

因此,对于示例YAML,除法产生0.1 ,但是对ceil的调用的b / c,它返回1.0 所以你可能正在寻找的是类似下面的东西(假设你定义了上面定义的函数get_cpu_quota_within_docker ):

import multiprocessing

from somewhere import get_cpu_quota_within_docker

docker_cpus = get_cpu_quota_within_docker()
cpu_count = docker_cpus if docker_cpus else multiprocessing.cpu_count()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM