Open AlexLWei opened 12 months ago
can you provide the routine load statement ? Is property.group.id the same as another cluster?
can you provide the routine load statement ? Is property.group.id the same as another cluster?
yes ,they are exacly the same ,I use ‘show create routine load' command and copy it to anoter cluster.
` CREATE ROUTINE LOAD test_task ON test WITH APPEND COLUMNS(userId,date,terminalType,bussType,appId,title,category,mCode,
from`,duration,playCount)
PROPERTIES
(
"desired_concurrent_number" = "1",
"max_error_number" = "30000",
"max_batch_interval" = "20",
"max_batch_rows" = "300000",
"max_batch_size" = "209715200",
"format" = "json",
"strip_outer_array" = "false",
"num_as_string" = "false",
"fuzzy_parse" = "false",
"strict_mode" = "false",
"timezone" = "+00:00",
"exec_mem_limit" = "2147483648"
)
FROM KAFKA
(
"kafka_broker_list" = "xxxxxxxx.com:8291",
"kafka_topic" = "AppPlaySink5",
"property.group.id" = "Test2GroupDoris",
"property.client.id" = "AppPlayClientDoris",
"kafka_partitions" = "0,1,2",
"kafka_offsets" = "3669895231, 3113027716, 4683008086"
);
You can try to change property.group.id . This is my wechat: Aurora_0_618
how to fix this?
Search before asking
Version
doris-2.0.1
What's Wrong?
The routine's job submission is fine, but it can't consume data from a specific offset. I can't find out why by checking out routine load job using 'show routine load',The committedTaskNum keeps adding, but the loadedRows is still 0.but I find something like 'kafka consume timeout' in the Be's log. I've tried to create the same job load on another cluster with the same version, and it works just fine.
What You Expected?
how to resolve this issus
How to Reproduce?
No response
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct