v.25.2Performance Improvement
Improve JSON Column Reading Performance from S3 in ClickHouse
Improve performance of the whole JSON column reading in Wide parts from S3. It's done by adding prefetches for subcolumn prefixes deserialization, cache of deserialized prefixes, and parallel deserialization of subcolumn prefixes. It improves the reading of the JSON column from S3 4 times in queries likeSELECT data FROM tableand about 10 times in queries likeSELECT data FROM table LIMIT 10. #74827 (Pavel Kruglov).