v.19.14New Feature
Input Format ORC
Input format ORC. #6454 #6703 (akonyaev90)Why it matters
This feature enables ClickHouse to directly read and import data stored in the ORC file format, a popular columnar storage format used in big data systems. It simplifies integration with ecosystems producing ORC files, eliminates the need for external conversion tools, and improves data ingestion efficiency.How to use it
Users can enable theORC input format by specifying FORMAT ORC in their INSERT statements or when reading data from files, for example:INSERT INTO table_name FORMAT ORCor
SELECT * FROM table_name FORMAT ORCClickHouse will then parse the ORC data accordingly.