You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2019/08/06 12:51:26 UTC

[flink] 03/03: [FLINK-10368] Increase slot request timeout to harden YARN/Kerberos test

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

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

commit 515325694618d5b2dc8728bf40261f73d41512d7
Author: Aljoscha Krettek <al...@apache.org>
AuthorDate: Mon Aug 5 10:15:34 2019 +0200

    [FLINK-10368] Increase slot request timeout to harden YARN/Kerberos test
    
    Before, the tests were sometimes failing with
    NoResourceAvailableException. In the logs it was visible that the
    requested TaskExecutors (TMs) were connecting after the exception was
    thrown. Increasing the timeout therefore fixes the instability.
---
 flink-end-to-end-tests/test-scripts/test_yarn_kerberos_docker.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-end-to-end-tests/test-scripts/test_yarn_kerberos_docker.sh b/flink-end-to-end-tests/test-scripts/test_yarn_kerberos_docker.sh
index de64083..2b5eb2d 100755
--- a/flink-end-to-end-tests/test-scripts/test_yarn_kerberos_docker.sh
+++ b/flink-end-to-end-tests/test-scripts/test_yarn_kerberos_docker.sh
@@ -139,7 +139,7 @@ docker exec -it master bash -c "tar xzf /home/hadoop-user/$FLINK_TARBALL --direc
 FLINK_CONFIG=$(cat << END
 security.kerberos.login.keytab: /home/hadoop-user/hadoop-user.keytab
 security.kerberos.login.principal: hadoop-user
-slot.request.timeout: 60000
+slot.request.timeout: 120000
 containerized.heap-cutoff-min: 100
 END
 )