dh-cloud opened a new pull request, #36657:
URL: https://github.com/apache/doris/pull/36657

   …age_percent param
   
   # Steps to reproduce:
   ## 1,Create Doris ENV
   
   ```
   3 FE + 4 BE
   FE have  one data path:/data1
   BE have  one data path:/data1
   ```
   
   ## 2,Create table
   
   ```
   create table test(
       id                bigint       not null,
       name               varchar(100)
   )
   duplicate key(id1)
   distributed by hash(id1) buckets 1
   properties (
      "replication_num" = "3"
   );
   ```
   
   ## 3,modify all BE param & restart doris
   
   ```
   BE.storage_flood_stage_usage_percent=1
   -- set to 100T
   BE.storage_flood_stage_left_capacity_bytes=1099511627776
   ```
   ## 4,insert data
   
   ```
   insert into test  values (1,'test_name');
   ```
   
   ## 5,result
   ```
   Query OK, 1 row affected (0.09 sec)
   {'label':'label_1bfb0be2ee8b424f_8f9a3a25ca638bc1', 'status':'VISIBLE', 
'txnId':'4419'}
   ```
   
   ## 6,after fix:
   
   ```
   ERROR 1105 (HY000) at line 1: errCode = 2, detailMessage = (be0)[E-232]disk 
10878111130781813261 exceed capacity limit.
   
   ```
   [ci skip]
   
   ## Proposed changes
   
   Issue Number: close #xxx
   
   <!--Describe your changes.-->
   
   


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to