Windows自身没有提供类似Linux cgroup的能力来限制进程或进程组的资源占用,进程CPU/IO/内存/网络等资源的控制只能由自己实现。目前已有第三方的实现,主要是限制进程CPU的占用,如文档 < 21 Best Ways to Limit the CPU Usage of a Process > 所描述的BES,Process Tamer等软件。自Windows 8及Server 2012开始Windows系统有提供以job为单位的CPU占用及内存上限设置,之前的版本则只能以进程或线程为单位进行限制。
进程CPU占用限制方案
即时轮询系统所有进程(线程)的CPU占用,当发现所设定进程有超标时强制暂停进程所有线程的执行,然后在适当的时机再恢复执行。其中所涉及技术点:
进程CPU占用查询 GetProcessTimes
BOOL GetProcessTimes(
[in] HANDLE hProcess,
[out] LPFILETIME lpCreationTime,
[out] LPFILETIME lpExitTime,
[out] LPFILETIME lpKernelTime,
[out] LPFILETIME lpUserTime
);
此函数可以获取进程从创建至当前的总运行时间及总的CPU时间,(KernelTime + UserTime) < 系统CPU数 * (当前时间 - CreationTime)
线程CPU占用查询 GetThreadTimes
BOOL GetThreadTimes(
[in] HANDLE hThread,
[out] LPFILETIME lpCreationTime,
[out] LPFILETIME lpExitTime,
[out] LPFILETIME lpKernelTime,
[out] LPFILETIME lpUserTime
);
QueryThreadCycleTime可以提供更精准的CPU时间数据,单位为CPU时钟周期
BOOL QueryThreadCycleTime(
[in] HANDLE ThreadHandle,
[out] PULONG64 CycleTime
);
线程暂停及恢复
Windows平台没有提供暂停整个进程的支持函数,只能以线程为单位来操作,即SuspendThread及ResumeThread:
DWORD SuspendThread(
[in] HANDLE hThread
);
DWORD ResumeThread(
[in] HANDLE hThread
);
CPU亲和性设置: SetProcessAffinityMask
BOOL SetProcessAffinityMask(
[in] HANDLE hProcess,
[in] DWORD_PTR dwProcessAffinityMask
);
此函数可以限定进程及其所有线程所能使用的CPU,故一定程序上亦限定了进程最大的系统CPU占用率。
DWORD_PTR SetThreadAffinityMask(
[in] HANDLE hThread,
[in] DWORD_PTR dwThreadAffinityMask
);
此函数可单独限制特定线程的CPU亲和性。
进程优先级设置: SetPriorityClass
优先级解决的是优先运行及退让CPU的问题,本质上并不能限定CPU占用,只是优先级高于当前任务的忙碌的时候,当前进程会主动退让CPU 线程优先级设置:SetThreadPriority
BOOL SetThreadPriority(
[in] HANDLE hThread,
[in] int nPriority
);
Job Objects
Windows系统提供了Job的概念用以管理多个进程,可以限制Job对象内所有进程及期线程的CPU核心占用、CPU占用及内存分配上限等,均通过SetInformationJobObject来实现,具体的CPU限制由JOBOBJECT_CPU_RATE_CONTROL_INFORMATION管理,内存限制则由JOBOBJECT_EXTENDED_LIMIT_INFORMATION来管理。
BOOL SetInformationJobObject(
[in] HANDLE hJob,
[in] JOBOBJECTINFOCLASS JobObjectInformationClass,
[in] LPVOID lpJobObjectInformation,
[in] DWORD cbJobObjectInformationLength
);
需要注意的是CPU占用设置只有Windows 8及Server 2012之后的版本有效。
CPU Sets
此部分只限定了CPU Affinity属性
实验验证
可以直接利用开源项目go-winjob验证,验证系统Windows 8 x64,go-winjob git repo: https://github.com/kolesnikovae/go-winjob
验证程序
#include <stdio.h>
#include <stdlib.h>
void main(int argc, char *argv[])
{
unsigned long total = 0, count = 0, i = 0;
while (1) {
if (malloc(1024)) {
total += 1024;
count++;
}
if (!(++i & 4095))
printf("alloc: %u size: %u bytes\n", count, total);
}
}
无限制
在无限制的情况下,此进程会占满一个CPU核心,commit内存总占用达2G

单一进程
在设定CPU上限16%及内存16M上限之后,结果如下:
examples/job_object.go按如下修改:
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithProcessMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
const defaultCommand = ".\\CPUStress.exe"
多进程(双进程)
将winjob.WithProcessMemoryLimit 改为 winjob.WithJobMemoryLimit,后者表示此job内所有进程要占用的总内存限制:
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithJobMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
验证结果如下:

winjob example代码:
// +build windows
package main
import (
"encoding/json"
"log"
"os"
"os/exec"
"os/signal"
"time"
"golang.org/x/sys/windows"
"github.com/kolesnikovae/go-winjob"
)
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithJobMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
const defaultCommand = ".\\CPUStress.exe"
const stressCommand = ".\\CPUStressX64.exe"
func main() {
job, err := winjob.Create("", limits...)
if err != nil {
log.Fatalf("Create: %v", err)
}
cmd := exec.Command(defaultCommand)
cmd.Stderr = os.Stderr
cmd.SysProcAttr = &windows.SysProcAttr{
CreationFlags: windows.CREATE_SUSPENDED,
}
if err := cmd.Start(); err != nil {
log.Fatalf("Start: %v", err)
}
stress := exec.Command(stressCommand)
stress.Stderr = os.Stderr
stress.SysProcAttr = &windows.SysProcAttr{
CreationFlags: windows.CREATE_SUSPENDED,
}
if err := stress.Start(); err != nil {
log.Fatalf("Start: %v", err)
}
s := make(chan os.Signal, 1)
signal.Notify(s, os.Interrupt)
c := make(chan winjob.Notification)
subscription, err := winjob.Notify(c, job)
if err != nil {
log.Fatalf("Notify: %v", err)
}
done := make(chan struct{})
go func() {
defer close(done)
ticker := time.NewTicker(time.Second * 5)
defer ticker.Stop()
var counters winjob.Counters
for {
select {
case <-s:
log.Println("Closing job object")
if err := job.Close(); err != nil {
log.Fatal(err)
}
log.Println("Closing subscription")
if err := subscription.Close(); err != nil {
log.Fatal(err)
}
return
case n, ok := <-c:
if ok {
log.Printf("Notification: %#v\n", n)
} else if err := subscription.Err(); err != nil {
log.Fatalf("Subscription: %v", err)
}
case <-ticker.C:
if err := job.QueryCounters(&counters); err != nil {
log.Fatalf("QueryCounters: %v", err)
}
b, err := json.MarshalIndent(counters, "", "\t")
if err != nil {
log.Fatal(err)
}
log.Printf("Counters: \n%s\n", b)
}
}
}()
if err := job.Assign(cmd.Process); err != nil {
log.Fatalf("Assign: %v", err)
}
if err := winjob.Resume(cmd); err != nil {
log.Fatalf("Resume: %v", err)
}
if err := job.Assign(stress.Process); err != nil {
log.Fatalf("Assign: %v", err)
}
if err := winjob.Resume(stress); err != nil {
log.Fatalf("Resume: %v", err)
}
if err := cmd.Wait(); err != nil {
log.Fatalf("Wait: %v", err)
}
if err := stress.Wait(); err != nil {
log.Fatalf("Wait: %v", err)
}
// Wait for a signal.
<-done
}
LU88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ https://lu88go.com
LU88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ Lu88
Flexible dining hours were important for us. We filtered for open dining models on assisted living .
Don’t underestimate the importance of documentation after a crash. Check out Motorcycle Accident Lawyer for more tips.
Chuyên mục Tác giả cung cấp thông tin về đội ngũ xây dựng nội dung trên website, giúp người dùng hiểu rõ nguồn gốc bài viết. Việc hiển thị minh bạch thông tin tác giả góp phần tăng độ tin cậy và uy tín cho toàn bộ hệ thống nội dung trên website. Tác Giả Hoàng Văn Sơn – Chuyên Gia Cá Cược Nhà Cái Lu88
Verify they won’t oversaturate to avoid carpet backing damage. I saw good protocols on st george carpet cleaning .
TA88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ Ta88
Первая задача врача — снять наиболее опасные и мучительные проявления: тошноту, головную боль, озноб, тремор, сухость во рту, сердцебиение, внутреннюю дрожь, тревогу, невозможность уснуть. Вторая задача — восстановить управляемость ситуации. Пациент и близкие должны понимать, что делать после завершения инфузии: как пить воду, как проветрить комнату, когда можно вставать, какие симптомы допустимы, а какие требуют немедленного повторного звонка. Именно такой формат делает помощь на дому полноценной медицинской услугой, а не разовой манипуляцией. Для многих семей это ещё и первая консультация, после которой становится ясно, нужен ли только вывод из запоя или уже требуется более широкий наркологический маршрут с участием психолога и последующим этапом восстановления.
Подробнее тут – [url=https://narkolog-na-dom-voronezh.ru/]вызов нарколога на дом в воронеже[/url]
Ask if they can sort items for recycling categories. My crew from junk removal services did it all.
Proving negligence in bus accidents requires expertise. See how a bus accident lawyer can build your case: Auto Accident Lawyer
TA88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ https://ta88pro.com
Tight hallway, narrow stairs—still, high-rise apartment movers South Ozone Park got my sofa out with no scuffs. South Ozone Park folks, they’re worth a call.
1win slotlar o‘ynash [url=1win5751.help]1win slotlar o‘ynash[/url]
TA88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ ta88pro.com
Deadbolt throw length matters more than I thought. car lockout service advised us and installed the right models.
TA88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ Link truy cập Ta88
SKY88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ https://sky88.mov
מתאים מאוד לנסיעות מרתונים של פגישות בעיר. קישור: מוניות ירושלים
This was quite enlightening. Check out https://www.google.com/maps/dir/Cypress+Pro+Wash,+16527+W+Blue+Hyacinth+Dr,+Cypress,+TX+77433,+United+States/563+Pelican+St,+Magnolia,+TX+77355,+USA/@30.0732834,-95.8475013,22135m/data=!3m2!1e3!4b1!4m13!4m12!1m5!1m1!1s0x8640d57f2c6ebeb5:0xe5d5feb05606dae8!2m2!1d-95.7477761!2d30.0148549!1m5!1m1!1s0x8646d6a1689e60dd:0x6e87aa2cbc265d3d!2m2!1d-95.7964433!2d30.1292139!5m1!1e3?entry=ttu&g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D for more.
GEM88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ https://gem88.plus
Нарколог на дом — это формат помощи, который особенно ценен в тот момент, когда человеку плохо уже сейчас, а поездка в клинику только усиливает риск. Домашний выезд позволяет быстро провести осмотр, оценить степень интоксикации, признаки обезвоживания, нагрузку на сердце, уровень тревоги, выраженность тремора и понять, можно ли безопасно помочь пациенту на месте. В наркологической клинике «Частный медик 24» такой формат строится не вокруг одной процедуры, а вокруг последовательного медицинского решения: врач приезжает, собирает анамнез, проводит консультация, определяет, какие вмешательства действительно необходимы, и только после этого подбирает домашний маршрут стабилизации. Это особенно важно при алкоголизма, когда близкие часто путают тяжёлое похмелье, абстинентный синдром и состояния, при которых уже нельзя терять время.
Получить дополнительные сведения – [url=https://narkolog-na-dom-voronezh-1.ru/]нарколог на дом анонимно в воронеже[/url]
TA88 là website nội dung được xây dựng xoay quanh nền tảng giải trí trực tuyến, với hệ thống bài viết hiển thị rõ ràng ngay từ trang chủ Link vào Ta88
Solid. I gather airbag module part numbers for reference, following a tip on Car Accident .
South Carolina traffic laws on right-of-way are central to proving fault at intersections. A refresher and case examples: Pedestrian Accident Attorney .
lucky jet o‘yin 1win [url=1win5751.help]lucky jet o‘yin 1win[/url]
I these days had a perfect experience with a local legal professional even as paying for my abode—they were professional and supportive all over the method! Learn more approximately them at commercial real estate lawyer Saratoga County !
This publish nails the significance of investigating the prosecution’s case. For thorough protection investigations, DWI attorney Glens Falls is necessary.
In-home care can work well with modifications. We found home safety checklists on respite care .
1win app yuklab olish Oʻzbekiston [url=https://1win5751.help]https://1win5751.help[/url]
pin-up ko‘zgusi [url=https://www.pinup41537.help]https://www.pinup41537.help[/url]
Finding a solid concert venue that actually books quality acts is harder than people think. When you do find one create an experience you remember. Great breakdown of what to look for! private event venue Saratoga Springs
Thanks for addressing caregiver burnout and how agencies can help. albuquerque home care
Great reminder that social media or texts can be used as evidence. For guidance, check Juvenile Defense Lawyer .
This article reminded me how important insurance is. For a Fresno-to-Fresno move, does Cheap movers Fresno offer valuation coverage options?
This publish covers the necessities for Windsor Ontario basements and moisture manipulate— Paul’s Basement Waterproofing Windsor .
Airport franchise vs. local branch policies can vary. What to ask before renting: Car Accident Lawyer .
I look for satisfaction guarantees. The provider I picked via junk removal stood behind their work.
Traffic around Roosevelt Field can slow things down; my movers planned an alternate route. I found them through local residential movers Hempstead and they were punctual.
For key duplication accuracy, mobile locksmith uses high-precision machines—no more jamming.
I used a Fort Worth moving company last month, and they made my relocation so much easier than I expected. Mover’s Fort Worth
Hi every one, here every person is sharing these kinds of familiarity, thus it’s nice to read this blog, and I used to visit this website every day.
вход lee bet
Music playlists from a senior’s youth can reduce agitation at home. in-home care mckinney
https://strendus-bet.com.mx/
Strendus es un sitio de apuestas mexicano operativo desde 2020 por New Ads, S.A. de C.V. sujeto a la regulacion de SEGOB, desarrollado particularmente para el mercado local y no en forma de una simple copia traducida de casinos europeos.
This was quite informative. For more, visit memory care .
Капельница от похмелья — это эффективный способ экстренной помощи, предназначенный для того, чтобы помочь организму быстро восстановиться после злоупотребления алкоголем. В наркологической клинике «Частный медик 24» в Самаре мы предоставляем услугу безопасной детоксикации и восстановления 24/7. Капельница помогает организму вывести токсины, восстановить водно-электролитный баланс и улучшить общее состояние пациента, не создавая дополнительных нагрузок на сердце, печень и почки.
Подробнее тут – [url=https://kapelnicza-ot-pokhmelya-samara-2.ru/]капельница от похмелья вызов на дом самара[/url]
Wonderful pointer to ask about staffing ratios. memory care gives understandings on caretaker schedule and credentials.
1win iosga qanday yuklab olish [url=http://1win5751.help/]http://1win5751.help/[/url]
Communication strategies like speaking slowly and using visual cues make such a difference. We found more conversation prompts and activity ideas at senior care .
A gradual transition made it easier. We mapped steps with resources from elderly care .
If you might have a lock emergency in Orlando, contact locksmith for instant support.