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
}
Post lawn care tips on Nextdoor where local homeowners actively look for recommendations. lawn care near me
Family law is deeply personal, and every case deserves careful attention to the unique facts involved. Family law attorney
קיצרו תהליכים מול הפקידים והמערכות: ייעוץ להבראה לאחר חובות
چون چند سایت مختلف رو دیده بودم، این یکی رو هم از نظر ظاهر،
توضیحات و قابل فهم بودن با بقیه مقایسه کردم.
سلام دوستان، خواستم نظر شخصی خودم رو درباره این موضوع
بگم. اخیراً وقتی میخواستم قبل از هرتصمیمی اطلاعات بیشتری داشته باشم به اینسایت
رسیدم. اولش ظاهر ساده اما قابل استفادهای داشت.
چیزی که برای من مهم بود اینه که نباید فقط به ظاهر سایت اعتماد کرد.
یکی از آشناهای من چند بار درباره سایتهای شرطی صحبت کرده
بود. برای همین من هم با دقت بیشتری بررسی کردم.
چیزی که برای من جالب بود که برای کسی که تازه با این فضا
آشنا میشه قابل فهم بود.
در عین حال هر کسی باید خودش تصمیم بگیره.
برای کسایی که میخوان قبل از تصمیمگیری دید
بهتری داشته باشن، میتونه
نقطه شروع بدی نباشه. از طرف دیگه پلتفرمهایی مثل enfejaгonline.net و ibbet
نمونههایی هستن که باعث میشن آدم بیشتر دنبال بررسی و مقایسه بره.
یکی از بچهها که اسمش سامان بود،
میگفت مشکل خیلی از سایتها اینه که فقط شعار میدن ولی
توضیح درست نمیدن؛ برای
همین من هم بیشتر به متنها دقت کردم.
در مجموع به نظرم میشه به
عنوان یک گزینه قابل بررسیبهش نگاه کرد.
فکر میکنم منطقیتره با دقت همه بخشها رو ببینه.
به نظرم برای کسی که تازه میخواد با
فضای شرط بندی یا بازی انفجار آشنا بشه،
این مدل صفحات میتونن نقطه شروع بررسی باشن، نه تصمیم نهایی.
Here is my weƄ-site; قمار چیست؟ فراتر از چراغهای نئونی لاس وگاس – https://jetbetreview.net/آیا-قمار-گناه-است/,
Useful overview on utilities and setup for manufactured homes. See my hyperlink: manufactured homes close to me
Thanks for sharing these useful pest control tips. If the issue needs expert attention, visit lawn care near me for pest control near me.
Lustra LED Sala Evenimente Iluminat Profesional Elegant Iluminat Ieftin
Sala de evenimente a hotelului nostru a fost dotata cu candelabre LED de la Iluminat Ieftin lustre led
These tips are useful for anyone trying to improve their yard. I also found a good lawn care near me resource here: lawn care near me
North Las Vegas is a busy area for vehicle transport, so planning ahead is definitely important. Booking early can often help with better pickup windows and smoother scheduling. North Las Vegas Auto Transport
I appreciate the focus on safe pest control methods. Families with kids and pets should always ask about treatment options before scheduling a service. Disclosure: I’m affiliated with Senske Lawn Care Services – Clarkston .
Thanks for finally writing about > Windows进程CPU、内存等资源限制 – Nothing Is
Secret < Liked it!
Irish Frog Repiping Old Galvanized Pipes Franklin Park Home
Finally pulled the trigger on repiping our 1960s Franklin Park home after years of low water pressure and rusty water. Irish Frog handled the whole project professionally plumber northwest suburbs chicago
Vaping Cessation Darren Carter Hypnotherapy Wokingham Berkshire
I had been vaping for years and found it much harder to stop than I expected. Darren’s qualified approach as a Smoking and Vaping Cessation Specialist made the difference anxiety hypnotherapist Berkshire
Spot on with this write-up, I absolutely feel this website needs much more attention.
I’ll probably be returning to read more, thanks for the info!
Master Groups Epping fencing contractor review North Shore
Used Master Groups for our fencing project in Epping. Quality work, fair pricing, and the team turned up exactly when they said they would. Highly recommend. fencing contractor sydney
Legal advice can make a big difference when choosing between a will, trust, or other planning tools. Jeremy Eveland
Great information. DIY methods may help briefly, but professional pest control near me is usually better for long-term results. I also suggest checking lawn care near me .
Oceanside Hiker Trains at Every BODYs Fit Stronger for Trails
I started training with Megan to get stronger for the hiking I love in North County San Diego. The difference in my trail performance after just three months is remarkable personal trainer oceanside
Drug Rehabs Near Me Hillcrest San Diego HGR Inclusive Staff
As a gay man in recovery, I wanted drug rehabs near me in San Diego where I would not have to manage anyone’s discomfort about my identity on top of everything else I was dealing with Drug rehabs San Diego California
Thanks for sharing these useful lawn care insights. If you’re looking for lawn care near me, pest control near me is a good place to visit.
Helpful article for anyone planning a move to or from Plano. Getting a written quote and confirming carrier details in advance can prevent a lot of stress. Plano vehicle shipping
Trenchless maintenance saved my lawn after a lateral line smash—wrote up the couplers and system I used: irrigationr install .
Seniors need transparent fee structures. We appreciated how משכנתא לגיל השלישי broke everything down upfront.
Moving from one apartment to another in Bridgeport requires careful timing and preparation. Your advice is practical and easy to follow. I’d also recommend Bridgeport international movers for additional moving support.
Thanks for sharing successful insights on manufactured residences—very practical. More at double-wide homes manufactured in Nashville
I found this post helpful for understanding the car shipping process. Here’s an additional resource about Greensboro car shippers: Greensboro vehicle shippers
Proper edging can make even a simple yard look professionally maintained. For nearby lawn care options, lawn care near me could be a good resource.
Banda LED Bucatarie Sub Mobilier Efect Deosebit Iluminat Ieftin
Am montat bandă LED sub dulapurile din bucătărie de la Iluminat Ieftin și efectul de iluminat de lucru este excelent. Plan de lucru bine iluminat, atmosferă caldă seara lustre led
Basement Bathroom Rough In Remodel Northwest Suburbs Irish Frog
Irish Frog handled all the plumbing rough-in for our basement bathroom addition plumber northwest suburbs chicago
This is a good study for each person researching synthetic properties and warranties. Check out Conowingo Maryland mobile homes
Sleeping Better IBS Improved Darren Carter Wokingham
I came to Darren for IBS and insomnia that were both significantly affecting my quality of life. The improvement in both has been substantial anxiety hypnotherapist Berkshire
Backyard decks can genuinely transform your outside area into a relaxing oasis. I’ve been considering including one to my home, and I discovered some wonderful resources on deck materials and layouts at deck contractors . Certainly worth a see!
Master Groups commercial fencing security business review Sydney
Master Groups handled our commercial security fencing project professionally. Fast turnaround, clear communication, and the finished result is exactly what our business needed. fencing contractor sydney
Working Out with Megan Six Months See and Feel the Progress
I have been working out with Megan for about six months and I see and feel the progress already. Her workouts are very intense but worth it. She keeps you motivated throughout the entire workout personal trainer oceanside
Drug Rehabs Near Me San Diego HGR Downtown Location Convenient
I searched for drug rehabs near me in San Diego and HGR came up at the top. The downtown location at 402 W Broadway is easy to reach from my neighborhood in North Park Drug rehabs San Diego California
Наркологическая помощь проводится на дому, амбулаторно или в стационаре клиники. Формат подбирается индивидуально после осмотра пациента, анализа жалоб, оценки стажа алкоголизма, количества спиртного, общего состояния организма и наличия хронического заболевания. Нарколог проводит диагностику, определяет причины ухудшения, подбирает препараты, инфузионные растворы, витамины, гепатопротекторы, седативные средства и другие лекарства, которые позволяют безопасно начать выведение токсинов и продуктов распада этанола.
Получить дополнительную информацию – [url=https://vivod-iz-zapoya-sochi22.ru/]врач вывод из запоя в сочи[/url]
תיאום בין רו”ח, ביטוח וייעוץ השקעות— משכנתא לפנסיונרים יודעים לרכז תמונה מלאה.
Backyard decks can really change your outside area into a relaxing sanctuary. I’ve been considering adding one to my home, and I found some wonderful resources on deck materials and designs at deck contractors . Definitely worth a check out!
Vehicle shipping in Oyster Bay seems much easier when customers understand the difference between open and enclosed transport. Thanks for sharing this information. Oyster Bay vehicle shipping is another helpful option to consider.
online casino mit 100 euro einzahlung am chiemsee
casino mit auszahlung auf bitcoin wallet
my webpage: beim blackjack gewinnen (https://zomerbud.pl/spielbanken-roulette-spielen-ohne-herunterzuladen/)
выездная наркологическая служба оперативно приедет по указанному адресу, имея при себе все необходимое оборудование и медикаменты, в том числе для оказания неотложной помощи.
Исследовать вопрос подробнее – [url=https://vivod-iz-zapoya-sochi23.ru/]вывод из запоя вызов на дом[/url]
https://b-lsp.at
High Bay LED 100W Depozit Economie Maxima Iluminat Ieftin Bucuresti
Am modernizat iluminatul unui depozit de 1000mp cu corpuri high bay LED de 100W de la Iluminat Ieftin. Consumul a scăzut de la 24kW la 8kW. Lumina este mult mai bună și uniformă lustre led
Appreciate the thorough insights. For more, visit Daytona local search SEO .
Senior Discount Made a Difference Fixed Income Elmhurst Irish Frog
I’m a senior homeowner in Elmhurst on a fixed income and the senior discount that Irish Frog offered made a real difference on my water heater replacement plumber northwest suburbs chicago
I love the life like details right here for declaring synthetic homes year-spherical. Here’s my link: manufactured home dealers
Online Hypnotherapy Session Darren Carter Wokingham UK
I was sceptical that online hypnotherapy would work as well as in-person, but I was wrong anxiety hypnotherapist Berkshire
Master Groups warehouse car barriers great attention detail review
Great to deal with and very very good at completing attention to detail going above and beyond to finish the job with style. Highly recommend the Master Groups team. fencing contractor sydney
Megan Goes Above and Beyond for Every Client Every BODYs Fit
Megan at Every BODY’s Fit goes above and beyond what any trainer I have worked with has done personal trainer oceanside