Purpose
The V$OB_RPC_OUTGOING view displays the data sending status of all RPC packet codes on the current OBServer node of the current tenant.
Note
This view is introduced since OceanBase Database V4.0.0.
Related tables/views
GV$OB_RPC_OUTGOING
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| TENANT_ID | bigint(20) | NO | The ID of the tenant. |
| SVR_IP | varchar(46) | NO | The IP address of the OBServer node. |
| SVR_PORT | bigint(20) | NO | The port number of the OBServer node. |
| PCODE | bigint(20) | NO | The RPC packet code. |
| PCODE_NAME | varchar(256) | NO | The name of the RPC packet code. |
| COUNT | bigint(20) | NO | The number of times the RPC packet code has been used. |
| TOTAL_TIME | bigint(20) | NO | The total amount of time consumed. |
| TOTAL_SIZE | bigint(20) | NO | The total amount of data sent. |
| FAILURE | bigint(20) | NO | The number of RPC request transmission failures. |
| TIMEOUT | bigint(20) | NO | The number of RPC request transmission timeouts. |
| SYNC | bigint(20) | NO | The number of synchronous RPCs. |
| ASYNC | bigint(20) | NO | The number of asynchronous RPCs. |
| LAST_TIMESTAMP | timestamp(6) | NO | The timestamp of the last statistics update. |