Yicong-Huang opened a new issue, #7041:
URL: https://github.com/apache/texera/issues/7041

   ### Task Summary
   
   The merge queue currently uses `grouping_strategy: ALLGREEN`: merging N 
queued PRs requires N green full-matrix CI runs (merge_group events run every 
stack), so each batch multiplies both queue latency and the chance of getting 
kicked out by a flaky test.
   
   Retune the `merge_queue` ruleset in `.asf.yaml`:
   
   | Parameter | Before | After |
   | --- | --- | --- |
   | `grouping_strategy` | ALLGREEN | HEADGREEN |
   | `max_entries_to_build` | 5 | 2 |
   | `min_entries_to_merge` | 1 | 2 |
   | `min_entries_to_merge_wait_minutes` | 5 | 3 |
   | `check_response_timeout_minutes` | 30 | 45 |
   
   HEADGREEN merges a whole batch on one green head-group run; lower build 
concurrency saves shared ASF runner quota now that non-head speculative builds 
no longer gate merging.
   
   ### Task Type
   
   - [ ] Refactor / Cleanup
   - [x] DevOps / Deployment / CI
   - [ ] Testing / QA
   - [ ] Documentation
   - [ ] Performance
   - [ ] Other
   


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

Reply via email to