This is an automated email from the ASF dual-hosted git repository.

zabetak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 9517a54d43a HIVE-29081: CI fails intermittently cause some runs exceed 
ephemeral storage limits (#5949)
9517a54d43a is described below

commit 9517a54d43a0aedcbecc479b585b02c6f32b3b19
Author: Stamatis Zampetakis <zabe...@gmail.com>
AuthorDate: Thu Jul 10 11:29:22 2025 +0200

    HIVE-29081: CI fails intermittently cause some runs exceed ephemeral 
storage limits (#5949)
    
    Increase request and limit based on the disk usage stats gathered in a 
recent run.
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 041599ed99b..d90566f05a6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -135,8 +135,8 @@ def hdbPodTemplate(closure) {
         resourceLimitCpu: '8000m',
         resourceRequestMemory: '6400Mi',
         resourceLimitMemory: '12000Mi',
-        resourceRequestEphemeralStorage: '10Gi',
-        resourceLimitEphemeralStorage: '20Gi',
+        resourceRequestEphemeralStorage: '15Gi',
+        resourceLimitEphemeralStorage: '30Gi',
         envVars: [
             envVar(key: 'DOCKER_HOST', value: 'tcp://localhost:2376'),
             envVar(key: 'DOCKER_TLS_VERIFY', value: '1'),

Reply via email to