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 2020/04/02 16:09:24 UTC

[GitHub] [incubator-doris] stalary opened a new issue #3253: Routine Load cause be to hang

stalary opened a new issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253
 
 
   **Describe the bug**
   Routine Load cause be to hang
   When I have a problem with my kafka data, be will die
   
   **To Reproduce**
   1. 
   create table live_heartbeat_test
   (
       id              varchar(255) comment 'id',
       type            varchar(50) comment '消息类型',
       progress        bigint default '0' comment '播放进度(ms)',
       background      BOOLEAN comment '是否后台播放',
       `interval`      bigint default '0' comment '和上次上报的间隔(ms)'
   )
       ENGINE = olap UNIQUE KEY(id)
   DISTRIBUTED BY HASH(id) BUCKETS 10
   PROPERTIES(
       "replication_num" = "1",
       "storage_type"="column"
   );
   
   2.
   CREATE ROUTINE LOAD test_db.live_heartbeat_test ON live_heartbeat_test
           COLUMNS TERMINATED BY ","
           PROPERTIES
           (
               "desired_concurrent_number"="3",
               "max_batch_interval" = "20",
               "max_batch_rows" = "300000",
               "max_batch_size" = "209715200",
               "strict_mode" = "false"
           )
           FROM KAFKA
           (
               "kafka_broker_list" = "localhost:9092",
               "kafka_topic" = "course_doris_test_live_heartbeat_test",
               "property.group.id" = "doris-test",
               "property.client.id" = "doris-test"
           );
   
   3.  kafka-producer
   > null,null,null,null,null
   > 12null,null,null,null,null
   > 232
   
   **Expected behavior**
   Report errors instead of be hangs
   
   **version**
   master

----------------------------------------------------------------
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


With regards,
Apache Git Services

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


[GitHub] [incubator-doris] imay commented on issue #3253: Routine Load cause be to hang

Posted by GitBox <gi...@apache.org>.
imay commented on issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253#issuecomment-608195555
 
 
   @stalary 
   Doris don't support Boolean type in segment V1.
   If this table is created in segment V2 format, Boolean is supported.

----------------------------------------------------------------
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


With regards,
Apache Git Services

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


[GitHub] [incubator-doris] stalary commented on issue #3253: Routine Load cause be to hang

Posted by GitBox <gi...@apache.org>.
stalary commented on issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253#issuecomment-607943548
 
 
   I think it's related to a field of type Boolean

----------------------------------------------------------------
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


With regards,
Apache Git Services

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


[GitHub] [incubator-doris] stalary removed a comment on issue #3253: Routine Load cause be to hang

Posted by GitBox <gi...@apache.org>.
stalary removed a comment on issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253#issuecomment-607943548
 
 
   I think it's related to a field of type Boolean

----------------------------------------------------------------
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


With regards,
Apache Git Services

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


[GitHub] [incubator-doris] stalary closed issue #3253: Routine Load cause be to hang

Posted by GitBox <gi...@apache.org>.
stalary closed issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253
 
 
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

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


[GitHub] [incubator-doris] stalary commented on issue #3253: Routine Load cause be to hang

Posted by GitBox <gi...@apache.org>.
stalary commented on issue #3253: Routine Load cause be to hang
URL: https://github.com/apache/incubator-doris/issues/3253#issuecomment-607946061
 
 
   create table live_heartbeat_test
   (
       id              varchar(255) comment 'id',
       type            varchar(50) comment '消息类型',
       progress        bigint default '0' comment '播放进度(ms)',
       background      BOOLEAN comment '是否后台播放'
   )
       ENGINE = olap UNIQUE KEY(id)
   DISTRIBUTED BY HASH(id) BUCKETS 10
   PROPERTIES(
       "replication_num" = "1",
       "storage_type"="column"
   );
   
   kafka-producer
   > 1342,record,123323,false
   
   This will cause be to die,I think it's related to a field of type Boolean

----------------------------------------------------------------
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


With regards,
Apache Git Services

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