Open zig opened 2 weeks ago
If I write instead :
CREATE TABLE IF NOT EXISTS test
(
id bigint NOT NULL,
time datetime NOT NULL,
session_id text,
truncated_time text
)
PARTITION BY (truncated_time)
PROPERTIES (
"compression_codec" = "zstd",
"write.parquet.compression-level" = "3"
);
then it works.
However, if I INSERT OVERWRITE
the table, the generated parquet files are not compressed. Also SHOW CREATE TABLE
does not show any of the compression property.
Steps to reproduce the behavior (Required)
Expected behavior (Required)
Success
Real behavior (Required)
SQL Error [1064] [42000]: Multiple entries with same key: write.parquet.compression-codec=gzip and write.parquet.compression-codec=zstd
StarRocks version (Required)
3.3.5