Note
- This view is available starting with V4.3.1 in V4.3.x.
- This view is available starting with V4.2.4 in V4.2.x.
Purpose
The GV$OB_TENANT_RESOURCE_LIMIT_DETAIL view displays the resource limits and the upper limits of each type of limit for the current tenant on all OBServer nodes.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| SVR_IP | VARCHAR2(46) | NO | The IP address of the OBServer node. |
| SVR_PORT | NUMBER(38) | NO | The RPC port of the OBServer node. |
| TENANT_ID | NUMBER(38) | NO | The tenant ID. |
| RESOURCE_NAME | VARCHAR2(128) | NO | The name of the resource. |
| LIMIT_TYPE | VARCHAR2(128) | NO | The name of the limit. |
| LIMIT_VALUE | NUMBER(38) | NO | The value of the limit. |
Sample query
Query the resource limits and the upper limits of each type of limit for the current tenant on all OBServer nodes.
obclient[SYS]> SELECT * FROM SYS.GV$OB_TENANT_RESOURCE_LIMIT_DETAIL WHERE ROWNUM = 5;
The query result is as follows:
+----------------+----------+-----------+---------------+---------------+---------------------+
| SVR_IP | SVR_PORT | TENANT_ID | RESOURCE_NAME | LIMIT_TYPE | LIMIT_VALUE |
+----------------+----------+-----------+---------------+---------------+---------------------+
| xx.xx.xx.xx | 2882 | 1002 | ls | configuration | 90 |
| xx.xx.xx.xx | 2882 | 1002 | ls | memstore | 9223372036854775807 |
| xx.xx.xx.xx | 2882 | 1002 | ls | memory | 8 |
| xx.xx.xx.xx | 2882 | 1002 | ls | data_disk | 9223372036854775807 |
| xx.xx.xx.xx | 2882 | 1002 | ls | clog_disk | 27 |
+----------------+----------+-----------+---------------+---------------+---------------------+
5 rows in set