GCSTATS parameter: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 13: Line 13:
</dl>
</dl>
==Description==
==Description==
This bitmask parameter controls the reporting of [[Janus SOAP ULI]]
This bitmask parameter controls the reporting of <var class="product">[[Janus SOAP User Language Interface|Janus SOAP ULI]]</var>
garbage collection statistics.
garbage collection statistics.
The statistics, provided in an MSIR error message,
The statistics, provided in an <var>MSIR</var> error message,
include the number of objects discarded by the
include the number of objects discarded by the
garbage collection process and the amount of time taken.
garbage collection process and the amount of time taken.


These are the GCSTATS bit settings:
These are the <var>GCSTATS</var> bit settings:
<dl>
<dl>
<dt>X'00'
<dt>X'00'
Line 33: Line 33:
the discarding of 10001 of the 10002 objects still occupying system resources
the discarding of 10001 of the 10002 objects still occupying system resources
for this thread and session after this request's normal cleanup:
for this thread and session after this request's normal cleanup:
<p class="code">
<p class="code">&#42;**  MSIR.0995: (explicit) Garbage collection completed in
    ***  MSIR.0995: (explicit) Garbage collection completed in
16ms realtime with 16ms CPU time. Discarded 10001/10002
    16ms realtime with 16ms CPU time. Discarded 10001/10002
objects.
    objects.
</p>
</p>


The ''''(explicit)'''' tag in the message above signifies that garbage
The <code>(explicit)</code> tag in the message above signifies that garbage
collection was initiated explicitly by a %(object):GarbageCollect call.
collection was initiated explicitly by a <code>%(object):GarbageCollect</code> call.
An ''''(implicit)'''' tag displays if the garbage collection
An <code>(implicit)</code> tag displays if the garbage collection
is invoked for a user by the system because more than the [[AUTOGCN parameter]] threshold number of "orphaned" objects remained after the request's normal object cleanup.
is invoked for a user by the system because more than the <var>[[AUTOGCN parameter]]</var> threshold number of "orphaned" objects remained after the request's normal object cleanup.


For more information about garbage collection, see [[Global and session objects#Cleanup by garbage collection|"Cleanup by garbage collection"]].
For more information about garbage collection, see [[Global and session objects#Cleanup by garbage collection|"Cleanup by garbage collection"]].

Revision as of 19:28, 13 March 2012

Summary

Default value
X'00'
Parameter type
User
Where set
User resettable
Related products
Janus SOAP
Introduced
Sirius Mods 7.5

Description

This bitmask parameter controls the reporting of Janus SOAP ULI garbage collection statistics. The statistics, provided in an MSIR error message, include the number of objects discarded by the garbage collection process and the amount of time taken.

These are the GCSTATS bit settings:

X'00'
Do not send garbage collection statistics. This is the default.
X'01'
Send statistics to the audit trail.
X'03'
Send statistics to the audit trail and to the terminal.

The message that is sent is similar to the following, which reports the discarding of 10001 of the 10002 objects still occupying system resources for this thread and session after this request's normal cleanup:

*** MSIR.0995: (explicit) Garbage collection completed in 16ms realtime with 16ms CPU time. Discarded 10001/10002 objects.

The (explicit) tag in the message above signifies that garbage collection was initiated explicitly by a %(object):GarbageCollect call. An (implicit) tag displays if the garbage collection is invoked for a user by the system because more than the AUTOGCN parameter threshold number of "orphaned" objects remained after the request's normal object cleanup.

For more information about garbage collection, see "Cleanup by garbage collection".