Operating System - HP-UX
1835388 Members
2952 Online
110078 Solutions
New Discussion

Relevance of expression column in 'kctune' output

 
scoolj
Advisor

Relevance of expression column in 'kctune' output


Pls refer the below 2 examples. One was set with Dedfault expression, another with an absolute value.

maxdsiz_64bit 4294967296 Default Immed
maxdsiz_64bit 4294967296 4294967296 Immed

man saus...If the tunable value is set to default, then the expression is too set as Default. When the expression is default, the system will choose the tunable value.

I would like to understand the difference between default expression and absolute expression, and how it matter and impact the memory availability on the OS?
Believe only what you see !
3 REPLIES 3
Sandeep_Chaudhary
Trusted Contributor

Re: Relevance of expression column in 'kctune' output

suxde033 # kctune|more
Tunable Value Expression Changes
NSTREVENT 50 Default
NSTRPUSH 16 Default
NSTRSCHED 0 Default
STRCTLSZ 1024 Default
STRMSGSZ 0 Default
acctresume 4 Default
acctsuspend 2 Default
aio_listio_max 256 Default Immed
aio_max_ops 2048 Default Immed
aio_monitor_run_sec 30 Default Immed
aio_physmem_pct 10 Default




When a tunable is set to Default, its value is controlled by the HP-UX
kernel, and will be changed whenever the default value for the tunable
is re-computed. (Specific behavior of each tunable is described in
each tunable's man page.) HP recommends that all tunables be set to
Default unless the default value is known to be unsatisfactory.

Setting a tunable to its default value is not the same as setting it
to Default. If the current default value of a tunable example is
4000,

kctune example=4000

will set the tunable's value to 4000 and prevent it from changing when
the default value is re-computed.

kctune example=Default

Steven E. Protter
Exalted Contributor

Re: Relevance of expression column in 'kctune' output

Shalom,

Default in this context as I understand it is the value that the HP-UX installation defaults to. That does not mean it can not be tuned.

In your example there is no impact on the system at all.

The default tag has been removed from the second entry. The amount of memory available is exactly the same.

Nothing really to worry about.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
scoolj
Advisor

Re: Relevance of expression column in 'kctune' output

Thanks.
Believe only what you see !