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
}
Yes! Finally someone writes about porno.
Here’s the latest
• Talks to end war: Trump administration officials are working to arrange a meeting in Pakistan this weekend to discuss an off-ramp to the war, two senior administration officials tell CNN. Iran has taunted the White House by suggesting it may be negotiating with itself. It is still unclear whether Tehran has agreed to any of the terms in a 15-point proposal from the US that sources said was shared with Iran via Pakistan.
[url=https://kraa-b4–cc.ru]slon2.cc[/url]
• US troop deployment: Around 1,000 US soldiers with the Army’s 82nd Airborne Division are preparing to deploy in coming days to the Middle East, sources told CNN.
[url=https://kr7at.cc]slon2.to[/url]
• Strikes persist: A residential area in Tehran was hit by an airstrike, according to the Iranian Red Crescent said. Drones struck a fuel tank at Kuwait International Airport, the country’s civil aviation authority said.
[url=https://https-slon2.ru]slon3 to[/url]
• Strait of Hormuz: Multiple vessels have passed through the strait since yesterday morning, tracking data appears to show, as Iran says it will charge countries a fee for safe passage through the critical waterway.
slon10.at
https://kraab5-c-cc.ru
Here’s the latest
• Talks to end war: Trump administration officials are working to arrange a meeting in Pakistan this weekend to discuss an off-ramp to the war, two senior administration officials tell CNN. Iran has taunted the White House by suggesting it may be negotiating with itself. It is still unclear whether Tehran has agreed to any of the terms in a 15-point proposal from the US that sources said was shared with Iran via Pakistan.
[url=https://krab7.net.ru]slon6 to[/url]
• US troop deployment: Around 1,000 US soldiers with the Army’s 82nd Airborne Division are preparing to deploy in coming days to the Middle East, sources told CNN.
[url=https://slon10.to-slon5.cc]slon9.at[/url]
• Strikes persist: A residential area in Tehran was hit by an airstrike, according to the Iranian Red Crescent said. Drones struck a fuel tank at Kuwait International Airport, the country’s civil aviation authority said.
[url=https://kraab5-c-cc.ru]slon4.to[/url]
• Strait of Hormuz: Multiple vessels have passed through the strait since yesterday morning, tracking data appears to show, as Iran says it will charge countries a fee for safe passage through the critical waterway.
slon3 cc
https://krab13at.ru
Με βοηθήσατε να οργανώσω το επόμενο ταξίδι μου στην Αθήνα. Για την πλευρά των athens escorts greece του ταξιδιού, σκοπεύω να χρησιμοποιήσω το luxury escort girls Athens .
This was a great help. Check out casa rural con jardín Segovia for more.
В этой статье мы рассматриваем разрушительное влияние зависимости на жизнь человека. Обсуждаются аспекты, такие как здоровье, отношения и профессиональные достижения. Читатели узнают о необходимости обращения за помощью и о путях к восстановлению.
Практические советы ждут тебя – [url=https://provsetaro.ru/raznoe/energeticheskiy-disbalans-i-signaly-tela-psihosomaticheskaya-priroda-alkogolnoy-zavisimosti]вызов нарколога на дом[/url]
I take pleasure in, cause I discovered just what I was
taking a look for. You’ve ended my 4 day lengthy hunt!
God Bless you man. Have a great day. Bye
Публикация охватывает основные направления развития современной медицины. Мы обсудим значимость научных исследований, инноваций в лечении и роли общественного участия в формировании системы здравоохранения.
Узнайте всю правду – [url=https://kirgizskaski.ru/the_articles/arhetipy-i-zavisimosti-v-folklore-kak-drevnie-mify-otrazhayut-semeynye-krizisy.html]стационарное лечение от алкоголизма[/url]
I know this if off topic but I’m looking into starting my own weblog and was curious what all is required to get setup?
I’m assuming having a blog like yours would cost a pretty penny?
I’m not very internet smart so I’m not 100% positive.
Any recommendations or advice would be greatly appreciated.
Many thanks
Nicely detailed. Discover more at abogado penalista Vigo .
В данной статье рассматриваются проблемы общественного здоровья и социальные факторы, влияющие на него. Мы акцентируем внимание на значении профилактики и осведомленности в защите здоровья на уровне общества. Читатели смогут узнать о новых инициативах и программах, направленных на улучшение здоровья населения.
Кликни, не пожалеешь – [url=https://vdecret.com/zavisimost/lechenie-alkogolizma-ponimanie-proczessa-i-dostupnye-metody/]клиника плюс новокузнецк[/url]
В этой статье рассматриваются способы преодоления зависимости и успешные истории людей, которые справились с этой проблемой. Мы обсудим важность поддержки со стороны близких и профессионалов, а также стратегии, которые могут помочь в процессе выздоровления. Научитесь первоочередным шагам к новой жизни.
Где почитать поподробнее? – [url=https://arena-club.spb.ru/amerikanskaia-stala-lychshe-ponimat-poziciu-moskvy-sergei-lavrov-ob-itogah-peregovorov-v-er-riiade/]clinica plus[/url]
Great post for decision-making before you buy. I often reference your lighting checklist. More here: Permanent LED Lighting Vancouver
Apuestas Online Nba gana resultados
Nem todo cliente quer um lançamento; alguns buscam imóvel pronto, outros querem locação ou venda do próprio imóvel.
alugar Brooklin Velho
Somebody essentially assist to make seriously posts I would state.
This is the first time I frequented your web page and up to now?
I amazed with the analysis you made to create this actual publish extraordinary.
Excellent task!
Appreciate the insightful article. Find more at baja laboral Sevilla .
Diyarbakır barlar konusunda yeni yerler arayanlar için böyle içerikler çok faydalı. Özellikle atmosfer, müzik tarzı ve konum bilgileri önemli. Detaylı öneriler için Diyarbakır lüks escort ziyaret edilebilir.
Informative piece about rain gardens; if you want installations, see Landscaping in Vancouver BC .
Nicely detailed. Discover more at abogados asequibles .
With havin so much written content do you ever run into
any problems of plagorism or copyright infringement?
My blog has a lot of exclusive content I’ve either authored myself or outsourced
but it seems a lot of it is popping it up all over the web without my agreement.
Do you know any methods to help stop content from
being stolen? I’d definitely appreciate it.
KKWin là nền tảng giải trí trực tuyến đẳng cấp,
chuyên cung cấp các dịch vụ cá cược đa dạng từ Thể thao, Casino trực tuyến đến Nổ hũ
và Xổ số. Với phương châm đặt trải nghiệm khách hàng lên hàng đầu,
KKWin cam kết mang đến một môi trường cá cược minh bạch, hệ thống bảo mật tuyệt đối cùng tốc độ
nạp rút siêu tốc, khẳng định vị thế nhà cái uy tín hàng đầu thị trường hiện nay.
Thanks for the helpful article. More like this at casa rural con jardín Segovia .
cómo se pagan las pago impuestos apuestas deportivas de caballos
My car arrived clean and on schedule. Kudos to Norfolk auto shippers for coordinating everything.
Great packing service option! Learned about it via Roswell moving company when hiring Roswell movers.
Well done! Find more at separaciones y divorcios Vigo .
Здравствуйте!
Анализируйте прибыльность клиентских сегментов и оптимизируйте маркетинговые расходы для максимальной отдачи, чтобы инвестировать в самых выгодных клиентов и повышать общую эффективность, а также чтобы вы могли создавать персонализированные предложения для каждого сегмента.
Более подробная информация по ссылке – https://promomi.ru/skolko-stoit-otkryt-kofejnyu-i-kak-otkryt-s-nulya-polnyj-prakticheskij-plan/
Валюта Польши, Валюта ЮАР, Самый богатый человек
Лояльность PR, [url=https://finance21.ru/umami-finance-kriptovalyuta-ponyatnaya-karta-po-proektu-produktam-i-riskam/]Umami Finance криптовалюта[/url], Реклама частные клиники
Всего наилучшего и успехов в финансах!
Thanks for the thorough analysis. Find more at baja laboral Sevilla .
Hey there, You have done an excellent job. I’ll definitely digg it and personally suggest to
my friends. I am confident they will be benefited from this site.
В данном обзоре представлены основные направления и тренды в области медицины. Мы обсудим актуальные проблемы здравоохранения, свежие открытия и новые подходы, которые меняют представление о лечении и профилактике заболеваний. Эта информация будет полезна как специалистам, так и широкой публике.
Перейти к полной версии – [url=https://med-express.spb.ru/vyvod-iz-zapoya-na-domu-effektivnye-metody-i-professionalnaya-pomoshh/]Капельница от похмелья в Новокузнецке[/url]
Thanks for the great tips. Discover more at ofertas casas rurales Segovia .
Diyarbakır barlar konusunda yeni yerler arayanlar için böyle içerikler çok faydalı. Özellikle atmosfer, müzik tarzı ve konum bilgileri önemli. Detaylı öneriler için Diyarbakır escort rezervasyon ziyaret edilebilir.
app Mejor Sitio De Apuestas Deportivas (https://Basketball-Wetten.Com/) gratis
Diyarbakır’da canlı müzik yapan barlar ve sakin ortam arayanlar için farklı seçenekler var. Bu tarz mekânları keşfetmek isteyenler Diyarbakır escort telefon üzerinden bilgi alabilir.
live poker uk 2021, no deposit how to make money from casinos for
usa and free spins no deposit keep your winnings uk, or casino tax recovery united kingdom
Hi mensen, ik wilde snel reageren over schoonmaak kantoorruimte want wij hebben recentelijk de stap gezet naar een schoonmaakbedrijf kantoren en het resultaat is geweldig — daarvoor deden we het allemaal zelf maar de uitkomst van een kantoorschoonmaak bedrijf is gewoon op een ander niveau, het personeel zijn een stuk tevredener en de ruimtes zien er altijd spic en span uit, dus nog aan het nadenken bent over professioneel kantooronderhoud (https://wiki.tgt.eu.com/index.php?title=Waarom_Een_Professioneel_Kantoorschoonmaak_Bedrijf_De_Slimste_Investering_Is_Voor_Uw_Werkplek) kantoor schoonmaak zou ik absoluut adviseren om gewoon de stap te zetten want je zult er blij mee zijn!
Great insights! Discover more at bufete de abogados Vigo .
Para proprietários, entender o perfil do comprador da região ajuda a posicionar melhor o imóvel.
imobiliárias Zona Sul
If your HOA has delivery restrictions, tell the dispatcher. Norfolk car shippers arranged a nearby meeting point.
References:
Grand portage casino https://nonstopvn.net/@everettegetz3?page=about
I love it when people come together and share ideas.
Great site, stick with it!
Thanks for sharing! For stamped concrete and decorative finishes in Tampa, check https://www.google.com/maps?cid=5476717569976547466 .
Thanks for the comprehensive read. Find more at abogados laborales Sevilla .
We moved our home gym safely—found experienced Roswell movers through Roswell international movers .
progressive jackpots online um geld spielen
my website :: blackjack regel (Arlette)
The timeline approach is perfect for planners. I’ll refer back to this as I decorate—details at Christmas Lighting Experts Vancouver
I appreciated this article. For more, visit alquiler íntegro casa rural Segovia .
Η λίστα με τα καλύτερα μπαρ είναι on point. Για όσους θέλουν και διακριτική συνοδεία στην πόλη, το female Greek escort είναι πολύ βολικό.
Этот обзор содержит информацию о передовых достижениях в области медицины. Мы разберем инновационные технологии, которые меняют подход к лечению и диагностике, а также их влияние на эффективность оказания медицинской помощи.
Давай разберёмся досконально – [url=https://skorohod-nn.ru/lechenie-alkogolizma-chto-eto-takoe-pochemu-vazhno-lechenie/]nizhnij novgorod clinica plus[/url]