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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3e8ab6c  [NO ISSUE] Increase Result Set TTL to 30 mins
3e8ab6c is described below

commit 3e8ab6c7e3d562b01e230e8701d6891eb405adf7
Author: Hussain Towaileb <[email protected]>
AuthorDate: Mon Jun 17 03:27:29 2019 +0300

    [NO ISSUE] Increase Result Set TTL to 30 mins
    
    - user model changes: no
    - storage format changes: no
    - interface changes: no
    
    Details:
    - Some tests (like TPC-DS) take a long time to complete,
    this would result in a timeout of the result set and failing
    the test. This change increase the TTL for the result set.
    
    Change-Id: I352924a865a2bd93f7254afaa0855e2caa715e39
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/3447
    Contrib: Jenkins <[email protected]>
    Integration-Tests: Jenkins <[email protected]>
    Tested-by: Jenkins <[email protected]>
    Reviewed-by: Hussain Towaileb <[email protected]>
    Reviewed-by: Murtadha Hubail <[email protected]>
---
 .../org/apache/asterix/api/common/AsterixHyracksIntegrationUtil.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/asterixdb/asterix-app/src/test/java/org/apache/asterix/api/common/AsterixHyracksIntegrationUtil.java
 
b/asterixdb/asterix-app/src/test/java/org/apache/asterix/api/common/AsterixHyracksIntegrationUtil.java
index 6eac23b..2c25b36 100644
--- 
a/asterixdb/asterix-app/src/test/java/org/apache/asterix/api/common/AsterixHyracksIntegrationUtil.java
+++ 
b/asterixdb/asterix-app/src/test/java/org/apache/asterix/api/common/AsterixHyracksIntegrationUtil.java
@@ -75,7 +75,7 @@ public class AsterixHyracksIntegrationUtil {
     public static final String DEFAULT_CONF_FILE = joinPath(RESOURCES_PATH, 
"cc.conf");
     private static final String DEFAULT_STORAGE_PATH = joinPath("target", 
"io", "dir");
     private static String storagePath = DEFAULT_STORAGE_PATH;
-    private static final long RESULT_TTL = TimeUnit.MINUTES.toMillis(5);
+    private static final long RESULT_TTL = TimeUnit.MINUTES.toMillis(30);
 
     static {
         System.setProperty("java.util.logging.manager", 
org.apache.logging.log4j.jul.LogManager.class.getName());

Reply via email to