StarRocks / starrocks

StarRocks, a Linux Foundation project, is a next-generation sub-second MPP OLAP database for full analytics scenarios, including multi-dimensional analytics, real-time analytics, and ad-hoc queries.
https://starrocks.io
Apache License 2.0
8.3k stars 1.68k forks source link

[1064] [42000]: [E1008]Reached timeout=150000ms #28836

Closed chengqiancheng closed 3 months ago

chengqiancheng commented 11 months ago

Steps to reproduce the behavior (Required)

  1. create primary table: ptable CREATE TABLE ptable ( id varchar(10000) NOT NULL COMMENT "" ) ENGINE=OLAP primary KEY(id) DISTRIBUTED BY HASH(id) BUCKETS 3;
  2. create duplicate table : p1 CREATE TABLE p1 ( id varchar(10000) NOT NULL COMMENT "" ) ENGINE=OLAP DUPLICATE KEY(id) DISTRIBUTED BY HASH(id) BUCKETS 3;
  3. insert p1 data to ptable, The primary key length is greater than 127. insert into p1 select '1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111'
  4. load data to ptable insert into ptable select * from p1

Expected behavior (Required)

insert table primary key too long

Real behavior (Required)

[1064] [42000]: [E1008]Reached timeout=150000ms

StarRocks version (Required)

2.5.7 8dc1b68

github-actions[bot] commented 4 months ago

We have marked this issue as stale because it has been inactive for 6 months. If this issue is still relevant, removing the stale label or adding a comment will keep it active. Otherwise, we'll close it in 10 days to keep the issue queue tidy. Thank you for your contribution to StarRocks!