stream_load 导入出现错误

【StarRocks版本】2.5.10
【集群规模】1fe+3be(其中一个be与fe混部)
【机器信息】CPU虚拟核/内存/网卡,例如:48C/64G/万兆
【联系方式】kyrienull@foxmail.com

导入小数据量也会有这个报错么,stream load 任务是用什么方式发起的

基于 HTTP 协议的 Stream Load 导入方式

建表语句如下
CREATE TABLE bas_chat_contents_lawcase (
dt date NOT NULL,
sample_no STRING NULL DEFAULT “”,
content STRING NULL DEFAULT “”,
app_type int(11) NOT NULL,
type int(11) NOT NULL,
chat_time datetime DEFAULT null,
create_time datetime DEFAULT null,
id STRING NULL DEFAULT NULL,
belong_account_id STRING NULL,
group_account STRING NULL,
sender_account_id STRING NULL,
sender_name STRING NULL,
browse_url STRING DEFAULT NULL,
title STRING DEFAULT NULL
) ENGINE=OLAP
UNIQUE KEY(dt, sample_no, content, app_type, type, chat_time)
PARTITION BY RANGE(dt)(START (“2021-08-01”) END (“2030-01-01”) EVERY (INTERVAL 1 MONTH))
DISTRIBUTED BY HASH(sample_no) BUCKETS 12
PROPERTIES (
“replication_num” = “1”,
“colocate_with” = “groupd01”,
“in_memory” = “false”,
“storage_format” = “DEFAULT”,
“enable_persistent_index” = “false”,
“compression” = “LZ4”
);