Infinistream socket table: Difference between revisions
No edit summary |
No edit summary |
||
Line 29: | Line 29: | ||
</pre> | </pre> | ||
| Three parameters can be adjusted: | ||
#age interval | |||
#table size | |||
#tran_count | |||
The default value for age interval is 180 seconds. Reduce the ageout interval in the skt tables (from localconsole CLI) - since DNS transactions should be completed very quickly, having an 180-second limit is well beyond the range of what would be considered a "timeout", so having the "ageout" limit of 180-seconds means we store too many entries that should expire from this table. Reducing this ageout value means the table will be cleared faster to allow for more/newer entries to be created. | |||
<pre>%set skt 12 age_interval 30 | |||
</pre> | |||
| |
Revision as of 15:22, 25 January 2023
Summary
In situations that the summary pane of a monitor show data, but drilling down towards the session pane results in "No data available" you might run into overloaded database tables. This article shows how to verify if the Infinistream is suffering from this problem.
Procedure
Verification
Log into the Infinistream and launch a localconsole session:
# isbin # ./localconsole
Now, enter command-line mode by typing 11 and proceed with the following command:
% get dump tables
Search for the lines skt_trans and skt_table. The last column of these lines show if drops were seen.
Altering the table configuration
Check the configuration of the socket table:
% get skt
Three parameters can be adjusted:
- age interval
- table size
- tran_count
The default value for age interval is 180 seconds. Reduce the ageout interval in the skt tables (from localconsole CLI) - since DNS transactions should be completed very quickly, having an 180-second limit is well beyond the range of what would be considered a "timeout", so having the "ageout" limit of 180-seconds means we store too many entries that should expire from this table. Reducing this ageout value means the table will be cleared faster to allow for more/newer entries to be created.
%set skt 12 age_interval 30