812406210 opened a new issue #5742:
URL: https://github.com/apache/incubator-doris/issues/5742


   **1、define table** 
   CREATE TABLE user
   (
   id INT DEFAULT '10',
   name VARCHAR(32) DEFAULT '',
   age DECIMAL(10, 2) DEFAULT "10.5",
   create_time datetime NULL COMMENT ""
   )
   DUPLICATE KEY(id)
   DISTRIBUTED BY HASH(id) BUCKETS 10
   PROPERTIES("replication_num" = "1");
   
   **2、load kafka data** 
   create routine load load_test_user_1 on user
   columns (id,name,age,create_time),
   columns terminated by ","
   PROPERTIES (
        "desired_concurrent_number"="1",  
        "max_error_number"="1000"
   )
   FROM KAFKA (
       "kafka_broker_list"= "uat-datacenter2:9092",
       "kafka_topic" = "doris_test"
   
   );
   
   3、happen this error
   
![image](https://user-images.githubusercontent.com/22192011/116660298-6ac6d880-a9c5-11eb-98e0-21ca28ec283c.png)
   
   can you help me to resove this ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to