Excessive tablet splits and merges
Warning
Supported only for row-oriented tables. Support for column-oriented tables is currently under development.
Each row-oriented table partition in YDB is processed by a data shard tablet. YDB supports automatic splitting and merging of data shards which allows it to seamlessly adapt to changes in workloads. However, these operations are not free and might have a short-term negative impact on query latencies.
When YDB splits a partition, it replaces the original partition with two new partitions covering the same range of primary keys. Now, two data shards process the range of primary keys that was previously handled by a single data shard, thereby adding more computing resources for the table.
By default, YDB splits a table partition when it reaches 2 GB in size. However, it's recommended to also enable partitioning by load, allowing YDB to split overloaded partitions even if they are smaller than 2 GB.
A scheme shard takes approximately 15 seconds to assess whether a data shard requires splitting. By default, the CPU usage threshold for splitting a data shard is set at 50%.
When YDB merges adjacent partitions in a row-oriented table, they are replaced with a single partition that covers their range of primary keys. TThe corresponding data shards are also consolidated into a single data shard to manage the new partition.
For merging to occur, data shards must have existed for at least 10 minutes, and their CPU usage over the last hour must not exceed 35%.
When configuring table partitioning, you can also set limits for the minimum and maximum number of partitions. If the difference between the minimum and maximum limits exceeds 20% and the table load varies significantly over time, Hive may start splitting overloaded tables and then merging them back during periods of low load.
Diagnostics
-
See if the Split / Merge partitions chart in the DB status Grafana dashboard shows any spikes.
This chart displays the time-series data for the following values: - Number of split table partitions per second (blue) - Number of merged table partitions per second (green)
-
Check whether the user load increased when the tablet splits and merges spiked.
-
Review the diagrams on the DataShard dashboard in Grafana for any changes in the volume of data read or written by queries.
-
Examine the Requests chart on the Query engine dashboard in Grafana for any spikes in the number of requests.
-
-
To identify recently split or merged tablets, follow these steps:
-
In the Embedded UI, click the Developer UI link in the upper right corner.
-
Navigate to Node Table Monitor > All tablets of the cluster.
-
To show only data shard tablets, in the TabletType filter, specify
DataShard
. -
Sort the tablets by the ChangeTime column and review tablets, which change time values coincide with the spikes on the Split / Merge partitions chart.
-
To identify the table associated with the data shard, in the data shard row, click the link in the TabletID column.
-
On the Tablets page, click the App link.
The information about the table is displayed in the User table <table-name> section.
-
-
To pinpoint the schema issue, follow these steps:
-
Retrieve information about the problematic table using the YDB CLI. Run the following command:
ydb scheme describe <table_name>
-
In the command output, analyze the Auto partitioning settings:
Partitioning by load
Max partitions count
Min partitions count
-
Recommendations
If the user load on YDB has not changed, consider adjusting the gap between the min and max limits for the number of table partitions to the recommended 20% difference. Use the ALTER TABLE table_name SET (key = value)
YQL statement to update the AUTO_PARTITIONING_MIN_PARTITIONS_COUNT
and AUTO_PARTITIONING_MAX_PARTITIONS_COUNT
parameters.
If you want to avoid splitting and merging data shards, you can set the min limit to the max limit value or disable partitioning by load.