You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/04/30 07:05:38 UTC

[GitHub] [incubator-doris] 812406210 opened a new issue #5742: Doris comsumer kafka0.10 Error

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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [incubator-doris] crazyleeyang commented on issue #5742: Doris comsumer kafka0.10 Error

Posted by GitBox <gi...@apache.org>.
crazyleeyang commented on issue #5742:
URL: https://github.com/apache/incubator-doris/issues/5742#issuecomment-858249389


   No data is consumed, 
   ![image](https://user-images.githubusercontent.com/856349/121459487-f2006680-c9dd-11eb-8555-59cb24cbc415.png)
    It's just a warning.
   


-- 
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org