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/06/05 11:57:39 UTC

[GitHub] [incubator-doris] godcat950081 opened a new issue #3783: BE will crash when execute stream load, if bitmap field does not specify BITMAP_UNION type.

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


   BE will crash when execute stream load, if bitmap field does not specify BITMAP_UNION type.
   
   Steps to reproduce the behavior:
   1. bitmap field does not specify BITMAP_UNION when create table.
   '''
   CREATE TABLE bitmaptable
   (
       TSID     BIGINT NOT NULL,
       PKEY     VARCHAR(96) NOT NULL,
       EDITFLAG BITMAP NULL
   )
   UNIQUE KEY(TSID,PKEY)
   DISTRIBUTED BY HASH(TSID) BUCKETS 10;
   '''
   
   2. data file "111.txt" as the following:
   '''
   555;666;1,2,3
   777;888;1,2,3
   '''
   
   3. exec stream load: 
   '''
   curl --location-trusted -u user:pwd -H "column_separator:;" -H "columns:TSID,PKEY,tmp,EDITFLAG=bitmap_from_string(tmp)" -T /mydata/bitmap/111.txt -H "label:job1" http://172.17.0.2:8040/api/dolap/bitmaptable/_stream_load
   '''
   
   4. BE will crash.
   


----------------------------------------------------------------
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] imay closed issue #3783: BE will crash when execute stream load, if bitmap field does not specify BITMAP_UNION type.

Posted by GitBox <gi...@apache.org>.
imay closed issue #3783:
URL: https://github.com/apache/incubator-doris/issues/3783


   


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