Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In *nix, what causes "sleeping" in top command?

What causes these sleeping processes that I see in top? If I were to call PHP's sleep() function, would that add to the sleeping count I see in top? Are there any disadvantages to having a high number in sleeping?

like image 448
StackOverflowNewbie Avatar asked Oct 04 '10 09:10

StackOverflowNewbie


Video Answer


2 Answers

A process is sleeping when it is blocked, waiting for something. For example, it might have called read() and is waiting on data to arrive from a network stream.

sleep() is indeed one way to have your process sleep for a while. Sleeping is, however, the normal state of all but heavily compute-bound processes - sleeping is essentially what a process does when it isn't doing anything else. It's the normal state of affairs for most of your processes to be sleeping - if that's not the case, it tends to indicate that you need more CPU horsepower.

like image 143
caf Avatar answered Oct 04 '22 03:10

caf


A sleeping process is like suspended process. A process sleeps when:

  1. It's doing an I/O operation (blocking for I/O)
  2. When you order it to sleep by sleep()

The status of any process can be:

  • Ready: when it ready for execution and it's in the queue waiting the processor call with specific priority
  • Sleeping: When it was running and it was blocked for I/O operation or when executing sleep()
  • Running: When the processor executes a process it becomes running.

Status Meaning

  • R Runnable

  • T Stopped

  • P Waiting on Pagein

  • D Waiting on I/O

  • S Sleeping < 20 seconds

  • I Idle - sleeping >20 seconds

  • Z Zombie or defunct

like image 33
Aboelnour Avatar answered Oct 04 '22 03:10

Aboelnour