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
}
Thanks for breaking this down. It is easy to get complacent, but I always remind colleagues that the 21-day clock starts strictly on the date the notice is issued, not when it is actually received in the mail https:///A-DPN-starts-a-strict-21-day-clock-from-the-issue-date-You-must-quickly-35c389fd8d6080c18a01f27e0bb57a6e
Honestly, I really wanted to bring my cat to uni, but finding a landlord who doesn’t charge a huge fee is impossible. One place I looked at wanted an extra £200 pet deposit on top of the regular rent, which just isn’t realistic for a student budget cheapest dog breeds for students
As a frequent flyer, that stand-upright test is a total game changer for me in airport lounges. I am tired of my bag flopping over and spilling files everywhere when I am trying to grab a coffee https:///Forget-heavy-logos-focus-on-full-grain-leather-that-wears-beautifully-You-35c85e9c64ec80b0a2e7fe7b25295c27
I’m a freelance journalist and I’ve been testing Pindrop to verify some of the audio clips I receive. It’s wild how well it performs with even under five seconds of audio, but I still worry about the speed of these new AI models Check over here
This was very beneficial. For more, visit divorce mediators .
The most useful section of shopping for in a progression is layout alternatives—browse modern-day preferences by the use of Housing Development Homes for sale .
The builders did a astonishing process balancing open-plan living with comfy nooks. Check properties for sale: Duck River Estates
This development sounds like a mind-blowing choice for first-time purchasers. Curious about financing alternate options. Housing Development Homes for sale
Quality construction and clear disclosures help buyers feel confident when touring new housing communities. Camelot Village
I’ve been dealing with that annoying “crawled – currently not indexed” status for months now. While third-party indexers can speed things up, I usually find that the standard GSC URL Inspection request is still my go-to for sanity google indexing speed
For anyone new to Rancho Bernardo and looking for youth sports, I suggest checking out the gymnastics offerings at san diego gymnastics rancho bernardo in San Diego.
Very informative reviewed calibration standards and conformity in California. For trusted calibration partners, see calibration company california .
В этой статье рассматриваются актуальные вопросы, связанные с развитием медицинской науки и её внедрением в повседневную практику. Особое внимание уделено вопросам профилактики, ранней диагностики и использованию технологий для улучшения здоровья человека.
Ознакомиться с полной информацией – [url=https://detki-detishki.ru/vliyanie-semejnogo-krizisa-na-psihiku-rebenka.html]лечение наркомании в нижнем новгороде[/url]
В этом исследовании рассмотрены методы лечения зависимостей и их эффективность. Мы проанализируем различные подходы, используемые в реабилитационных центрах, и представим данные о результативности программ. Читатели получат надежные и научно обоснованные сведения о данной проблеме.
Открыть полностью – [url=https://ubirayvolos.ru/sovety/kak-alkogol-i-toksiny-vliyayut-na-sostoyanie-kozhi.html]наркология в нижнем новгороде[/url]
Great tips on keeping sinks clear! If anyone needs professional help in the area, check out clogged drain repair alexandria for reliable drain cleaning in Alexandria.
mostbet oldal lassú [url=https://www.mostbet2024.help]https://www.mostbet2024.help[/url]
pin-up mobil ilova [url=https://pinup27096.help/]pin-up mobil ilova[/url]
mostbet cashback mikor [url=https://www.mostbet2024.help]https://www.mostbet2024.help[/url]
It’s perfect time to make some plans for the long run and it’s time to be happy.
I’ve learn this submit and if I may just I desire to counsel you some interesting issues or suggestions.
Perhaps you could write next articles regarding this article.
I wish to learn even more issues about it!
Ставка на любовь – 2 сезон. Любовь, страсть и неожиданные повороты возвращаются! Новые герои, жаркие свидания и судьбоносные решения – кто рискнёт всем ради чувств? Драматичные признания, сложный выбор и финал, от которого захватывает дух. Не пропусти ни одной серии – включай прямо сейчас: 2 сезон Ставка на любовь
Stopped by for a casual meal and enjoyed the overall atmosphere and flavors offered. latin food Spring TX
Your explanation of skill progression is helpful. At gyminny kids carlsbad in Carlsbad, gymnastics skills are introduced step by step for kids.
mostbet ilova [url=mostbet61870.help]mostbet61870.help[/url]
Thanks for explaining restricted items. I verify disposal rules with the provider I find on dumpster rental services near me .
aviator account banned [url=http://aviator84217.help]aviator account banned[/url]
I switched to slow-release fertilizer after consulting a pro on landscaping services Philadelphia Philadelphia, PA and it’s been great.
Thanks for the useful post. More like this at alquiler íntegro casa rural Segovia .
Thanks for the useful suggestions. Discover more at reclamaciones laborales Vigo .
mostbet зеркало Киргизия [url=mostbet64830.help]mostbet64830.help[/url]
Your explanation of “stigma damage” makes a lot of sense. I’m going to see if loss of use claim car accident California can quantify that and help with my diminished value claim in California.
I see this $9 billion shift firsthand in my production work. We now focus heavily on post-event content to keep the conversation alive long after the final session ends Website link
Seasonal cleanups are smoother with a small dumpster— 20 yard roll off dumpster Scottsdale shows options fast.
Your photos show clean sectioning. I picked up parting strategies on best Richardson barbershop .
קיבלנו אסטרטגיית SEO מדויקת יחד עם ניהול גוגל ביזנס – קניית קישורים .
It is true that breeds like French Bulldogs come with a hefty price tag. Regardless of the breed, I always suggest getting lifetime insurance cover from the very start bulldog respiratory surgery price uk
I’m looking at my renewal for my five-year-old labrador next month, so this article is quite timely. I’ve always used Petplan but am tempted by others that offer 24/7 video vet access Visit this site
Thanks for the breakdown. It’s a stressful situation for any director, especially when the 21-day clock starts ticking the moment the notice is issued https://nova-wiki.win/index.php/How_to_Explain_Lockdown_vs_Non-Lockdown_DPNs_to_a_Panicking_Director
This $9 billion projection really highlights the shift we see on the ground. As a production lead, I find that repurposing session recordings into bite-sized clips drives way more engagement than just keeping the full archive online https://privatebin.net/?0fb9565b543c5588#6jAVJBTZ9WkELoehJn5DeYrFfwNjzGorTpUkXXTpV14C
We like that gyminny kids 4s ranch offers progression paths from beginner to advanced, which is perfect for long-term training in Rancho Bernardo, San Diego.
As someone who lives in airport lounges, the stand-upright test is the most underrated feature for a daily briefcase. There is nothing more frustrating than having a bag tip over while I am trying to grab my passport at the gate https://front-wiki.win/index.php/Do_Metal_Feet_on_a_Briefcase_Really_Protect_It%3F_A_Merchandiser%E2%80%99s_Deep_Dive
Honestly, having a cat in my second-year flat was a total lifesaver, but the costs added up way faster than I expected. That £250 pet deposit upfront was definitely a huge hurdle when I was already struggling with rent https://star-wiki.win/index.php/The_Real_Cost_of_a_Rescue_Cat:_Why_%C2%A385_Isn%27t_the_Whole_Story
As a journalist constantly dealing with audio verification, I found this piece really eye-opening. I recently used Reality Defender to test a suspicious clip, and it flagged it instantly in under 3 seconds https://star-wiki.win/index.php/The_Reality_of_Deepfake_Detection:_Format_Support_and_Forensic_Truths
мостбет ios Кыргызстан [url=http://mostbet45631.help]мостбет ios Кыргызстан[/url]
mostbet játék pénz nélkül [url=https://mostbet2024.help]mostbet játék pénz nélkül[/url]
It is honestly eye-opening to see the true cost of these breeds. I have a French Bulldog, and taking out comprehensive insurance early was the smartest decision I made price of dog cancer treatment uk
мостбет банковская карта [url=http://mostbet45631.help/]http://mostbet45631.help/[/url]
игра aviator мелбет [url=https://www.melbet15928.help]https://www.melbet15928.help[/url]
I’ve been testing these tools lately to deal with the persistent ‘crawled – currently not indexed’ status. Using GSC URL Inspection to manually request indexing is my go-to, but it’s incredibly tedious for larger sites https://wiki-club.win/index.php/Best_Indexing_Method_for_Time-Sensitive_Tier_1_Content:_A_Technical_Guide
I’ve seen a few directors get caught out by these, and it’s usually because they don’t monitor the address they have registered with ASIC. The 21-day clock starts ticking the moment the notice is issued, not when you eventually open the mail voluntary administration dpn
My renewal is coming up for my eight-year-old spaniel, so this breakdown is really timely. I have been looking at ManyPets specifically for their 24/7 video vet feature as that would save me so many trips to the surgery https://pastelink.net/mr9ck0x7