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
}
Fick offert för både invändigt och utvändigt måleri via målare stockholm .
Pool opening means BBQ season too! Can’t wait to grill by the water! winnipeg pool opening
Hello, all the time i used to check weblog posts here in the early hours in the dawn, because i enjoy to gain knowledge of more and more.
在线购买他达拉非片用于肛交XXX色情
EnglishGideon Service Company’s electricians are knowledgeable and provide excellent service every time! licensed electrician near me
The recommendation on contractor references concerns. affordable roof repair company had lots of superb local references.
Hey there I am so happy I found your blog, I really found you by mistake, while I was looking on Digg for something else, Regardless I am here now and would just like to say kudos for a incredible post and a all round thrilling blog (I also love the theme/design), I don’t have time to browse it all at the moment but I have book-marked it and also included your RSS feeds, so when I have time I will be back to read more, Please do keep up the superb b.
Meilleur Site paris sportif hors ARJEL
Monthly declutter challenge accepted— Sydney waste removal is my go-to for haul away.
Hey! This is kind of off topic but I need
some advice from an established blog. Is it hard to set up your own blog?
I’m not very techincal but I can figure things out pretty fast.
I’m thinking about making my own but I’m not sure where to begin. Do you have
any ideas or suggestions? Thanks
We had a dripping shower valve in Feasterville fixed fast by a Plumber Feasterville we found on plumber feasterville .
What’s up, yes this paragraph is truly nice and I have learned lot of things from it concerning blogging. thanks.
Site de paris sportifs hors arjel
Hello, the whole thing is going nicely here and ofcourse every one is sharing information, that’s truly fine, keep up writing.
Watch sexual porno video xxx sex adults site
В нашем магазине можно заказать красивые подарки и украшения для важного события. В каталоге есть сувениры, которые подойдут для свадьбы.
Если хочется сделать приятный сюрприз, стоит обратить внимание на браслеты. Такие вещи запоминаются надолго и помогают сделать подарок действительно особенным.
Интернет-магазин подарков предлагает товары для тех, кто ценит внимание к деталям. Здесь легко выбрать подарок для девушки, не тратя время на бесконечные поиски.
Каталог пополняется интересными товарами, поэтому каждый покупатель может найти подходящий вариант. Подарки и украшения помогают выразить внимание без лишних слов.
[url=https://motifri.com]kra ссылка[/url]
We moved our showroom fixtures in NE Minneapolis— movers Minnesota managed oversized pieces and loaded them Tetris-style.
This review really sold me on the idea of having multiple models in one thread. Being able to compare their answers side-by-side sounds like a total game changer for my research workflow Suprmind vs Poe for power users
I’m gone to convey my little brother, that he should also go to see this website on regular basis to get updated from latest reports.
Meilleur Site paris sportif hors ARJEL
Thank you for any other magnificent post. The place else may anyone get that kind of information in such a perfect method of writing? I have a presentation subsequent week, and I’m at the look for such info.
Bookmaker hors arjel
Алкогольная и наркотическая зависимость требуют незамедлительного и комплексного вмешательства для предотвращения серьезных осложнений и сохранения здоровья пациента. В Уфе, Республика Башкортостан, опытные наркологи выезжают на дом 24 часа в сутки, предоставляя оперативную помощь при запоях и в случаях наркотической интоксикации. Такой формат лечения позволяет начать детоксикацию в комфортной, привычной обстановке, обеспечивая максимальную конфиденциальность и индивидуальный подход к каждому пациенту.
Исследовать вопрос подробнее – [url=https://narcolog-na-dom-ufa000.ru/]вызов врача нарколога на дом уфа[/url]
If you’re unsure about any step, don’t DIY—find a licensed electrician at certified electrician Plano .
If you want a rodent control company near me that follows up with monitoring, try residential rodent control company Los Angeles .
В нашем магазине можно заказать стильные подарки и украшения для приятного сюрприза. В каталоге есть изящные аксессуары, которые подойдут для свадьбы.
Если хочется порадовать близкого человека, стоит обратить внимание на браслеты. Такие вещи запоминаются надолго и помогают сделать подарок действительно особенным.
Интернет-магазин подарков предлагает товары для тех, кто ценит качество. Здесь легко выбрать подарок для мамы, не тратя время на бесконечные поиски.
Ассортимент регулярно обновляется, поэтому каждый покупатель может найти интересную идею. Подарки и украшения помогают выразить внимание без лишних слов.
[url=https://motifri.com]kraken darknet ссылка[/url]
I really appreciate this breakdown of Suprmind! Being able to use multiple models in one thread seems like a total game changer for my workflow. I am definitely curious if the performance stays consistent when you switch between them rapidly https://johnathankvdj950.wpsuo.com/does-suprmind-help-with-cannot-afford-for-ai-to-be-wrong-work
В нашем магазине можно подобрать стильные подарки и украшения для праздника. В каталоге есть подарочные наборы, которые подойдут для корпоратива.
Если хочется сделать приятный сюрприз, стоит обратить внимание на серьги. Такие вещи подчеркивают вкус и помогают сделать подарок действительно особенным.
Интернет-магазин подарков предлагает товары для тех, кто ценит красоту. Здесь легко выбрать подарок для любимого человека, не тратя время на бесконечные поиски.
Ассортимент регулярно обновляется, поэтому каждый покупатель может найти подходящий вариант. Подарки и украшения помогают выразить внимание без лишних слов.
[url=https://motifri.com/]kraken onion[/url]
O veterano calado chamou o Fortune Rabbit de “o único honesto” — meio brincando, meio não.
Loft conversions need careful load planning; licensed electricians in Fort Worth TX did a full load calc for us.
Unexpected rain shower? The movers I booked via bald eagle west palm had waterproof covers and kept my piano safe during unload.
HOA compliance paperwork was easier with guidance from local Garland electrician services .
Very handy info. I’m confirming with metal roofing near me the substrate and deck integrity before install. metal roofing contractors LA
Программа 12 шагов построена как последовательный путь: человек учится признавать болезнь, принимать помощь, разбирать причины употребления, проводить моральную инвентаризацию, исправить ошибки, компенсировать нанесенный ущерб и поддерживать трезвость через регулярные действия. В основе программы лежит не давление, а постепенная работа с отрицанием, самообманом, страхами и привычкой возвращаться к прежним решениям.
Получить больше информации – https://reabilitaciya-12-shagov-moskva13-1.ru
Hello there I am so glad I found your webpage, I really found you by error, while I was searching on Yahoo for something else, Nonetheless I am here now and would just like to say thanks a lot for a incredible post and a all round interesting blog (I also love the theme/design), I don’t have time to go through it all at the minute but I have bookmarked it and also included your RSS feeds, so when I have time I will be back to read a great deal more, Please do keep up the excellent work.
Meilleur bookmaker hors arjel
Thanks for the breakdown. Being able to use multiple models in one thread sounds like a game changer for my workflow. I am really curious how the interface handles the output speed when toggling between them though AITopTools Suprmind
Thanks for this. For safe 24 hour locksmiths in Doctor Phillips, contact locksmith 24 hour .
Hello Dear, are you really visiting this web site daily, if so then you will definitely get pleasant know-how.
Thanks for the pre-winter checklist. I booked same day furnace repair Charlotte early and avoided the rush.
SKY88 là nền tảng giải trí trực tuyến được phát triển theo hướng hiện đại, chú trọng tốc độ truy cập và sự ổn định trong quá trình sử dụng. Website mang đến giao diện rõ ràng, bố cục dễ quan sát và khả năng tương thích tốt trên nhiều thiết bị khác nhau bbc
SKY88 là website giải trí trực tuyến được phát triển theo hướng thân thiện, dễ tiếp cận và tối ưu cho quá trình sử dụng hằng ngày. Nền tảng nổi bật với tốc độ tải nhanh, giao diện gọn gàng và khả năng hiển thị ổn định trên cả máy tính lẫn thiết bị di động bbc
Susan hand-picked several diamonds for us to compare and the one she recommended most highly was objectively the most beautiful stone in the group. Her eye for quality is exceptional. Chicago Jewelry Store
Thanks for the informative content. More at Artificial turf installation services .
I got this site from my friend who told me about this website and at the moment this time I am browsing this web page and reading very informative content at this place.
在线购买无处方安定片 xxx Pornhub
Thanks for covering spa pack wiring and GFCI requirements. I keep checklists on local Irving electrician .
Radiator leaking at the valve—anyone had emergency plumber southampton pa fix without replacing the whole unit in Southampton?
Этот обзор содержит информацию о передовых достижениях в области медицины. Мы разберем инновационные технологии, которые меняют подход к лечению и диагностике, а также их влияние на эффективность оказания медицинской помощи.
Погрузиться в научную дискуссию – [url=https://psilocybe-larvae.com/2024/02/sovremennye-podxody-k-lecheniyu-alkogolizma-put-k-zdorovoj-zhizni/]Похмельная служба в Краснодаре[/url]
Jewel Race Ganesha vale o replay — já vi pattern de entrada.
Never found out how invaluable flashing is. If you desire a consultant, roofing company connects you with roofing contractors.
A client-care mindset helps keep decisions clear and organized. dana roadnight real estate
phuket thailand apartments for sale [url=https://apartments-for-sale-in-phuket-4.com]phuket thailand apartments for sale[/url]
Thank goodness technology allows us find best options quickly & efficiently nowadays compared older methods relied upon heavily previously including asking neighbors directly !!!! ### anykeyword### best plumber company Sandpoint
Appreciate the content! For emergencies, Garage Door Repair Mesa AZ responds 24/7 in Mesa. install garage doors in Mesa
Wonderful tips! Find more at whole home remodeling contractor .
Useful news. For shrewd lock troubleshooting in Doctor Phillips, succeed in out to locksmith .
Fabulous, what a webpage it is! This website presents valuable facts to us, keep it up.
Bookmaker sans limite de mise