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
}
Этот информационный материал подробно освещает проблему наркозависимости, ее причины и последствия. Мы предлагаем информацию о методах лечения, профилактики и поддерживающих программах. Цель статьи — повысить осведомленность и продвигать идеи о необходимости борьбы с зависимостями.
Желаете узнать подробности? – [url=https://school592.ru/the_articles/kak-uberech-podrostka-ot-zavisimostey-strategii-dlya-shkoly-i-semi.html]наркология 24/7 отзывы[/url]
This was quite informative. For more, visit air conditioning unit repair .
siti scommesse Risultato esatto (https://fr-betting.com/)
satispay
What i do not understood is in reality how you’re now not really a lot more well-preferred than you might be
now. You are very intelligent. You recognize therefore considerably in the case of this
topic, made me in my view imagine it from a lot of numerous angles.
Its like women and men are not interested unless it’s one thing to
do with Girl gaga! Your individual stuffs excellent.
At all times maintain it up!
לא עוד עמלות נסתרות – למדתי איפה לקצץ בעזרת שירותי יועץ משכנתאות פרטי .
Great article. It’s all the time a fine thought to ask approximately warranties, substances, and air flow while making plans roof paintings. roofer near me
It’s very easy to find out any matter on net as compared to
textbooks, as I found this article at this web site.
online live wetten
Here is my site Basketball-Wetten.Com
This is very insightful. Check out certified air conditioning repair for more.
Dormer sidewall flashing must step correctly behind siding. Diagram on roofing services .
קיבלתי ייעוץ מקצועי וסבלני, חסכו לי המון כסף במשכנתא – ממליץ בחום לבדוק את יועץ משכנתאות פרטי .
Roof paintings can also be demanding, yet it seems like First Class Roofing makes it straightforward and respectable. Tile Restoration First Class,
Love how neat and good-executed every thing seems. First Class Roofing is true-tier. First Class Roofing,
Hi there every one, here every person is sharing these familiarity, so it’s good to read this blog, and I used to pay a quick visit this webpage all the time.
В статье рассматриваются различные стратегии борьбы с зависимостями, включая проверенные методы и реальные истории успеха. Читатель узнает, какие подходы наиболее эффективны и как начать путь к выздоровлению.
Все материалы собраны здесь – [url=https://kupim-kubik.ru/medicinskoe-lechenie-alkogolizma/]лекарственное лечение алкоголизма[/url]
This was quite informative. For more, visit residential ac repair .
В статье рассматриваются различные стратегии борьбы с зависимостями, включая проверенные методы и реальные истории успеха. Читатель узнает, какие подходы наиболее эффективны и как начать путь к выздоровлению.
Посмотреть всё – [url=https://detsad68.ru/the_articles/zaschita-buduschego-kak-seme-predotvratit-formirovanie-zavisimostey-u-rebenka.html]анонимное лечение наркомании цены[/url]
This was once a invaluable study. Proper drainage and gutter protection are so exceptional for conserving roofing structures in Southeast Texas. roof replacement
Appreciate the recommendation on ice dams. A roofing contractor Manassas Virginia such as ebenezer roofing roof replacement manassas va established warm cables along our eaves.
This was very enlightening. For more, visit ac tune-up service .
https://1alimenty.ru/wp-content/pag/promokod_754.html
roulette mit bitcoin
Also visit my site; Bestes american blackjack casino
Foam insulation under metal panels can reduce noise and condensation. More info at ebenezer roofing roof replacement manassas va .
Медицинская публикация представляет собой свод актуальных исследований, экспертных мнений и новейших достижений в сфере здравоохранения. Здесь вы найдете информацию о новых методах лечения, прорывных технологиях и их практическом применении. Мы стремимся сделать актуальные медицинские исследования доступными и понятными для широкой аудитории.
Неизвестные факты о… – [url=https://bye-bye-calories.ru/the_articles/kak-odna-kruzhka-piva-ubivaet-vashi-trenirovki-i-chto-delat-chtoby-vsyo-ispravit.html]нарколог на дом вывод из запоя[/url]
Great breakdown of roof repairs. In Houston’s warmness and storm season, accepted inspections simply make a distinction. We’ve seen equivalent problems discussed at Strawhat Roofing commercial roofing Houston .
Appraisal gaps can be tricky—coordinate with a יועץ משכנתא early: ייעוץ משכנתאות .
This was a wonderful guide. Check out HVAC air conditioning repair for more.
Korzystałem z optymalizacji SEO i zależało mi na konkretnych, mierzalnych efektach, dlatego Proboost przy Hożej 86/410 w Warszawie to był strzał w dziesiątkę. Współpraca z nimi jako doradcą marketingowym dała mi mierzalne wzrosty ruchu w sklepie. Doradca Marketingowa
Well done! Find more at power washing services .
Appliance failures can be so frustrating! Having a best fixing solution is necessary for assurance. If you need referrals, consider stove repair austin tx .
Personalized assistance frоm OMT’s experienced tutors
aids trainees conquer math obstacles, fostering ɑ sincere connection to the subject and motivation ffor exams.
Dive іnto self-paced math mastery with OMT’ѕ 12-month e-learning courses,
compⅼete wіth practice worksheets and recorded sessions fⲟr extensive revision.
Singapore’ѕ focus on crucial believing tһrough mathematics highlights tһе vɑlue
off math tuition, which helps trainees develop tһe analytical skills
demanded by the nation’s forward-thinking curriculum.
Ϝor PSLE success, tuitioon օffers individualized guidance tօ weak aгeas,
lіke ratio and portion issues, avoiding typical pitfalls tһroughout the test.
Personalized math tuition іn secondary school addresses individual finding ߋut gaps in subjects like calculus and data, preventing tһem from
impeding O Level success.
Tuition instructs mistake analysis strategies, helping junior college trainees ɑvoid
typical risks іn A Level computations ɑnd evidence.
OMT’s custom-made educational program uniquely enhances tһe MOE framework bү providing thematic units
tһat link mathematics subjects tһroughout primary tօ JC levels.
Ƭhe sеlf-paced e-learning platform from OMT is super adaptable lor, maкing it easier to manage school аnd tuition fօr higher math marks.
Math tuition debunks advanced subjects ⅼike calculus f᧐r
A-Level trainees, paving tһе method for university admissions in Singapore.
my website primary maths tuition fees
Thanks for the great tips. Discover more at Super Clean Machine | PowerWashing & Roofing Washing .
3) You will see an unique activation code displayed on your screen.
Also visit my blog … www hulu com activate (rossi-johnsen.mdwrite.net)
Наркологическая помощь позволяет безопасно начать выведение токсинов, снизить интоксикации, восстановить водно-солевой баланс и подобрать дальнейшее лечение алкогольной зависимости. Нарколог проводит анализ состояния пациента, уточняет стаж употребления спиртного, причины запоя, наличие хронического заболевания, психических расстройств, противопоказаний и других ограничений. После диагностики врач выбирает схему: амбулаторно на дому, в стационаре клиники или с госпитализацией.
Ознакомиться с деталями – [url=https://vyvod-is-zapoya-sochi20.ru/]вывод из запоя цена[/url]
Everyone loves it whenever people get together and share views.
Great site, continue the good work!
Wind-driven rain tests a roof’s edges. Pay attention to rake detail. Edge detail tips on commercial roofing .
Πολύ κατατοπιστικό κείμενο για τα hotspots της Αθήνας. Στο ίδιο κλίμα, για συνοδούς και athens escorts greece, το independent escorts in Athens έχει αρκετές προτάσεις.
Wonderful tips! Find more at affordable air conditioning repair .
I’m really enjoying the theme/design of your website. Do you ever
run into any browser compatibility issues?
A number of my blog visitors have complained about my website not working correctly in Explorer
but looks great in Chrome. Do you have any recommendations
to help fix this issue?
מומחים אמיתיים למשכנתא בגיל השלישי, אין תחליף ל- תנאי משכנתא לגיל השלישי .
I should help with safer preferences, similar to: roof replacement
This was quite informative. For more, visit residential pressure washing .
Lead pipe boots crack over time. Silicone or metal boots last longer. Replacement tips at residential roofing .
The significance of expert demolition and excavation can not be overstated. If you require assistance, look no more than bathroom remodel dumpster for exceptional service.
Thanks for the useful post. More like this at commercial air conditioning repair .
Very informative article. Roof lifespan can range a great deal based on deploy caliber and neighborhood local weather prerequisites. roofing contractor
Szukałem kogoś, kto postawi kampanię remarketingową Google i dotrze do użytkowników, którzy opuścili sklep bez zakupu, polecam Proboost na Hożej 86/410 w Warszawie każdemu właścicielowi e-commerce Doradca Marketingowa
If some one wants expert view about running a blog after that i suggest him/her to pay a quick visit this weblog, Keep up
the fastidious work.
Hi there Dear, are you genuinely visiting this web site daily,
if so after that you will definitely take nice experience.
mundial rugby apuestas Deportivas pronostico