Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support nested steps workflow parallelism #1046

Merged
merged 6 commits into from
Nov 2, 2018

Commits on Oct 15, 2018

  1. Merge pull request #1 from argoproj/master

    update
    WeiTang114 authored Oct 15, 2018
    Configuration menu
    Copy the full SHA
    69b5729 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2018

  1. Support nested steps workflow parallelism

    Related issue: argoproj#1035
    
    What is solved:
     - Parallelism for nested steps (StepGroups)
    
    What is not solved:
     - Parallelism for nested DAG
    
    This commit make nested StepGroup workflow parallelism on the outer
    workflow limiting inner workflow execution. This is done by making
    checkParallelism called by the inner workflow checks if the number of
    its running siblings (the nodes with the same parent node) is >=
    the parent node's parallelism.
    WeiTang114 committed Oct 16, 2018
    Configuration menu
    Copy the full SHA
    5642307 View commit details
    Browse the repository at this point in the history
  2. remove debugging logs

    WeiTang114 committed Oct 16, 2018
    Configuration menu
    Copy the full SHA
    4f96f2e View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2018

  1. Configuration menu
    Copy the full SHA
    6259380 View commit details
    Browse the repository at this point in the history
  2. remove unused code

    WeiTang114 committed Oct 27, 2018
    Configuration menu
    Copy the full SHA
    9a18c6a View commit details
    Browse the repository at this point in the history
  3. Add parallelism examples

    WeiTang114 committed Oct 27, 2018
    Configuration menu
    Copy the full SHA
    e486893 View commit details
    Browse the repository at this point in the history