Note
This view is available starting with V4.1.0.
Purpose
This view displays the arbitration service tasks running in the current tenant.
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
| CREATE_TIME | TIMESTAMP(6) | NO | The time when the task is generated. |
| MODIFY_TIME | TIMESTAMP(6) | NO | The time when the task is modified. |
| TENANT_ID | NUMBER(38) | NO | The tenant ID. |
| LS_ID | NUMBER(38) | NO | The log stream ID. |
| TASK_ID | NUMBER(38) | NO | The task ID. |
| TRACE_ID | VARCHAR2(200) | NO | The trace ID of the task in the log. |
| TASK_TYPE | VARCHAR2(32) | NO | The task type. Valid values:
|
| ARBITRATION_SERVICE | VARCHAR2(512) | NO | The address of the arbitration service. |
| ARBITRATION_SERVICE_TYPE | VARCHAR2(64) | NO | The type of the arbitration service. Only ADDR is supported. |
| COMMENT | VARCHAR2(2048) | YES | The task description. |
Sample query
Query the arbitration service tasks running in the current tenant.
obclient [SYS]> SELECT * FROM SYS.DBA_OB_LS_ARB_REPLICA_TASKS;
The query result is as follows:
+---------------------+---------------------+-----------+-------+------------------+-----------------------------------+----------------+---------------------+--------------------------+--------------------------------------------+
| CREATE_TIME | MODIFY_TIME | TENANT_ID | LS_ID | TASK_ID | TRACE_ID | TASK_TYPE | ARBITRATION_SERVICE | ARBITRATION_SERVICE_TYPE | COMMENT |
+---------------------+---------------------+-----------+-------+------------------+-----------------------------------+----------------+---------------------+--------------------------+--------------------------------------------+
| 2025-05-09 14:08:27 | 2025-05-09 14:08:27 | 1004 | 1 | 1746770907292794 | YB42AC1E87CF-0006349B6011A19A-0-0 | REMOVE REPLICA | 172.xx.xxx.xxx:2882 | ADDR | remove arbitration replica service replica |
| 2025-05-09 14:08:27 | 2025-05-09 14:08:27 | 1004 | 1001 | 1746770907363876 | YB42AC1E87CF-0006349B6011A19A-0-0 | REMOVE REPLICA | 172.xx.xxx.xxx:2882 | ADDR | remove arbitration replica service replica |
+---------------------+---------------------+-----------+-------+------------------+-----------------------------------+----------------+---------------------+--------------------------+--------------------------------------------+
2 rows in set