v.20.4New Feature
Add MessagePack Input/Output Format
Add MessagePack Input/Output format. #9889 (Kruglov Pavel)
Why it matters
This feature enables efficient compact binary serialization/deserialization of data using MessagePack, improving interoperability with other systems and reducing data size during data transfer.How to use it
Users can specifyMessagePack as the format when importing data using FORMAT MessagePack or exporting data with FORMAT MessagePack in their queries, for example:SELECT * FROM table FORMAT MessagePack;
INSERT INTO table FORMAT MessagePackThis allows ClickHouse to parse and produce data in MessagePack format.