v.24.5Improvement
Enable Truncate Operation for Object Storage Disks
Enable truncate operation for object storage disks. #63693 (MikhailBurdukov).
Why it matters
This feature allows users to perform theTRUNCATE operation on tables stored on object storage disks, solving the previous limitation where truncation was not supported on such storage. This improves manageability and flexibility when working with large datasets stored in object storage by enabling quick table data removal without dropping the entire table.How to use it
To use this feature, ensure your table is placed on an object storage disk. Then you can execute theTRUNCATE TABLE statement as usual, e.g.,TRUNCATE TABLE my_tableThis will now work seamlessly with object storage-backed tables.