Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Enterprise. Switch to the latest stable version.
Added in version 2.3.
This document describes how to work with Scylla’s large partitions table. The large partitions table can be used to trace large partitions in a cluster. The table is updated every time a partition is written and/or deleted,and includes a compaction process which flushes MemTables to SSTables.
Large Partitions can cause any of the following symptoms:
Longer latencies on a single shard (look at the “Scylla Overview Metrics” dashboard of ScyllaDB Monitoring Stack).
Oversized allocation warning messages in the log (e.g. seastar_memory - oversized allocation: 2842624 bytes, please report
)
If you are experiencing any of the above, search to see if you have large partitions.
Note that large partitions are detected only when they are stored in a single SSTable. Scylla does not account for data belonging to the same logical partition, but spread across multiple SSTables, as long as any single partition in each SSTable does not cross the large partitions warning threshold. However, note that over time, compaction, and Size-Tiered Compaction Strategy in particular, may collect the dispersed partition data from several SSTables and store it in a single SSTable, thus crossing the large partitions threshold.
Search for large partitions.
For example:
SELECT * FROM system.large_partitions;
Example output:
keyspace_name | table_name | sstable_name | partition_size | partition_key | compaction_time
--------------+------------+------------------------------------------------------------------------------------+----------------+-----------------------------------------------------+--------------------------
demodb | tmcr | /var/lib/scylla/data/demodb/tmcr-cba79c008e4f11e8908a000000000001/la-6-big-Data.db | 1188716932 | {key: pk{000400000001}, token:-4069959284402364209} | 2018-07-23 08:10:34
testdb | tmcr | /var/lib/scylla/data/demodb/tmcr-cbs45c008e4f11e3418a000871000002/la-7-big-Data.db | 1188816032 | {key: pk{000400000001}, token:-3169959284402457813} | 2018-07-23 08:10:34
Parameter |
Description |
---|---|
keyspace_name |
The name of a keyspace holding the large partition |
table_name |
The name of a table containing the large partition |
sstable_name |
The name of SSTable containing the large partition |
partition_size |
The size of the partition |
partition_key |
The value of a partition key that identifies the large partition |
compaction_time |
Time when compaction last occurred |
Note
The large partitions table is local per node. Querying the table returns results for the specific node you query.
Search within all the large partitions for a specific keyspace and or table.
For example we are looking for the keyspace demodb
and table tmcr
:
SELECT * FROM system.large_partitions WHERE keyspace_name = 'demodb' AND table_name = 'tmcr;
Example output:
keyspace_name | table_name | sstable_name | partition_size | partition_key | compaction_time
--------------+------------+------------------------------------------------------------------------------------+----------------+-----------------------------------------------------+--------------------------
demodb | tmcr | /var/lib/scylla/data/demodb/tmcr-cba79c008e4f11e8908a000000000001/la-6-big-Data.db | 1188716932 | {key: pk{000400000001}, token:-4069959284402364209} | 2018-07-23 08:10:34
Configure the detection threshold of large partitions with the compaction_large_partition_warning_threshold_mb
parameter (default: 1000MB) in the scylla.yaml configuration file.
Partitions bigger than this threshold are reported in the system.large_partitions
table and generate a warning in the Scylla log (refer to log).
For example (set to 500MB):
compaction_large_partition_warning_threshold_mb: 500
Large partitions are stored in a system table with the following schema:
DESCRIBE TABLE system.large_partitions;
CREATE TABLE system.large_partitions (
keyspace_name text,
table_name text,
sstable_name text,
partition_size bigint,
partition_key text,
compaction_time timestamp,
PRIMARY KEY ((keyspace_name, table_name), sstable_name, partition_size, partition_key)
) WITH CLUSTERING ORDER BY (sstable_name ASC, partition_size DESC, partition_key ASC)
In order to prevent stale data from appearing, all rows in system.large_partitions
table are inserted with Time To Live (TTL) equal to 30 days.
Was this page helpful?