Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
# Jenkins 2.332.2
# Docker container with JDK 11
- openjdk version "11.0.14" 2022-01-18
- OpenJDK Runtime Environment (build 11.0.14+9-post-Debian-1deb10u1)
- OpenJDK 64-Bit Server VM (build 11.0.14+9-post-Debian-1deb10u1, mixed mode, sharing
# Docker host
4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 GNU/Linux
# jenkins data dir over nfs share# Jenkins 2.332.2 # Docker container with JDK 11 - openjdk version "11.0.14" 2022-01-18 - OpenJDK Runtime Environment (build 11.0.14+9-post-Debian-1deb10u1) - OpenJDK 64-Bit Server VM (build 11.0.14+9-post-Debian-1deb10u1, mixed mode, sharing # Docker host 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 GNU/Linux # jenkins data dir over nfs share
Description
Massive pipeline performance degradation of declarative pipeline since upgrading Jenkins container for Jenkins running inside a buster-slim based container.
Stages takes x2 time to complete on average, see screenshot for the Jenkinsfile bellow
What changed :
- upgraded jenkins from 2.295 to 2.332.2
- upgraded jdk default-jre-headless to openjdk-11-jre
Unable to find source-code formatter for language: jenkinsfile. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yamlpipeline { agent any environment { HOME = "/home/jenkins" } stages { stage('STEP1') { steps { sh ''' sleep 1 sleep 1 sleep 1 sleep 1 sleep 1 ''' } } stage('STEP2') { steps { sh ''' sleep 1 sleep 1 sleep 1 sleep 1 sleep 1 ''' } } stage('STEP3') { steps { sh ''' sleep 1 sleep 1 sleep 1 sleep 1 sleep 1 ''' } } } }