Note
This view is introduced since OceanBase Database V4.0.0.
Purpose
The V$OB_COMPACTION_PROGRESS view displays the compaction progress on the current OBServer node of the current tenant.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| SVR_IP | varchar(46) | NO | The IP address of the OBServer node. |
| SVR_PORT | bigint(20) | NO | The port number of the OBServer node. |
| TENANT_ID | bigint(20) | NO | The ID of the tenant. |
| TYPE | varchar(64) | NO | The compaction type. Valid values:
|
| ZONE | varchar(128) | NO | The zone. |
| COMPACTION_SCN | bigint(20) unsigned | NO | The major compaction version. |
| STATUS | varchar(10) | NO | The status information. |
| TOTAL_TABLET_CNT | bigint(20) | NO | The total number of tablets. |
| UNFINISHED_TABLET_CNT | bigint(20) | NO | The number of unfinished tablets. |
| DATA_SIZE | bigint(20) | NO | The total amount of data to scan, in bytes. |
| UNFINISHED_DATA_SIZE | bigint(20) | NO | The remaining amount of data to scan, in bytes. |
| COMPRESSION_RATIO | bigint(20) | NO | The compression ratio of the data that is written since the last major compaction version. |
| START_TIME | timestamp(6) | NO | The start time. |
| ESTIMATED_FINISH_TIME | timestamp(6) | NO | The estimated completion time. |
| NO | If COMPACTION_PROGRESS is displayed as 100, the compaction end time is displayed. |
||
| COMMENTS | varchar(1024) | NO | The comments. When the major compaction is in progress, the latest compaction event is recorded. If the major compaction has ended, the total time consumed is recorded. |
Sample query
View the major compaction progress of the current user tenant in the current OBServer node.
obclient [oceanbase]> SELECT * FROM oceanbase.V$OB_COMPACTION_PROGRESS;
The query result is as follows:
+----------------+----------+-----------+-------------+-------+---------------------+--------+--------------------+-------------------------+-----------+----------------------+-------------------+----------------------------+----------------------------+----------------+
| SVR_IP | SVR_PORT | TENANT_ID | TYPE | ZONE | COMPACTION_SCN | STATUS | TOTAL_TABLET_COUNT | UNFINISHED_TABLET_COUNT | DATA_SIZE | UNFINISHED_DATA_SIZE | COMPRESSION_RATIO | START_TIME | ESTIMATED_FINISH_TIME | COMMENTS |
+----------------+----------+-----------+-------------+-------+---------------------+--------+--------------------+-------------------------+-----------+----------------------+-------------------+----------------------------+----------------------------+----------------+
| 172.xx.xxx.xxx | 2882 | 1002 | MAJOR_MERGE | zone1 | 1735668000499972000 | FINISH | 3 | 0 | 0 | 0 | 1 | 2025-01-01 02:00:02.047807 | 2025-01-01 02:03:28.380519 | total=14.70ms; |
| 172.xx.xxx.xxx | 2882 | 1002 | MAJOR_MERGE | zone1 | 1735754402003130000 | FINISH | 3 | 0 | 0 | 0 | 1 | 2025-01-02 02:00:04.119302 | 2025-01-02 02:03:31.626016 | total=9.92ms; |
+----------------+----------+-----------+-------------+-------+---------------------+--------+--------------------+-------------------------+-----------+----------------------+-------------------+----------------------------+----------------------------+----------------+
2 rows in set