Skip to content

Commit

Permalink
Increase premerge databricks IDLE_TIMEOUT to 4 hours (#4589)
Browse files Browse the repository at this point in the history
Signed-off-by: Peixin Li <pxli@nyu.edu>
  • Loading branch information
pxLi authored Jan 21, 2022
1 parent 7eb6097 commit 2154180
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jenkins/Jenkinsfile-blossom.premerge
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pipeline {
CUSTOM_WORKSPACE = "/home/jenkins/agent/workspace/${BUILD_TAG}"
CUDA_CLASSIFIER = 'cuda11'
// DB related ENVs
IDLE_TIMEOUT = '180' // 3 hours
IDLE_TIMEOUT = '240' // 4 hours
NUM_WORKERS = '0'
DB_TYPE = getDbType()
DATABRICKS_HOST = "${PARAM_MAP["$DB_TYPE"][ID_HOST]}"
Expand Down Expand Up @@ -395,7 +395,7 @@ pipeline {
}
steps {
script {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 5, unit: 'HOURS') {
unstash "source_tree"
databricksBuild()
}
Expand Down Expand Up @@ -430,7 +430,7 @@ pipeline {
}
steps {
script {
timeout(time: 4, unit: 'HOURS') {
timeout(time: 5, unit: 'HOURS') {
unstash "source_tree"
databricksBuild()
}
Expand Down

0 comments on commit 2154180

Please sign in to comment.