Sponsored Content
Full Discussion: Is nice command a myth?
Top Forums UNIX for Advanced & Expert Users Is nice command a myth? Post 302333836 by otheus on Tuesday 14th of July 2009 07:10:14 AM
Old 07-14-2009
Quote:
that the operating system corrects the priorities as the processes need cpu
Actually, this is true, but nice priorities still come into play. The longer a process has been running and consuming CPU resources, the lower a priority it gets. The more time it's been in the run queue without having had a chance to execute, the higher priority it gets. These mechanisms are meant to ensure fairness and reduce "starvation". Nice affects starting priorities, and only after a very long runtime, will the nice level for a particular process become irrelevant.

At any rate, task scheduling is OS-dependent. The Linux 2.6 kernel uses something called the Completely Fair Scheduler. From the author, this quote might be relevant:
Quote:
the CFS scheduler has a much stronger handling of nice levels and SCHED_BATCH: both types of workloads should be isolated much more agressively than under the vanilla [ie, than the standard Linux scheduler] scheduler.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

nice (user command)

Can someone tell me .. how to find a user & process who has executed nice (scheduled priority) to one of his process. .Tks.. (5 Replies)
Discussion started by: sivan
5 Replies

2. UNIX for Advanced & Expert Users

process nice level command line vs cron

Under, Solaris 10 I have the following problem: A script executed at command line runs with nice level 0, as expected. Same script started under (user) crontab runs with nice level 2. I would prefer it run at 0. Is this possible? If so, how? Thanks. (0 Replies)
Discussion started by: henrydark
0 Replies

3. UNIX for Dummies Questions & Answers

is ‘nice’ command useful on a multi-CPU UNIX system?

Can someone tell me this. thanks (1 Reply)
Discussion started by: xoxouu
1 Replies

4. Programming

nice command and nice() system call

Hi I want to implement the nice command in the shell that I am building. I came to know that there is a corresponding nice() system call for the same. But since I will be forking different processes to run different commands typed on the command prompt, is there any way I can make a command... (2 Replies)
Discussion started by: tejbuch
2 Replies

5. UNIX for Dummies Questions & Answers

The nice command

hello everybody: I have some job running on tru64 system and Im the root, due to limited resources I end up with my job ( vdump) for example taking the lowest share, I researched the nice command on the net, but couldnt get enough info, can I use it to already running process or I only use it... (1 Reply)
Discussion started by: aladdin
1 Replies

6. Shell Programming and Scripting

Call Nice command (priority) from /bin/ksh

Hello, I am just starting with shell scripting, as everyone will soon see from my question. What I'm trying to do is call the Nice command to set the script process priority from /bin/ksh. The difference is I'm running it not directly through the shell, but through Bigfix (very similar to... (3 Replies)
Discussion started by: solly119
3 Replies

7. Shell Programming and Scripting

How to use nice command?

Dear Friends, I have a directory when i take du of that directory it takes alot of memory and cpu and I/O, i want to use nice to run my script that have du command slowly so it won't take I/O and cpu, please suggest. (6 Replies)
Discussion started by: learnbash
6 Replies

8. BSD

Very high nice percentage in top command

Hello Folks, Recently our FreeBSD 7.1 i386 system became very sluggish. Nothing much is happening over there & whatever is running takes eternity to complete. All the troubleshooting hinted towards a very high nice percentage. Can that be the culprit? Pasting snippets of top command,... (7 Replies)
Discussion started by: vibhor_agarwali
7 Replies

9. Shell Programming and Scripting

Wall command with nice text formatting

with using wall command, how can i have a carriage return in my broadcast message. i try to broadcast from a file, i were to use "cat myfile | wall" for broadcasting. but when the message broadcast somehow the format run away. this the text in my file: line 1 line 2 line 3 when broadcast ... (3 Replies)
Discussion started by: lsy
3 Replies
IOPRIO_SET(2)						     Linux Programmer's Manual						     IOPRIO_SET(2)

NAME
ioprio_get, ioprio_set - get/set I/O scheduling class and priority SYNOPSIS
int ioprio_get(int which, int who); int ioprio_set(int which, int who, int ioprio); Note: There are no glibc wrappers for these system calls; see NOTES. DESCRIPTION
The ioprio_get() and ioprio_set() system calls respectively get and set the I/O scheduling class and priority of one or more threads. The which and who arguments identify the thread(s) on which the system calls operate. The which argument determines how who is inter- preted, and has one of the following values: IOPRIO_WHO_PROCESS who is a process ID or thread ID identifying a single process or thread. If who is 0, then operate on the calling thread. IOPRIO_WHO_PGRP who is a process group ID identifying all the members of a process group. If who is 0, then operate on the process group of which the caller is a member. IOPRIO_WHO_USER who is a user ID identifying all of the processes that have a matching real UID. If which is specified as IOPRIO_WHO_PGRP or IOPRIO_WHO_USER when calling ioprio_get(), and more than one process matches who, then the returned priority will be the highest one found among all of the matching processes. One priority is said to be higher than another one if it belongs to a higher priority class (IOPRIO_CLASS_RT is the highest priority class; IOPRIO_CLASS_IDLE is the lowest) or if it belongs to the same priority class as the other process but has a higher priority level (a lower priority number means a higher priority level). The ioprio argument given to ioprio_set() is a bit mask that specifies both the scheduling class and the priority to be assigned to the target process(es). The following macros are used for assembling and dissecting ioprio values: IOPRIO_PRIO_VALUE(class, data) Given a scheduling class and priority (data), this macro combines the two values to produce an ioprio value, which is returned as the result of the macro. IOPRIO_PRIO_CLASS(mask) Given mask (an ioprio value), this macro returns its I/O class component, that is, one of the values IOPRIO_CLASS_RT, IOPRIO_CLASS_BE, or IOPRIO_CLASS_IDLE. IOPRIO_PRIO_DATA(mask) Given mask (an ioprio value), this macro returns its priority (data) component. See the NOTES section for more information on scheduling classes and priorities. I/O priorities are supported for reads and for synchronous (O_DIRECT, O_SYNC) writes. I/O priorities are not supported for asynchronous writes because they are issued outside the context of the program dirtying the memory, and thus program-specific priorities do not apply. RETURN VALUE
On success, ioprio_get() returns the ioprio value of the process with highest I/O priority of any of the processes that match the criteria specified in which and who. On error, -1 is returned, and errno is set to indicate the error. On success, ioprio_set() returns 0. On error, -1 is returned, and errno is set to indicate the error. ERRORS
EINVAL Invalid value for which or ioprio. Refer to the NOTES section for available scheduler classes and priority levels for ioprio. EPERM The calling process does not have the privilege needed to assign this ioprio to the specified process(es). See the NOTES section for more information on required privileges for ioprio_set(). ESRCH No process(es) could be found that matched the specification in which and who. VERSIONS
These system calls have been available on Linux since kernel 2.6.13. CONFORMING TO
These system calls are Linux-specific. NOTES
Glibc does not provide a wrapper for these system calls; call them using syscall(2). Two or more processes or threads can share an I/O context. This will be the case when clone(2) was called with the CLONE_IO flag. How- ever, by default, the distinct threads of a process will not share the same I/O context. This means that if you want to change the I/O priority of all threads in a process, you may need to call ioprio_set() on each of the threads. The thread ID that you would need for this operation is the one that is returned by gettid(2) or clone(2). These system calls have an effect only when used in conjunction with an I/O scheduler that supports I/O priorities. As at kernel 2.6.17 the only such scheduler is the Completely Fair Queuing (CFQ) I/O scheduler. Selecting an I/O scheduler I/O Schedulers are selected on a per-device basis via the special file /sys/block/<device>/queue/scheduler. One can view the current I/O scheduler via the /sys file system. For example, the following command displays a list of all schedulers cur- rently loaded in the kernel: $ cat /sys/block/hda/queue/scheduler noop anticipatory deadline [cfq] The scheduler surrounded by brackets is the one actually in use for the device (hda in the example). Setting another scheduler is done by writing the name of the new scheduler to this file. For example, the following command will set the scheduler for the hda device to cfq: $ su Password: # echo cfq > /sys/block/hda/queue/scheduler The Completely Fair Queuing (CFQ) I/O scheduler Since v3 (aka CFQ Time Sliced) CFQ implements I/O nice levels similar to those of CPU scheduling. These nice levels are grouped in three scheduling classes each one containing one or more priority levels: IOPRIO_CLASS_RT (1) This is the real-time I/O class. This scheduling class is given higher priority than any other class: processes from this class are given first access to the disk every time. Thus this I/O class needs to be used with some care: one I/O real-time process can starve the entire system. Within the real-time class, there are 8 levels of class data (priority) that determine exactly how much time this process needs the disk for on each service. The highest real-time priority level is 0; the lowest is 7. In the future this might change to be more directly mappable to performance, by passing in a desired data rate instead. IOPRIO_CLASS_BE (2) This is the best-effort scheduling class, which is the default for any process that hasn't set a specific I/O priority. The class data (priority) determines how much I/O bandwidth the process will get. Best-effort priority levels are analogous to CPU nice val- ues (see getpriority(2)). The priority level determines a priority relative to other processes in the best-effort scheduling class. Priority levels range from 0 (highest) to 7 (lowest). IOPRIO_CLASS_IDLE (3) This is the idle scheduling class. Processes running at this level only get I/O time when no-one else needs the disk. The idle class has no class data. Attention is required when assigning this priority class to a process, since it may become starved if higher priority processes are constantly accessing the disk. Refer to Documentation/block/ioprio.txt for more information on the CFQ I/O Scheduler and an example program. Required permissions to set I/O priorities Permission to change a process's priority is granted or denied based on two assertions: Process ownership An unprivileged process may set only the I/O priority of a process whose real UID matches the real or effective UID of the calling process. A process which has the CAP_SYS_NICE capability can change the priority of any process. What is the desired priority Attempts to set very high priorities (IOPRIO_CLASS_RT) require the CAP_SYS_ADMIN capability. Kernel versions up to 2.6.24 also required CAP_SYS_ADMIN to set a very low priority (IOPRIO_CLASS_IDLE), but since Linux 2.6.25, this is no longer required. A call to ioprio_set() must follow both rules, or the call will fail with the error EPERM. BUGS
Glibc does not yet provide a suitable header file defining the function prototypes and macros described on this page. Suitable definitions can be found in linux/ioprio.h. SEE ALSO
ionice(1), getpriority(2), open(2), capabilities(7) Documentation/block/ioprio.txt in the Linux kernel source tree COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2013-02-12 IOPRIO_SET(2)
All times are GMT -4. The time now is 01:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy