This section applies only to MRS 3.3.0 or later.
This alarm is generated when the number of parts exceeds the threshold specified by part_num_threshold.
This alarm is automatically cleared when the number of parts is less than the part_num_threshold value.
Alarm ID |
Alarm Severity |
Auto Cleared |
---|---|---|
45437 |
Minor |
Yes |
Parameter |
Description |
---|---|
Source |
Specifies the cluster or system for which the alarm is generated. |
ServiceName |
Specifies the service for which the alarm is generated. |
RoleName |
Specifies the role for which the alarm is generated. |
Table |
Specifies the database name and table name for which the alarm is generated. |
HostName |
Specifies the host for which the alarm is generated. |
Service errors may occur.
The data distribution in the ClickHouse table is improper, or the background merge task is executed slowly.
cd {Client installation path}
source bigdata_env
clickhouse client --host IP address of the ClickHouseServer instance that reports the alarm --port 9440 --secure
clickhouse client --host IP address of the ClickHouseServer instance that reports the alarm --user Username --password --port 9000
optimize table Database name.Table name final;
select FQDN(), database, table, count(1) from clusterAllReplicas(default_cluster, system.parts) where database='Database name' and table='Table name' and active=1 group by (FQDN(), database, table);
Collect fault information.
This alarm is automatically cleared after the fault is rectified.
None.