Created on 04-12-2018 07:27 AM - edited 09-16-2022 06:05 AM
Looking for documentation. Using Impala on Kudu at the moment.
Found https://kudu.apache.org/docs/schema_design.html , says Kudu allows compression on a column level. How about if I wanted table level?
Thanks.
Created 04-12-2018 12:03 PM
Hi AKB,
Assuming you're asking about Impala, you can find the exact syntax for creating tables with compressed/encoded columns in the CREATE TABLE reference, and the syntax for altering tables to add compression/encodings in the ALTER TABLE reference.
Created 04-12-2018 09:55 AM
Hi AKB, there's no table-level compression. The closest equivalent would be specifying compression for all columns. It's pretty typical to rely on encodings to reduce size as much as possible, and then additionally apply compression only for particularly big or cold columns.
Created 04-12-2018 11:59 AM
Can you please direct me to some docs that say how to set encodings and how to declare column level compression? I am not able to find this. Thanks.
Created 04-12-2018 12:03 PM
Hi AKB,
Assuming you're asking about Impala, you can find the exact syntax for creating tables with compressed/encoded columns in the CREATE TABLE reference, and the syntax for altering tables to add compression/encodings in the ALTER TABLE reference.