• Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Major Major
    • blueocean-plugin
    • None
    • Jenkins core 2.144
      Blueocean 1.8.4

      If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate

      1- Create a Pipeline job dummy

      node {
         echo 'Hello World'
      }
      

      2- Create a Pipeline job trigger dummy

      pipeline {
        agent any
        stages {
          stage("test") {
            agent any
            steps {
              sh 'export'
              script{
                for(def i =  0; i < 10; i++){
                  build(job: "dummy")
                }
              }
            }
          }
        }
      }
      

      3- build Pipeline job trigger dummy
      4- Go to the Blueocian build view of that build
      5- The Bluocean view stuck and the browser tab hands, there is no errors in the javascript console nor developer tools network tab

          [JENKINS-54104] Blueocean cannot display 10 downstream jobs

          I just tested it also with Blueocean 1.9.0, more or less the same result, sometimes after 5 min you see all the downstream jobs.

          Ivan Fernandez Calvo added a comment - I just tested it also with Blueocean 1.9.0, more or less the same result, sometimes after 5 min you see all the downstream jobs.

          Sverre Moe added a comment - - edited

          I wonder if this could be related to a problem I am having with Blue Ocean.
          We do not trigger build on downstream projects, but instead in a verification stage, iterates through all downstream dependencies and build them (it is a lot faster than starting independent builds). There are roughly 6 steps per downstream, building 20-30+ projects. Blue Ocean does not show all the steps in this stage, it cuts off after a certain number.

          Sverre Moe added a comment - - edited I wonder if this could be related to a problem I am having with Blue Ocean. We do not trigger build on downstream projects, but instead in a verification stage, iterates through all downstream dependencies and build them (it is a lot faster than starting independent builds). There are roughly 6 steps per downstream, building 20-30+ projects. Blue Ocean does not show all the steps in this stage, it cuts off after a certain number.

            Unassigned Unassigned
            ifernandezcalvo Ivan Fernandez Calvo
            Votes:
            2 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: