CONFIG LIST - Teradata Unity

Teradata Unity User Guide

Product
Teradata Unity
Release Number
16.10
Published
January 2018
Language
English (United States)
Last Update
2018-03-29
dita:mapPath
anz1496162519675.ditamap
dita:ditavalPath
ft:empty
dita:id
B035-2520
lifecycle
previous
Product Category
Analytical Ecosystem

Purpose

Lists all configuration parameters of a process type or specific registered process.

Syntax

CONFIG LIST [process type | process id] [KEY key1 [key2,[...]]][USER | FULL];

Parameters

FULL | USER
Displays the full hierarchy of values: global default values, global user values, process type default values, process type user values, and process id user values.
Displays only user-set values (Unity system default values do not display).
processid
Identifier assigned to a specific process.
process type
If specified, displays configuration options for a specified Unity process type:
  • Endpoint
  • Dispatcher
  • Sequencer
  • Watchdog
KEY
Identifies configuration keys.

Usage Considerations

Use the PROCESS STATUS command to list all processes registered with Unity.

Examples

Demonstrates listing specific process configuration options for a dispatcher process with the id dispatcher-1.

unityadmin>  CONFIG LIST dispatcher-1; 
dispatcher-1
------------
Tdpid = system1
Region = toronto
AccessMode = read-write
LogErrorsize = 50
LogPath = /opt/Teradata Unity/dispatcherlogs
...

Demonstrates using the FULL parameter to list the hierarchy of values for a dispatcher process with the id dispatcher-1.

unityadmin>  CONFIG LIST dispatcher-1 FULL; 
Global Default Values
---------------------
LogErrorSize = 10
LogPath = /opt/Teradata Unity/logs
....
Global User Set Values
----------------------
AccessMode = read-write
Dispatcher User Set Values
--------------------------
LogPath = /opt/Teradata Unity/dispatcherlogs
dispatcher-1
------------
Tdpid = system1
Region = toronto
AccessMode = read-write
LogErrorsize = 50
LogPath = /opt/Teradata Unity/dispatcherlogs
...

Demonstrates using the USER parameter to list user-set values for a dispatcher process with the id dispatcher-1.

unityadmin>  CONFIG LIST dispatcher-1 USER; 
dispatcher-1
------------
Tdpid = system1
Region = toronto

Demonstrates listing specific process configuration options for the Endpoint process type.

unityadmin>  CONFIG LIST Endpoint; 
Endpoint 'toronto_ept'
----------------------------
HAFailoverMode: manual
EndpointDefaultPort: 1025
RecoveryTableName: unitymanagement.txntable
BlockedSessionThreshold_5: 120:20:40
RecoveryLogThreshold: 60:80
EndpointAddresses: any
ReadOverrideCport: 6001
SpaceUsageThreshold: 60:80
PacketTraceEnabled: 0
ProcessPingTimeout: 30
BlockedSessionThreshold_1: 10:60:100
BlockedSessionThreshold_2: 20:50:80
BlockedSessionThreshold_3: 30:40:60
BlockedSessionThreshold_4: 60:30:50
HashFuncDBC: 5
DictionaryAllowUnknownFunctions: false

Lists the hierarchy of values for the Endpoint process type.

unityadmin>  CONFIG LIST Endpoint FULL; 
System Set Globals
-------------------

HAFailoverMode: manual
RecoveryTableName: unitymanagement.txntable
BlockedSessionThreshold_5: 120:20:40
RecoveryLogThreshold: 60:80
SpaceUsageThreshold: 60:80
PacketTraceEnabled: 0
ProcessPingTimeout: 30
BlockedSessionThreshold_1: 10:60:100
BlockedSessionThreshold_2: 20:50:80
BlockedSessionThreshold_3: 30:40:60
BlockedSessionThreshold_4: 60:30:50
HashFuncDBC: 5
DictionaryAllowUnknownFunctions: false

System Set for Endpoint
-----------------------------

EndpointDefaultPort: 1025
EndpointAddresses: any
ReadOverrideCport: 6001

Lists values for the keys AutoSelectOnDatabaseScan and LoadNumSessions.

unityadmin> config list dispatcher key AutoSelectOnDatabaseScan, LoadNumSessions full;
System Set Globals
-------------------
AutoSelectOnDatabaseScan: false
LoadNumSessions: 16

User Set Globals
-----------------
LoadNumSessions: 20

Lists dispatcher processes where the LoadNumSessions value changed and are awaiting restart.

unityadmin> config list dispatcher key LoadNumSessions full;
System Set Globals
-------------------
LoadNumSessions: 16

User Set Globals
-----------------
LoadNumSessions: change requires restart
------------------------------------------
region1_dsp_jasonu2       current value: 20, after restart: 21
region1_dsp_jasonu4       current value: 20, after restart: 21
region2_dsp_jasonu4       current value: 20, after restart: 21
region2_dsp_jasonu2       current value: 20, after restart: 21
------------------------------------------