Purpose
This view displays the latch information of all OBServer nodes in the cluster.
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
| CON_ID | bigint(20) | NO | The tenant ID. |
| SVR_IP | varchar(46) | NO | The IP address. |
| SVR_PORT | bigint(20) | NO | The port number. |
| ADDR | varchar(256) | NO | Currently NULL. |
| LATCH# | bigint(20) | NO | The index of the latch class. |
| LEVEL# | bigint(20) | NO | The index of the latch level. |
| NAME | varchar(256) | NO | The name of the latch. |
| HASH | bigint(20) | NO | The value is currently 0. |
| GETS | bigint(20) | NO | The number of successful lock operations. |
| MISSES | bigint(20) | NO | The number of times a lock operation entered a waiting state. |
| SLEEPS | bigint(20) | NO | The total number of yields. |
| IMMEDIATE_GETS | bigint(20) | NO | The number of successful try_lock operations. |
| IMMEDIATE_MISSES | bigint(20) | NO | The number of failed try_lock operations. |
| SPIN_GETS | bigint(20) | NO | The total number of spins. |
| WAIT_TIME | bigint(20) | NO | The total waiting time for sleep. |