This single operational view API aggregates node availability data across VantageCloud Lake clusters.
Syntax
REPLACE FUNCTION SYSLIB.MonitorPhysicalConfigSV (
) RETURNS TABLE (
ProcId INTEGER,
Status CHAR CHARACTER SET LATIN,
CPUType VARCHAR(7) CHARACTER SET LATIN,
CPUCount SMALLINT,
SystemType VARCHAR(7) CHARACTER SET LATIN,
CliqueNo SMALLINT,
NetAUp CHAR(1) CHARACTER SET LATIN,
NetBUp CHAR(1) CHARACTER SET LATIN,
PhyMemory INTEGER,
Type VARCHAR,
Id VARCHAR,
Name VARCHAR,
Group VARCHAR
)
...
;
Syntax Elements
- ProcId
- ID associated with a node.
- Status
- Status of the node associated with this record:
- U = Up/online
- D = Down/offline
- S = Standby
- CPUType
- Type of CPU installed in this node, for example: 'Pentium', 'PentPro', or 'Unknown'.
- CPUCount
- Number of CPUs in this node.
- SystemType
- Type of system running the database software, such as 5650, 6700, or 'Other'.
- CliqueNo
- Clique number of the node.
- NetAUp
- NetBUp
- Status of the BYNETs (if there are more than two, the first two) on a system-wide basis:
- U = All node BYNETs are up/online.
- D = One or more node BYNETs is down/offline.
- "" = A temporary condition where the BYNET data is not available.
- PhyMemory
- Size of the physical memory of the node in MBs.
- Type
- Only available in the detailed view. Identifies the group type (compute cluster or primary cluster).
- Id
- Only available in the detailed view. Provides the TOS identifier the of the group (useful to identify compute clusters).
- Name
- Only available in the detailed view. Provides the name of the compute cluster.
- Group
- Only available in the detailed view. Provides the name of the compute group.