前提・実現したいこと
jenkinsのpipelineについて質問です。
あるjenkinsfileを読み込み、その内部でgitのcheckout処理を実行しています。
しかし、checkoutするデータが大きすぎるため、デフォルトのtimeout値である10分を超えてしまい、タイムアウトエラーとなってしまいます。
timeout値を変更したいのですが、うまくいきません。
変更方法を教えていただきたいです。
よろしくお願いいたします。
発生している問題・エラーメッセージ
~ Receiving objects: XX% (XX/XX), XX MiB | XX KiB/s at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2430) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2044) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:81) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:569) at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161) at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154) at hudson.remoting.UserRequest.perform(UserRequest.java:211) at hudson.remoting.UserRequest.perform(UserRequest.java:54) at hudson.remoting.Request$2.run(Request.java:369) at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at hudson.remoting.Engine$1.lambda$newThread$0(Engine.java:117) ... 1 more Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to JNLP4-connect connection from 127.0.0.1/127.0.0.1:49870 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1788) at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356) at hudson.remoting.Channel.call(Channel.java:998) at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132) at com.sun.proxy.$Proxy101.execute(Unknown Source) at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:907) at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1131) at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1167) at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:125) at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:93) at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:80) at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47) at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) ... 1 more
該当のソースコード
checkout([$class: 'GitSCM', branches: [[name: 'name']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'class', relativeTargetDir: './out']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'ID', url: 'url']]])
試したこと
【ファイル数を削減して実施】
10分以内に終わる程度までファイル数を削減し、checkoutを実施したところ、正しく動作しました。
【Additional Behaviors による時間設定】
このサイトを参考に行いました。
https://nzigen.com/ysawa/jenkins-git-clone-timeout/
設定した値はjenkinsfile内のcheckoutには適用されないようです。
【checkoutの引数でtimeout値の指定】
checkout関数内のextensionsでtimeout値を指定できるようなので実施してみましたが、10分から変更されませんでした。
このサイトを参考に行いました。
https://www.devopsroles.com/jenkins-pipeline-error-timeout-after-10-minutes/
試したときのコード:
checkout([$class: 'GitSCM', branches: [[name: 'name']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'class', relativeTargetDir: './out', timeout: 100]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'ID', url: 'url']]])
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。