You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/10/12 15:26:00 UTC

[GitHub] [airflow] potiuk opened a new pull request #11471: Enables back duplicate cancelling on push/schedule

potiuk opened a new pull request #11471:
URL: https://github.com/apache/airflow/pull/11471


   We disabled duplicate cancelling on push/schedule in #11397
   but then it causes a lot of extra strain in case several commits
   are merged in quick succession. The master merges are always
   full builds and take a lot of time, but if we merge PRs
   quickly, the subsequent merge cancels the previous ones.
   
   This has the negative consequence that we might not know who
   broke the master build, but this happens rarely enough to suffer
   the pain at expense of much less strained queue in GitHub Actions.
   
   <!--
   Thank you for contributing! Please make sure that your code changes
   are covered with tests. And in case of new features or big changes
   remember to adjust the documentation.
   
   Feel free to ping committers for the review!
   
   In case of existing issue, reference it using one of the following:
   
   closes: #ISSUE
   related: #ISSUE
   
   How to write a good git commit message:
   http://chris.beams.io/posts/git-commit/
   -->
   
   ---
   **^ Add meaningful description above**
   
   Read the **[Pull Request Guidelines](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst#pull-request-guidelines)** for more information.
   In case of fundamental code change, Airflow Improvement Proposal ([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvements+Proposals)) is needed.
   In case of a new dependency, check compliance with the [ASF 3rd Party License Policy](https://www.apache.org/legal/resolved.html#category-x).
   In case of backwards incompatible changes please leave a note in [UPDATING.md](https://github.com/apache/airflow/blob/master/UPDATING.md).
   


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



[GitHub] [airflow] potiuk merged pull request #11471: Enables back duplicate cancelling on push/schedule

Posted by GitBox <gi...@apache.org>.
potiuk merged pull request #11471:
URL: https://github.com/apache/airflow/pull/11471


   


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



[GitHub] [airflow] potiuk commented on pull request #11471: Enables back duplicate cancelling on push/schedule

Posted by GitBox <gi...@apache.org>.
potiuk commented on pull request #11471:
URL: https://github.com/apache/airflow/pull/11471#issuecomment-707189760


   I think it's too much of a strain to skip canceling the master builds. This way we can merge at most x (maybe 2/3) PRs per hour without delaying everyone else. The last merge will always run to completion, and at most we will have to find out who broke the build - I think the price to pay tor running all full builds for all master merges and avoiding the investigations in case of broken master is a bit too high.


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