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/08/08 17:30:28 UTC

[GitHub] [incubator-doris] kongqiu opened a new issue #4301: failed to get largest_segment_group

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


   I have two doris environments that:
   A: Centos7.8
   B: Centos7.5
   
   The table like this:
   create table table1
   (
       dept_id int ,
       user_id  bitmap bitmap_union
   )
   AGGREGATE KEY(dept_id)
   DISTRIBUTED BY HASH(dept_id) BUCKETS 1
   PROPERTIES("replication_num" = "1");
   
   **environment A:**
   insert into table1 values (1,to_bitmap(1001));
   select bitmap_count(bitmap_union(user_id)) from table1;
   --output is  1,     No problem。
   insert into table1 values (1,to_bitmap(1002));
   select bitmap_count(bitmap_union(user_id)) from table1;
   --output is 2, No problem too。
   
   **environment B:**
   insert into table1 values (1,to_bitmap(1001));
   select bitmap_count(bitmap_union(user_id)) from table1;
   --output is  1,     No problem。
   insert into table1 values (1,to_bitmap(1002));
   select bitmap_count(bitmap_union(user_id)) from table1;
   --Now ,I get one error mesage is:
      ERROR 2013 (HY000): Lost connection to MySQL server during query
   
   then I check the log,I find the failed mesage like this :
     alpha_rowset.cpp:178] failed to get largest_segment_group. is null: 1. version: 3-3. tablet: 10007
   
   
   
   


----------------------------------------------------------------
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] morningman commented on issue #4301: failed to get largest_segment_group

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


   > failed to get largest_segment_group. is null: 1. version: 2-2
   
   This error msg seems not cause some problems. This log may be removed later.
   If your query failed, there should be other error happened.


----------------------------------------------------------------
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] niaoUncle commented on issue #4301: failed to get largest_segment_group

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


   你好! 你最后是咋处理的


----------------------------------------------------------------
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] niaoUncle commented on issue #4301: failed to get largest_segment_group

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


   我目前也遇到这个问题了
   failed to get largest_segment_group. is null: 1. version: 2-2


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