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
}
This is helpful information for anyone considering tree removal. It is important to know when a tree can be saved and when removal is the safest choice. lawn care
Found a slow leak behind the wall that had been there long enough to cause real damage. Earlier detection would have helped. Plumber Ballard wa
Herndon Tech Worker Grateful for Irving Law Firm Equity Handling
My restricted stock units and unvested options were the most valuable part of our marital estate and the most complicated to divide fairfax divorce lawyers
The Park Cities area of Dallas has such a distinct character. Really unlike anywhere else in Texas. financial advisor near me
Respite Care Phoenix Arizona Advacare Homecare Family Relief Break
I have been caring for my father for three years and I was at the end of my rope. Advacare’s respite care has given me back my weekends Home Care
Our plaster old pool in Bixby Knolls had deep-set stains that zero bleach or scrubbing could touch. Turns out once plaster gets worn down, mineral deposits just settles deep into the surface and sits there no matter what you pour in pool resurfacing near me
AC repair Winnipeg Lennox system genuine parts review
We have a Lennox AC system and they used genuine parts and followed proper procedures for the repair. Could tell the technician knew exactly what they were doing. Will use again. AC Repair Winnipeg
Your table setup checklist changed into very best. Printable model: Chiropractor fort myers
ใครชอบข้าวมันไก่ต้องลองร้านผู้กำกับสับไก่ข้าวมันไก่ธนาพล อร่อยหอมมันกำลังดี แวะดูรีวิวที่ ข้าวมันไก่ พระราม5
I’m gone to convey my little brother, that he should also visit this website
on regular basis to obtain updated from most recent information.
Here is my web blog … Casino Dreams (https://Goplayslots.net/)
Thanks for the clear breakdown. Find more at website development .
Before signing off to redoing our worn-out plaster pool, we got Adam’s Pool and Spa Service to break down our pool surface options, and frankly it made the whole decision pool resurfacing near me
Yesterday, while I was at work, my cousin stole my iPad and tested to see if it can survive a 30 foot
drop, just so she can be a youtube sensation. My apple ipad is now broken and she has 83
views. I know this is entirely off topic but I had to share it with someone!
visa Sportsbook betting platform sites
We hired JA Headshots for a product catalog shoot for our business near the River District, and the on-set tethering setup they used made everything so much easier commercial photography
online casino mit eps bezahlen; Tabitha, casino vcreditos bezahlen
After bouncing around between several providers closer to Whittier, I finally found my way to Eye Cue Mental Health and honestly it’s made a difference mental health clinic near me
Very informative read. Moving is much easier when the company is organized, careful, and familiar with the local area. More information can be found here: Canoga Park moving service company
Solid post! We really needed this prior to our photo session back in March. Our boutique near McGregor Boulevard had no brand consistency going into it and we weren’t sure what lighting mood actually matched our company commercial photography near me
Thanks for sharing these insights. Texas small business owners often have a lot to compare when it comes to health coverage, especially costs, provider networks, and employee needs. I found more helpful information here: health benefits for Texas businesses
You are so cool! I don’t suppose I’ve truly read through something like this before.
So wonderful to discover somebody with some original thoughts on this
subject matter. Really.. many thanks for starting this up. This
web site is one thing that is required on the web, someone with a little originality!
This is helpful for people comparing plumbing services in Jacksonville. From routine inspections to urgent repairs, dependable contractors are always valuable. Visit local residential plumbers for more plumbing information.
Fort Worth moving company delivered on time, wrapped everything, and stayed within budget. Booked via Cheap movers Fort Worth .
มื้อเช้าก็ดี มื้อดึกก็รอด ผู้กำกับสับไก่ข้าวมันไก่ธนาพล เวลาเปิดปิดที่ ร้านข้าวมันไก่
Totally agree that consistency beats depth in rehab. Habit-stacking worksheet: Chiropractor
What i don’t realize is in truth how you are no longer really a lot more well-preferred than you may be now.
You’re so intelligent. You recognize thus significantly on the subject of this matter, made me individually
consider it from so many varied angles. Its like men and
women don’t seem to be involved except it is one thing to accomplish
with Lady gaga! Your personal stuffs excellent.
At all times take care of it up!
For a long time, I told myself my anxiety was just stress, but by last spring it had grown into daily panic attacks and I couldn’t make it through a normal workday without falling apart mental health clinic
This is a good reminder that weeds are not just an appearance issue but can affect the health of a lawn. tree service is a helpful option for weed control support.
Our family has been tracking our pool’s condition with Adam’s Pool and Spa Service for about four seasons now, and their quarterly pool inspection is what finally showed us our surface was wearing thin pool resurfacing near me
This article explains why weeds should not be ignored. lawn care provides practical support for keeping lawns in better condition.
I savour your fair stance on while to refer out. Patient referral explainer: Back Pain Chiropractor
Very useful article. A well-organized move usually starts with proper packing materials, clear labeling, and a reliable local moving team. Disclosure: I’m affiliated with moving companies in Canoga Park .
For anyone researching Texas group health plans, it’s helpful to focus on affordability, coverage quality, carrier reputation, and employee access to care. More information: buy small business insurance in Texas
Корпоративное обучение — 5 операторов за 3 дня освоили новую технику. Каждый получил методические материалы. Через неделю работали самостоятельно без лишних вопросов к инструктору. [url=https://traktor-zd.kz/]спецтехника Алматы[/url]
Really useful post. It’s nice to see lawn care explained in a way that is practical for everyday homeowners. weed control company
Люди подскажите Замучился я уже искать информацию по участкам Всё это нужно знать перед покупкой Короче, единственный нормальный сервис — публичная кадастровая карта россии онлайн Проверил все данные В общем, там и карта и данные — публично кадастровая карта [url=https://publichnaya-kadastrovaya-karta-abc.ru]https://publichnaya-kadastrovaya-karta-abc.ru[/url] Пользуйтесь нормальной картой Перешлите тому кто ищет участок
Вывод из запоя в клинике и на дому в Сочи: лечение алкоголизма, капельница, детоксикация, помощь нарколога круглосуточно, анонимно и безопасно.
Получить дополнительные сведения – [url=https://vyvod-is-zapoya-sochi24.ru/]вывод из запоя капельница в сочи[/url]
Lustra LED Sala Evenimente Iluminat Profesional Elegant iluminat-ieftin.ro
Sala de evenimente a hotelului nostru a fost dotata cu candelabre LED de la iluminat-ieftin.ro Lustre led
casino echtes roulette hoeveel geld
I tried entering my birth time (09:30 AM) and asked about my sun, moon, and rising signs. The chatbot gave a pretty clear breakdown that made sense. I liked how it explained the moon sign in relation to emotions https://www.mediafire.com/file/41o9vyij4ily107/pdf-69357-11128.pdf/file
Very practical advice here. It’s helpful to remember that different weed problems often require different solutions depending on the season and location. lawn care
My husband spotted our pool in Park Estates was dropping almost two inches of water a week and assumed it was just normal splash out pool resurfacing long beach
blackjack kreditkarte einzahlung
Here is my blog :: online casino 300 bonus (https://lebane.hola.rs/)
I tried entering my birth time at 09:30 AM to see what my sun, moon, and rising signs were. The chatbot gave some interesting insights, especially about my moon sign monthly horoscope chat ai
Flying my flag is part of my morning routine. More info: More help
Really useful write-up. Our team page had portraits from four random sessions and it felt sloppy, half our team were missing entirely commercial photography
I tried entering my birth time at 09:30 AM, and the chatbot gave detailed info about my sun, moon, and rising signs. I liked how it explained the traits clearly without being too vague https://rentry.co/936h8sok
Great advice! When choosing plumbing contractors in Jacksonville, it’s important to find a team that is responsive, knowledgeable, and properly equipped. I’d suggest visiting emergency drain repair Jacksonville too.
I tried entering my birth time (09:30 AM) to see what the bot says about my sun, moon, and rising signs. It gave a surprisingly detailed breakdown sun moon rising meaning
Found this blog post and had to comment because Eye Cue Mental Health truly improved how I manage my mental health maintenance between sessions mental health clinic