XShun commented on issue #2115: bitmap_union_int cause 'be' node hang
URL: 
https://github.com/apache/incubator-doris/issues/2115#issuecomment-548442525
 
 
   @kangkaisen Hi, I just saw your message. I also met the 'be could not start' 
problem yesterday, so I pulled the latest code this morning and rebuilt it. I 
load data to table1 through `load label ... with broker ...` , and the source 
data is on the HDFS. All bitmap_union_int query will make BE down. 
   Here are the create table sql and some rows:
   `CREATE TABLE table1 (
     k1 date NOT NULL COMMENT "key1",
     k2 varchar(20) NOT NULL COMMENT "key2",
     k3 varchar(100) NOT NULL COMMENT "key3",
     k4 int(11) NOT NULL COMMENT "key4",
     id int(11) NOT NULL COMMENT "id",
     flag bigint(20) SUM NOT NULL DEFAULT "1" COMMENT "flag"
   ) ENGINE=OLAP
   AGGREGATE KEY(k1, k2, k3, k4, id)
   COMMENT "OLAP"
   DISTRIBUTED BY HASH(`k1`) BUCKETS 6
   PROPERTIES (
   "storage_type" = "COLUMN"
   );`
   Rows:
   `2018-01-01,主键二,主键三,10000001,1000001,1
   2018-01-02,主键二,主键三,10000002,1000002,1
   2018-01-03,主键二,主键三,10000001,1000003,2`
   The last column is used to calculate `count(1)`.
   THX!

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


With regards,
Apache Git Services

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

Reply via email to