请教各位老师, doris 版本:doris-4.0.4-rc01 麒麟v10 sp1.1 鲲鹏920 ARM 环境。doris 建表指定 "compression" = "ZSTD" 不生效,指定 Zlib、Snappy、LZ4HC 这些就可以。是arm 版本就不支持zstd吗? 建表语句: CREATE TABLE example_table (
id INT,
name STRING,
age INT
)
DUPLICATE KEY(id)
DISTRIBUTED BY HASH(id) BUCKETS 1
PROPERTIES (
"compression" = "zstd"
);
show create table example_table;
CREATE TABLE example_table (
id int NULL,
name text NULL,
age int NULL
) ENGINE=OLAP
DUPLICATE KEY(id)
DISTRIBUTED BY HASH(id) BUCKETS 1
PROPERTIES (
"replication_allocation" = "tag.location.group_w01: 2, tag.location.group_r: 1",
"min_load_replica_num" = "-1",
"is_being_synced" = "false",
"storage_medium" = "hdd",
"storage_format" = "V2",
"inverted_index_storage_format" = "V3",
"light_schema_change" = "true",
"disable_auto_compaction" = "false",
"enable_single_replica_compaction" = "false",
"group_commit_interval_ms" = "10000",
"group_commit_data_bytes" = "134217728"
);