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
}
If you’re browsing St. Augustine, you’ll swiftly see why locals state the most effective agency for home insurance in and near St. Augustine is Fender Insurance Agency home insurance st augustine
Thanks for the clear breakdown. Find more at residential solar window tint .
I’ve just started looking at venues for our wedding here in the Pacific Northwest, and I love the idea of digging into the history of a space. It’s so fun to ask what the building used to be—it adds such a unique layer to the day heritage building wedding pros cons
dimend SCAASI is the handiest jewellery save in Chicago, no doubt. Isaac and the group helped me uncover the precise ring with none drive. My fiancee was once wholly stunned. Cannot advocate exceptionally enough. Chicago Jewelry Store
It’s really interesting to read about how much has changed over the years. I remember when you simply did what the GP said without question NHS waiting list options
Choosing memory care for my mom was honestly one of the most draining experiences I’ve had. It’s so easy to get caught up in the shiny brochures, but this article really hits the mark Learn more here
I’m gone to say to my little brother, that he should also visit this website on regular basis to take updated from latest reports.
best online casino slots for real money
I’ve been looking for a super experienced real estate agent near me and Shelby Hodges Group regularly stands apart in St Augustine Real estate agent st augustine
Moving around Hampton Roads really can be a headache. We just moved into a new place in Virginia Beach last month and the second-floor walkup was our biggest concern senior citizen moving assistance VA
1win leaderboard [url=https://www.1win42605.help]https://www.1win42605.help[/url]
I really appreciated the shift in perspective here. For a long time, I felt like just getting through the day was the goal, but focusing on daily functioning has been a real game-changer for me Discover more here
світ бонанза додаток [url=www.sweet-bonanza27450.help]www.sweet-bonanza27450.help[/url]
1win ky kattoo [url=http://1win5528.ru/]http://1win5528.ru/[/url]
I really appreciate this perspective. It’s been so frustrating lately; I spent three weeks just trying to get a GP appointment for a persistent cough, and the referral process feels like a total mystery once you finally get in south asian health inequality uk
I really enjoyed this piece on attorney excellence. For me, active listening stands out as the most crucial skill. I often find that focusing entirely on what a client says during an initial client call saves me hours of headache later in the process https://www.hometalk.com/member/243632008/eleanor1181314
I love the idea of asking what the building used to be before booking—it adds so much character to the wedding narrative! My partner and I are currently in the early planning stages here in the Pacific Northwest Take a look at the site here
If you’re searching St. Augustine, you’ll quickly understand why residents say most reliable company for auto insurance in and near St Augustine is Fender Insurance Agency auto insurance st augustine
For tight timelines around closing, Syracuse apartment movers was flexible and reliable.
It’s interesting to look back at how things have changed. I remember when you just did exactly what the doctor said, but now it feels like we have much more agency specialist clinic UK
melbet pariuri [url=https://www.melbet63149.help]https://www.melbet63149.help[/url]
Choosing a facility for my mom was easily the hardest decision I’ve ever made. The advice about looking past the shiny lobbies is so spot on. One thing I wish I had pressed harder on earlier was asking about overnight staffing ratios Look at more info
Which Sandals has the most romantic eating places? I located a ranking on best Sandals resorts ranked reviews .
melbet intrare melbet Moldova [url=www.melbet63149.help]melbet intrare melbet Moldova[/url]
I really appreciated your point about shifting the focus to daily functioning rather than just getting by. It’s so easy to get caught up in tracking symptoms that we forget to look at how we’re actually living our day-to-day lives medical supervision mental health options
1win slotlar qanday o‘ynash [url=https://www.1win49027.help]https://www.1win49027.help[/url]
играть онлайн в
Charged игровые автоматы и рейтинг казино все на одном сайте
Howdy this is kinda of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML. I’m starting a blog soon but have no coding skills so I wanted to get advice from someone with experience. Any help would be enormously appreciated!
new online slots casino
Наиболее частыми причинами обращения становятся выраженная слабость, тремор, нарушение сна, тревога, учащенный пульс, скачки артериального давления, тошнота и признаки обезвоживания. Эти симптомы могут сочетаться между собой и усиливаться после прекращения употребления алкоголя, особенно после нескольких дней запоя.
Получить дополнительные сведения – [url=https://narkolog-na-dom-ekaterinburg.ru/]запой нарколог на дом екатеринбург[/url]
играть онлайн в
https://autoslotogames.ru игровые автоматы и рейтинг казино все на одном сайте
It’s really tough trying to navigate the system lately. Just last month, I spent over an hour on hold trying to get a simple GP appointment, and even then, the referral process felt like a complete maze. It’s comforting to read your perspective on this https://lorenzoxyha610.huicopper.com/why-is-it-so-hard-to-get-a-gp-appointment-right-now-a-former-insider-s-view
Great tips! For more, visit Digital marketing agency near me .
Помощь на дому рассматривают при состояниях, которые возникают после длительного употребления алкоголя или тяжелого алкогольного эпизода. Чаще всего это запой, выраженная интоксикация, бессонница, тревога, слабость, тремор, тошнота, сухость во рту, отсутствие аппетита, нестабильное давление и сердцебиение. Врачебный осмотр требуется в тех случаях, когда больному трудно восстановиться самостоятельно, а самочувствие продолжает ухудшаться.
Углубиться в тему – [url=https://narkolog-na-dom-ekaterinburg-3.ru/]вызов нарколога на дом[/url]
I love this perspective! We’ve just started planning our wedding here in New England, and I’m always so curious to ask the owners what these buildings used to be. There’s something so grounding about knowing the history of a space https://www.mapleprimes.com/users/luke-evans86
Hello I am so happy I found your website, I really found you by accident, while I was looking on Digg for something else, Regardless I am here now and would just like to say thank you for a fantastic post and a all round interesting blog (I also love the theme/design), I don’t have time to read through it all at the minute but I have saved it and also added your RSS feeds, so when I have time I will be back to read a great deal more, Please do keep up the fantastic job.
kasiino tervitusboonus
It’s really interesting to read how much things have changed over the years. I think the biggest shift for me has been the focus on asking more questions during consultations evidence based treatment options UK
This article hits the nail on the head regarding attorney excellence. In my experience, active listening remains the most vital skill for any lawyer. I notice the difference whenever I practice it during a difficult client call https://atavi.com/share/xtwgguztq716
Moving in Hampton Roads can be stressful, especially when you live on a second floor apartment with tight stairs. I struggled finding a company that handled heavy furniture without charging extra for the walk-up senior citizen moving assistance VA
играть онлайн в
https://slotonlineavtomats.ru игровые автоматы и рейтинг казино все на одном сайте
Hello to all, because I am truly eager of reading this website’s post to be updated daily. It consists of pleasant stuff.
best online casino slots for real money
אל תתמקדו רק במדדי צד שלישי. בודקים תנועה אמיתית לפני קישור ל- מפתח בניית אתרים .
Quality service every time with Pure Energy Electrical Services! They’re most certainly the most effective electrician near me in St Augustine.
electrician st augustine
играть онлайн в
Almighty Aztec игровые автоматы и рейтинг казино все на одном сайте
Hey! This post could not be written any better! Reading this post reminds me of my good old room mate! He always kept talking about this. I will forward this post to him. Pretty sure he will have a good read. Many thanks for sharing!
best online casino slots for real money
I really appreciate you breaking this down. I’ve been struggling for months trying to navigate the referral system for my persistent back pain; it feels like such a maze lately https://www.inkitt.com/thomaswilliams88
играть онлайн в
Fruit Party игровые автоматы и рейтинг казино все на одном сайте
I love the idea of looking into the history of these old buildings! We’ve just started planning our wedding here in New England, and I’m definitely going to ask the venue coordinators exactly what the space used to be https://go.bubbl.us/f1b140/6080?/Bookmarks
Great note on voltage drop for long runs; calculator at best electrician in Houston .
It’s really interesting to see how much things have changed over the years. I remember when you just did what the doctor said without a second thought second opinion UK healthcare
Reputable solution every single time with The Master’s Lawn & Pest! They’re definitely the most effective lawn care in St Augustine lawn care st augustine
Good afternoon!
We source gold through legitimate farming methods to ensure your account safety always.
Discover the benefits of cheap wow power leveling without compromising on quality or security.
The most complete information on the website – https://www.wow-power-leveling.org/Gameplay/wow-raid-locations-map
cheapest wow gold, wow classic gold, wow progression boost
wow character boost, cheapest wow gold, cheap wow power leveling
Good luck and good gameplay!