'hive orc table have many strips

why my hive orc table have many strips?

I create a tmp table, test_orc_1 have 400 numbers of columns

CREATE TABLE tmp.test_orc_2 stored as orc AS
SELECT  *
FROM tmp.test_orc_1
;

table test_orc_2 have 3928 strips in a file, this file's size is 300M

enter image description here

how can i decrease numbers of strips?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source