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
}
Strategic purchase of energy-efficient devices can increase compliance and lower total project expenses. Henson Architecture New York
В статье представлены ключевые моменты по актуальной теме, дополненные советами экспертов и ссылками на дополнительные ресурсы. Цель материала — дать читателю инструменты для самостоятельного развития и принятия осознанных решений.
Узнать больше – [url=https://newbabe.ru/zdorove/kak-bystro-vosstanovit-sily-pri-intoksikacii.html]прокапать от алкоголя на дому воронеж[/url]
I didn’t realize how much a Truck Accident Attorney could assist with my insurance claims until I was in an accident myself.
The supervisor at A Auto Express became fairly knowledgeable and did now not try to promote me the rest I did not desire. He gave me a directly solution about what required prompt cognizance and what should wait. Refreshing honesty. Auto Repair Raytown
Don’t ignore title insurance during the course of your home investment; it can conserve you notable trouble eventually! Check out residential title insurance clifton park .
I’ve been works in event planning, production value separates the amateurs from the pros. Great entertainment venues focus on the full sensory experience. Solid insights here! live music venue Saratoga Springs
Этот обзор посвящен успешным стратегиям избавления от зависимости, включая реальные примеры и советы. Мы разоблачим мифы и предоставим читателям достоверную информацию о различных подходах. Получите опыт многообразия методов и найдите подходящий способ для себя!
Познакомиться с результатами исследований – [url=https://perm-pb.ru/ekstrennaya-detoksikaciya-i-zaschita-psihiki/]нарколог частный[/url]
В этой статье мы рассматриваем разные способы борьбы с алкогольной зависимостью. Обсуждаются методы лечения, программы реабилитации и советы для поддержки близких. Читатели получат информацию о том, как преодолеть зависимость и добиться успешного выздоровления.
Слушай внимательно — тут важно – [url=https://autisminfo.ru/news/7177-alkogol-kak-lozhnyj-sposob-snyatiya-stressa-riski-dlya-psihiki-i-semi]вызов нарколога на дом цена[/url]
Hello there! This is my 1st comment here so I just wanted to give a quick shout out and say I genuinely enjoy reading your posts.
Can you recommend any other blogs/websites/forums that cover the same subjects?
Many thanks!
Этот интересный отчет представляет собой сборник полезных фактов, касающихся актуальных тем. Мы проанализируем данные, чтобы вы могли сделать обоснованные выводы. Читайте, чтобы узнать больше о последних трендах и значимых событиях!
Уточнить детали – [url=https://chistotainfo.ru/zapah/dom/kak-vosstanovitsya-posle-alkogolya]капельница от похмелья анонимно[/url]
This article is helpful for people comparing Rehabilitation Centre in Noida. Rehabilitation Centre in Noida
I booked a virtual session with Tali Kogan last fall, and the experience changed how I show up on camera. I run an online business and most of what I owned belonged to my corporate chapter style coach chicago
California laboratories count on specific calibration for quality control. This message captures the essentials. Look into calibration company california for even more details.
Exceptional service each time with The Master’s Lawn & Pest! They’re undoubtedly the most effective lawn care in St Augustine. Their techs in fact detect soil and lawn problems, not simply spray and pray, and their customer service is rapid and friendly lawn care
Вывод из запоя в стационаре в Санкт-Петербурге рассматривают в тех случаях, когда состояние больного требует не только разовой помощи, но и более длительного медицинского наблюдения. Такой формат выбирают при затяжном употреблении алкоголя, выраженной интоксикации, нестабильном давлении, нарушении сна, треморе, слабости, обезвоживании, тошноте, тревоге и общем ухудшении самочувствия. Дальнейшая тактика зависит от состояния больного на момент осмотра, длительности запоя, возраста, сопутствующих заболеваний и реакции организма на прекращение употребления алкоголя.
Углубиться в тему – [url=https://vyvod-iz-zapoya-v-staczionare-sankt-peterburg-19.ru/]вывод из запоя в стационаре анонимно санкт-петербург[/url]
Great information, bookmarked this. dui lawyer saratoga springs
If you are actually looking for reliable independent adjusters, BSA Claims stands out as the most ideal. Their method is actually straightforward and comprehensive. See BSA Claims Solutions for the hyperlink.
1win live dealer blackjack [url=http://1win5528.ru]http://1win5528.ru[/url]
1win customer care [url=https://1win42605.help/]https://1win42605.help/[/url]
Excel·lent per reformes i instal·lacions de seguretat. Info: serveis serraller Barcelona .
Outstanding service every time with The Master’s Lawn & Pest! They’re unquestionably the best landscapers in Gainesville. landscaping near me
lucky jet ставки sweet bonanza [url=http://sweet-bonanza27450.help]http://sweet-bonanza27450.help[/url]
I’m curious about the techniques used by Tacoma chiropractors. Does Chiropractor Tacoma WA have any resources on this?
My skin tone evened out well in 4 sessions, similar to the evaluation; image results posted to indoor tanning Ontario Ohio .
Many people don’t realize how much a Kent personal injury attorney can help until the insurance company starts pushing low offers. Kent work injury lawyer
This blog post has opened my eyes to how much better I could feel with the right Northgate Chiropractor! Chiropractor in Northgate
I appreciate the tips on dealing with denied claims; resources like workers compensation lawyer can be a lifesaver.
melbet depunere prin terminal [url=http://melbet63149.help]melbet depunere prin terminal[/url]
Today was not an all-in day, it was an execution day: moderate entry, target exit.
Thanks for the great explanation. Find more at Hibernia Bar .
Consistent solution every single time with The Master’s Lawn & Pest! They’re definitely the most effective landscaping near me in St Augustine. landscaping
Very helpful read. For similar content, visit buena pensión en Arzúa .
Quality solution each time with The Master’s Lawn & Pest! They’re undoubtedly the very best lawn care in St Augustine. Their techs actually identify dirt and lawn issues, not just spray and pray, and their client service is rapid and pleasant lawn care st augustine
A skilled Auto Accident Attorney will not only represent you but also educate you about your rights and options moving forward.
I didn’t discover the amount of defenses possessed title insurance until I took a look at the details on title insurance clifton park ny !
Respuesta veloz y trabajo impecable, cerrajero en Barcelona 24 horas cerrajero
Having spent years works in event planning, production value determines whether guests come back. The best venues treat every show like it matters. This is a useful resource for event planners. entertainment venue Saratoga Springs NY
Quality solution whenever with Pure Energy Electrical Services! They’re most certainly the most effective electrician near me in St Augustine.
electrician st augustine
Very informative write-up, appreciate it!
personal stylist chicago
Solid learn; in the event you’re in Melbourne and desire a own coach, Personal Trainer is value a glance.
Helpful explanation of what to consider in Nasha Mukti Kendra in Noida. Nasha Mukti Kendra in Noida
I found this very interesting. Check out house window tinting for more.
Looking for specialist felony counsel on authentic property concerns? The Top Real Estate Attorneys in Clifton Park have got you coated! Visit them on line at real estate closing attorney capital region ny .
FABET được xây dựng như một nền tảng nội dung có cấu trúc rõ ràng với các chuyên mục tiêu biểu như casino, thể thao, đá gà và game bài, giúp người truy cập dễ dàng định vị và lựa chọn đúng nội dung mình quan tâm bbc
You shouldn’t face the aftermath of an auto accident alone; an Motorcycle Accident Attorney can make a huge difference.
How can chiropractic care contribute to overall wellness? Eager to learn more from chiropractor on this topic!
Always impressed by a place where kids learn rock ’n’ roll the right way.
They’re not just a music school .
The energy those kids have on stage is unreal.
If you’re a parent — go see what they’re doing up here performance based music school hudson valley
I suched as that the testimonial covered different bed degrees; my level 3 vs. degree 5 outcomes go to wellness center Mansfield .
Called Murrieta Valley Plumbing for a jogging rest room. Technician identified it in a timely fashion, defined the chances really, and fixed it for a reasonable fee. No needless upselling. Exactly what you would like. Plumber Murrieta
Hiring a car accident lawyer in Kent WA often leads to stronger evidence and better settlement negotiations. Kent work injury lawyer