I want to increase the I/O priority of a process, both answers for .NET and windows vista would be nice... (or processexplorer is ok as well)
|
feedback
|
|
The relevant information seems to be a bit scattered compared to the usual MS documentation. There is this white paper that discusses I/O Prioritization in windows. This doc seems to have beta flags all over it but I guess it's probably mostly pretty accurate. Two important things to note:
The useful APIs for client applications are SetFileInformationByHandle:
SetThreadPriority which is similar:
For .Net do the usual stuff with P/Invoke. | |||||
feedback
|
|
It looks like the "real" way to set the IO priority of a process is using I believe the
The values above are a best-guess based on what I can tell from the debugger; the task scheduler seems to use a value of 1 for tasks with priority 7, and a value of 2 for tasks with priority 5 (see this question and this MSDN article for more on task scheduler priorities). Calling I have unfortunately not found any public API that can be used for this, other than the Edit: I've written a utility that can be used to query or set the IO prority of a process, available here. | ||||
|
feedback
|
|
The proper answer was eluded to above, but I will repeat in case it is useful. Utilizing NT native APIs you can set the I/O priority. I documented it here, but did not include code examples as we all know they get ripped verbatim. http://www.bitsum.com/pl_io_priority.php The API you want is the NT Native API NtSetInformationProcess. Using this API you can change the I/O priority. This API accepts a 'class' variable telling it what type of information about the process you want to change, that class variable must be set to ProcessIoPriority. You can then set the entire process's I/O priority in this manner. Similarly, the I/O priority can be retrieved via NtQueryInformationProcess. The bad news is that the priority levels are a bit limited. Critical is reserved for system paging operations. That leaves you with Normal and 'Very Low' (Idle). Low and High may or may not be implemented in newer editions of Windows. There seems to be partial support, at the very least. If you have no experience with the NT Native APIs, the first thing to do is understand them. Once you do, you'll see it is as simple as a single API call. Source: Author of Process Lasso, a process priority optimization utility that supports I/O priorities of NT6+. | ||||
|
feedback
|
|
Just an update for this - it can all be done via .NET without resorting to WinAPI ...
I've tried the above setting the process priority in a WPF application and it works fine. Haven't needed to set thread priority. EDIT: this above relates to CPU priority of a process, as opposed to I/O priority, however there may be some correlation / connection between a process's CPU priority and its I/O priority. | |||||||
feedback
|