Load avrage in AWR

classic Classic list List threaded Threaded
4 messages Options
big
Reply | Threaded
Open this post in threaded view
|

Load avrage in AWR

big
Hi,
On 11.2.0.4
In AWR I see:



What is the unity of load avrage?

Thank you Erman.
Reply | Threaded
Open this post in threaded view
|

Re: Load avrage in AWR

ErmanArslansOracleBlog
Administrator
It is the OS(Linux/Unix) load average basically.

The load average is calculated as the average number of runnable or running tasks (R state), and the number of tasks in uninterruptible sleep (D state) over the specified interval. You can read the man pages of Linux to get more details.

It s a value calculated by measuring the OS and doing some math.. It basically tries to tell you how loaded your system is.
big
Reply | Threaded
Open this post in threaded view
|

Re: Load avrage in AWR

big
Thanks.
"running tasks" are running processes?

Regards.
Reply | Threaded
Open this post in threaded view
|

Re: Load avrage in AWR

ErmanArslansOracleBlog
Administrator
They are tasks.. They are closely related with the processes but they are not the same. They are basically, a set of instructions loaded into the memory. Cpu executes them.. So they are closely related but they are more fundemental.. So, generally speaking, there is a strong and positive corelation between task and process count. However; there are cases where you see one heavy process runs parallel threads, each doing some tasks concurrently and that increases the load average dramatically.. So I guess you understand the concept.