v.22.3Improvement
Added disk_name field to system.part_log
Addeddisk_namefield tosystem.part_log. #35178 (Artyom Yurkov).
Why it matters
This feature allows users to identify which disk each part is stored on by including the disk name in thesystem.part_log. It enhances monitoring and debugging by providing detailed storage location information for parts.How to use it
Users can query thesystem.part_log table and include the disk_name field in their SELECT statements to see the disk names associated with parts, for example:SELECT part_name, disk_name, event_type, event_time
FROM system.part_log
WHERE event_date = today()