Administrator
|
In Solaris, there are 2 types of swap usage.
1)Physical -- when you have no space left, your programs will not fail, but you will probably see a performance degradation.
2)Virtual - when you have no space left, your malloc() calls may fail, so your programs may start to fail.
I m not a soalris expert, but what I can tell you is, you need to ensure that neither of these swap space is exhausted.
You may want to look the book named -> Solaris Internals: Core Kernel Components , Authors: Jim Mauro, Richard McDougall
|