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
}
I like the tip about written estimates. I compared detailed bids from Fremont plumbers using trusted plumbing company Fremont before deciding.
Moving from a Sarasota condo to the Northeast? I recommend browsing office furniture movers Sarasota to line up binding estimates and avoid surprise fees.
Здравствуйте!
Внедряйте культуры финансовой ответственности в маркетинговых командах через систему мотивации и KPI, чтобы повышать ответственность, а также чтобы вы могли создавать команду, которая понимает важность финансовой эффективности и стремится к ее улучшению.
Более подробная информация по ссылке – https://promomi.ru/skript-prodazh-dlya-psihologa-instrukczii-dialogi-i-gotovye-frazy-kotorye-rabotayut/
Что такое биржа, Наклейка на асфальт, Ипотека купить жилье
Модель AIDA, [url=https://promomi.ru/mesto-distribucziya-chto-eto-takoe-v-marketinge-i-pochemu-eto-reshaet-prodazhi/]Место дистрибуция[/url], Что такое ставка
Всего наилучшего и успехов в финансах!
sportwetten österreich bonus
Here is my homepage: ncca basketball wett vorhersagwn übertore untertore
I shipped a second car with a multi-vehicle discount—found it through Irvine auto shippers near me .
The emotional comfort of being known and seen makes accepting help with ADLs so much easier for seniors. That’s why I’m more interested in options like assisted living rather than large institutions.
For those with arthritis or limited mobility, regular help with dressing and bathing is a game changer. Small assisted living settings tend to deliver that consistently. I found more info at respite care .
For active seniors who simply want freedom from home maintenance, Independent Living really seems ideal. I discovered many such communities on memory care home that emphasized travel, clubs, and low-maintenance lifestyles.
I can create 50 FAQ answers related to Gilbert auto shipping and car transport services. affordable auto shipping Gilbert
Pro tip: label boxes by room for your Conroe home and share the list with your crew. I grabbed a free checklist from Conroe movers .
I like this topic because moving can be exhausting without help. Full service movers in Reno are a smart solution for anyone with a busy schedule. Learn more: nearby local movers Reno
Toilet backups are the worst. After reading this, I realize it might be a bigger main line issue instead of just the toilet. I’ll probably get a sewer camera inspection from Portable Toilet Rental before it gets worse.
Before I book a job, I check whether the power washing company is local and familiar with the typical surfaces and weather in my area. Local experience can make a big difference, and I usually start my search on Power Washing Arlington VA .
Thanks for the helpful advice. Discover more at Pressure washing near me .
I have read several excellent stuff here. Certainly price bookmarking for revisiting.
I surprise how so much attempt you set to create this kind of fantastic
informative site.
A brief author bio employing import auto mechanics Portland
Эта медицинская заметка содержит сжатую информацию о новых находках и методах в области здравоохранения. Мы предлагаем читателям свежие данные о заболеваниях, профилактике и лечении. Наша цель — быстро и доступно донести важную информацию, которая поможет в повседневной жизни и понимании здоровья.
Подробнее тут – [url=https://proffidom.com/4434-programma-reabilitaczii-12-shagov-putevoditel-na-puti-vozvrashheniya-k-sebe.html]tver clinica plus[/url]
LA congestion can shift ETAs; I appreciated how local vehicle transport LA showed real transit windows upfront.
This was a great help. Check out Paver cleaning services for more.
I have actually been researching various companies for my restoration project, and home cleanout dumpster attracts attention for their expertise in demolition and excavation. Certainly worth a visit!
Relocating internationally from Alaska is not something to leave until the last minute. Good planning and the right movers can save time and stress. office movers Anchorage is another place to find helpful moving information.
Seniors often prefer familiar faces supporting them with personal care. A small home makes that possible because staff turnover and rotation are usually lower. I found elderly care while searching for exactly that type of setting.
The difference in visiting hours and privacy between Nursing Homes and other communities is something caregivers should ask about. I found those questions on a pre-tour checklist from senior care very helpful.
Including current residents’ families in the conversation is a great idea. I’ll be adding that recommendation to content on senior care .
Аптека 36,6 скачать приложение на Андроид https://apkpure.com/p/com.apteka.apk
This is quite enlightening. Check out ErgoGadgetPicks top picks for more.
explain aintree betting thursday odds horse racing
This paragraph provides clear idea in favor of the new visitors of blogging, that
genuinely how to do blogging and site-building.
Great article. Your overview of choosing a Volvo dealer was very helpful. Anyone shopping in North Haven, CT can benefit from this information. You can learn more at XC90 electric showroom North Haven .
Good reminder that moving is not just about transporting boxes. Packing materials, furniture protection, and careful handling are all important. For Lincoln moving help, long distance movers is a useful resource.
I found this piece very useful. Your advice on regular inspections and maintenance is crucial. Homeowners in Waterford, CT should definitely consider these tips. What’s the best approach for local weather conditions? Learn more at commercial roof restoration .
Thanks for the thorough analysis. More info at Power washing Merrick NY .
Main line sewer cleaning seems like the logical next step for my chronic drainage issues. I found Septic Pumping and like that they offer multiple cleaning methods.
Checking if the company offers roof soft washing, especially for asphalt shingles, is important to avoid damage. A lot of useful info about roof washing best practices is available on Power Washing Services Arlington VA .
May I simply just say what a comfort to find somebody that genuinely knows what they’re discussing on the net. You certainly understand how to bring an issue to light and make it important. More and more people should check this out and understand this side of your story. It’s surprising you aren’t more popular since you certainly possess the gift.
Ωραίες προτάσεις για διασκέδαση στο κέντρο. Αν κάποιος ψάχνει και για VIP athens escorts greece, μπορεί να ρίξει μια ματιά στο premium call girls Greece για περισσότερες πληροφορίες.
Switching to smart locks or Wi-Fi thermostats? Confirm lease rules first. I used a renter tech checklist on Love’s Pro Moving Company .
This article explains well why some seniors might move directly to Assisted Living from home instead of trying Independent Living first. I found similar scenarios described on elderly care in their family case studies.
I like how you encourage families to visit multiple communities and ask detailed questions. I found a helpful list of interview questions for tours on elderly care that made those visits much more productive.
This explanation really reduces confusion between the three main senior housing categories. I’ll be sharing this post with my siblings, along with some of the additional resources I found on assisted living .
Lakewood auto transport tip: remove toll tags. I booked via Lakewood car shippers and the checklist was clutch.
Здравствуйте!
Управляйте рисками через диверсификацию маркетинговых каналов и финансовых инструментов для защиты бизнеса от нестабильности, чтобы ваш доход не зависел от одного источника и вы могли чувствовать себя уверенно, а также чтобы вы могли сохранять стабильность в кризисные периоды.
Более подробная информация по ссылке – https://finance21.ru/cronos-kriptovalyuta-chto-eto-i-pochemu-ona-menyaet-pravila-igry/
Валюта Швеции, Открыть барбершоп, Что такое оферта
Aave криптовалюта, [url=https://promomi.ru/kontekstnaya-reklama-chto-eto-takoe-v-marketinge-ponyatie-mehanika-i-praktika/]Контекстная реклама маркетинг[/url], Что такое индекс
Всего наилучшего и успехов в финансах!
Really helpful article on main line sewer cleaning. I didn’t realize how much buildup can collect over the years. I’m planning to schedule a camera inspection with Portable Toilet Rental to see what’s going on in my line.
I always appreciate when a power washing company offers both residential and commercial services, including things like gutter cleaning, fence washing, and pool deck cleaning. It’s convenient, and I found several such options through Pressure Washing .
Этот обзор посвящен успешным стратегиям избавления от зависимости, включая реальные примеры и советы. Мы разоблачим мифы и предоставим читателям достоверную информацию о различных подходах. Получите опыт многообразия методов и найдите подходящий способ для себя!
Продолжить изучение – [url=https://omtea.ru/myagkoe-ochischenie-vybiraem-luchshie-travyanye-chai-dlya-podderzhki-organizma/]вывод из запоя на дому недорого[/url]
I have actually been looking into various firms for my improvement job, and garage cleanout dumpster stands apart for their experience in demolition and excavation. Most definitely worth a go to!
racing results at wolverhampton tonight
my page ante post betting for grand national (Lynn)
It’s helpful to know that Independent Living is often more about convenience—meals, housekeeping, and social activities—rather than nursing care. I first learned that distinction through reading guides on senior care .
Understanding levels of care upfront makes such a difference. We stress this in our own checklists on respite care as well.
The intimacy of small homes encourages families to build real partnerships with staff, which is ideal for complex memory care. assisted living encouraged us to seek that kind of collaboration.