当有多个单线程进程和一些多线程进程,都是 CPU 密集型的,它们之间如何分配时间(假设所有进程都具有相同的优先级)?
例如,在 48 核机器上,我有 48 个单线程进程和一个有 48 个线程的进程。所有线程都已准备好使用 CPU。我的预期是 48 个单线程进程将获得 1/2 的可用 CPU,而 48 个线程将获得另外 1/2 的 CPU,即每个线程(无论是来自单线程进程还是来自多线程进程)都将获得相等的 CPU 时间。
但看起来时间首先在进程之间分配,每个进程获得 1/49 的 CPU,然后这部分时间在进程中的线程之间分配。结果,多线程进程中的线程仅获得单线程进程中线程的 1/48 时间。
问题:1) 调度程序如何工作?2) 是否可以强制调度程序为每个线程提供相同的时间,而不管该线程来自哪个进程?
答案1
我测试了你的观察结果,至少在最近的内核上它是错误的。我写了这个代码。
#define _GNU_SOURCE
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>
#include <err.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <sys/resource.h>
#define TIMEOUT 4
void print_usage(
char *type)
{
struct rusage use;
getrusage(RUSAGE_THREAD, &use);
float total_time = 0;
long total_sw = 0;
total_time += use.ru_utime.tv_sec + ((float)use.ru_utime.tv_usec / 1000000);
total_time += use.ru_stime.tv_sec + ((float)use.ru_stime.tv_usec / 1000000);
total_sw = use.ru_nvcsw + use.ru_nivcsw;
printf("Type: %s, CPU Time: %.3f seconds, Total context switches: %d\n",
type, total_time, total_sw);
return;
}
struct worksync {
pthread_spinlock_t spin;
};
void * spinner_thread(
void *data)
{
struct worksync *sync = (struct worksync *)data;
pthread_spin_lock(&sync->spin);
print_usage("Thread");
pthread_spin_unlock(&sync->spin);
pthread_exit(0);
}
void spawn_threaded_worker(
int ncpu,
int timeout)
{
pid_t pid;
pid = fork();
if (pid < 0)
err(EXIT_FAILURE, "fork failed");
if (pid == 0) {
/* allocate and initialize structures */
pthread_t *threads = alloca(sizeof(pthread_t) * ncpu);
struct worksync sync;
int i;
pthread_spin_init(&sync.spin, PTHREAD_PROCESS_PRIVATE);
assert(threads);
for (i=0; i < ncpu; i++) {
pthread_create(&threads[i], NULL, spinner_thread, (void *)&sync);
}
pthread_spin_lock(&sync.spin);
sleep(timeout);
pthread_spin_unlock(&sync.spin);
for (i=0; i < ncpu; i++)
pthread_join(threads[i], NULL);
exit(0);
}
}
void spinner_process(
struct worksync *sync)
{
pthread_spin_lock(&sync->spin);
print_usage("Process");
pthread_spin_unlock(&sync->spin);
exit(0);
}
void spawn_forked_worker(
int ncpu,
int timeout)
{
int i;
int status;
pid_t pid;
pid = fork();
if (pid < 0)
err(EXIT_FAILURE, "fork failed");
if (pid == 0) {
pid_t *pids = alloca(sizeof(pid_t) * ncpu);
struct worksync *sync = mmap(NULL, sizeof(struct worksync),
PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_SHARED, -1, 0);
assert(sync != MAP_FAILED);
pthread_spin_init(&sync->spin, PTHREAD_PROCESS_SHARED);
pthread_spin_lock(&sync->spin);
for (i=0; i < ncpu; i++) {
pids[i] = fork();
if (pids[i] < 0)
abort();
if (pids[i] == 0)
spinner_process(sync);
}
sleep(timeout);
pthread_spin_unlock(&sync->spin);
for (i=0; i < ncpu; i++)
wait(&status);
exit(0);
}
}
int main(
void)
{
int ncpu;
int status;
ncpu = sysconf(_SC_NPROCESSORS_ONLN);
assert(ncpu > 0);
printf("Running %d threads and %d processes for %d seconds\n", ncpu, ncpu, TIMEOUT);
spawn_threaded_worker(ncpu, TIMEOUT);
spawn_forked_worker(ncpu, TIMEOUT);
wait(&status);
wait(&status);
exit(0);
}
它测量在线程模型和分叉模型中执行 CPU 密集型工作(在自旋锁中旋转)所花费的 CPU 时间,同时使用所有系统 CPU。然后报告 CPU 统计信息。
我的结果显示在 4 CPU 盒子上:
自动分组已禁用
$ ./schedtest
Running 4 threads and 4 processes for 4 seconds
Type: Thread, CPU Time: 1.754 seconds, Total context switches: 213
Type: Thread, CPU Time: 1.758 seconds, Total context switches: 208
Type: Thread, CPU Time: 1.755 seconds, Total context switches: 217
Type: Process, CPU Time: 1.768 seconds, Total context switches: 251
Type: Process, CPU Time: 1.759 seconds, Total context switches: 209
Type: Thread, CPU Time: 1.772 seconds, Total context switches: 258
Type: Process, CPU Time: 1.752 seconds, Total context switches: 215
Type: Process, CPU Time: 1.756 seconds, Total context switches: 225
启用自动分组功能
$ ./schedtest
Running 4 threads and 4 processes for 4 seconds
Type: Thread, CPU Time: 0.495 seconds, Total context switches: 167
Type: Thread, CPU Time: 0.496 seconds, Total context switches: 167
Type: Thread, CPU Time: 0.430 seconds, Total context switches: 145
Type: Process, CPU Time: 0.430 seconds, Total context switches: 148
Type: Process, CPU Time: 0.440 seconds, Total context switches: 149
Type: Process, CPU Time: 0.440 seconds, Total context switches: 150
Type: Thread, CPU Time: 0.457 seconds, Total context switches: 153
Type: Process, CPU Time: 0.430 seconds, Total context switches: 144
您可以清楚地看到,内核没有区分线程和进程。
我不知道你在做什么,但无论它是什么,它都不符合 Linux 的工作方式,至少对我来说是这样。