This is an automated email from the ASF dual-hosted git repository. twalthr pushed a commit to branch cron-1.7-e2e in repository https://gitbox.apache.org/repos/asf/flink.git
commit fc023e6d06c9859938934d75ac14635a313a4e2c Author: Timo Walther <[email protected]> AuthorDate: Thu Nov 8 08:07:45 2018 +0100 [hotfix] Change splits because of Travis time constraints --- .travis.yml | 12 ++++++------ splits/{split_docker_e2e.sh => split_container.sh} | 2 ++ splits/{split_kubernetes_e2e.sh => split_heavy.sh} | 4 +++- splits/split_misc.sh | 7 ++----- splits/split_misc_hadoopfree.sh | 3 ++- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index e2f9ae4..7b98f7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,12 +69,12 @@ matrix: - REMOTE="apache" - BRANCH="release-1.7" - PROFILE="-Dhadoop.version=2.8.3" - - SCRIPT="split_docker_e2e.sh" + - SCRIPT="split_container.sh" - env: - REMOTE="apache" - BRANCH="release-1.7" - PROFILE="-Dhadoop.version=2.8.3" - - SCRIPT="split_kubernetes_e2e.sh" + - SCRIPT="split_heavy.sh" - env: - REMOTE="apache" - BRANCH="master" @@ -99,12 +99,12 @@ matrix: - REMOTE="apache" - BRANCH="master" - PROFILE="-Dhadoop.version=2.8.3 -Dscala-2.12" - - SCRIPT="split_docker_e2e.sh" + - SCRIPT="split_container.sh" - env: - REMOTE="apache" - BRANCH="master" - PROFILE="-Dhadoop.version=2.8.3 -Dscala-2.12" - - SCRIPT="split_kubernetes_e2e.sh" + - SCRIPT="split_heavy.sh" - env: - REMOTE="apache" - BRANCH="master" @@ -129,12 +129,12 @@ matrix: - REMOTE="apache" - BRANCH="master" - PROFILE="-DwithoutHadoop" - - SCRIPT="split_docker_e2e.sh" + - SCRIPT="split_container.sh" - env: - REMOTE="apache" - BRANCH="master" - PROFILE="-DwithoutHadoop" - - SCRIPT="split_kubernetes_e2e.sh" + - SCRIPT="split_heavy.sh" git: depth: 100 diff --git a/splits/split_docker_e2e.sh b/splits/split_container.sh similarity index 95% rename from splits/split_docker_e2e.sh rename to splits/split_container.sh index ff0817b..c62905f 100755 --- a/splits/split_docker_e2e.sh +++ b/splits/split_container.sh @@ -45,5 +45,7 @@ echo "Flink distribution directory: $FLINK_DIR" run_test "Running Kerberized YARN on Docker test " "$END_TO_END_DIR/test-scripts/test_yarn_kerberos_docker.sh" +run_test "Run kubernetes test" "$END_TO_END_DIR/test-scripts/test_kubernetes_embedded_job.sh" + printf "\n[PASS] All tests passed\n" exit 0 diff --git a/splits/split_kubernetes_e2e.sh b/splits/split_heavy.sh similarity index 87% rename from splits/split_kubernetes_e2e.sh rename to splits/split_heavy.sh index 21c8e8d..169ee31 100755 --- a/splits/split_kubernetes_e2e.sh +++ b/splits/split_heavy.sh @@ -43,7 +43,9 @@ echo "Flink distribution directory: $FLINK_DIR" # run_test "<description>" "$END_TO_END_DIR/test-scripts/<script_name>" -run_test "Run kubernetes test" "$END_TO_END_DIR/test-scripts/test_kubernetes_embedded_job.sh" +run_test "Heavy deployment end-to-end test" "$END_TO_END_DIR/test-scripts/test_heavy_deployment.sh" + +run_test "ConnectedComponents iterations with high parallelism end-to-end test" "$END_TO_END_DIR/test-scripts/test_high_parallelism_iterations.sh 25" printf "\n[PASS] All tests passed\n" exit 0 diff --git a/splits/split_misc.sh b/splits/split_misc.sh index abc1bcb..62d4b34 100755 --- a/splits/split_misc.sh +++ b/splits/split_misc.sh @@ -58,7 +58,8 @@ run_test "Stateful stream job upgrade end-to-end test" "$END_TO_END_DIR/test-scr run_test "Elasticsearch (v1.7.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 1 https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.1.tar.gz" run_test "Elasticsearch (v2.3.5) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 2 https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.3.5/elasticsearch-2.3.5.tar.gz" run_test "Elasticsearch (v5.1.2) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 5 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.2.tar.gz" -run_test "Elasticsearch (v6.3.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 6 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.1.tar.gz" +# Disabled because of test instability, see FLINK-10361 +#run_test "Elasticsearch (v6.3.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 6 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.1.tar.gz" run_test "Quickstarts Java nightly end-to-end test" "$END_TO_END_DIR/test-scripts/test_quickstarts.sh java" run_test "Quickstarts Scala nightly end-to-end test" "$END_TO_END_DIR/test-scripts/test_quickstarts.sh scala" @@ -70,9 +71,5 @@ run_test "State TTL RocksDb backend end-to-end test" "$END_TO_END_DIR/test-scrip run_test "SQL Client end-to-end test" "$END_TO_END_DIR/test-scripts/test_sql_client.sh" -run_test "Heavy deployment end-to-end test" "$END_TO_END_DIR/test-scripts/test_heavy_deployment.sh" - -run_test "ConnectedComponents iterations with high parallelism end-to-end test" "$END_TO_END_DIR/test-scripts/test_high_parallelism_iterations.sh 25" - printf "\n[PASS] All tests passed\n" exit 0 diff --git a/splits/split_misc_hadoopfree.sh b/splits/split_misc_hadoopfree.sh index 3d66896..8281300 100755 --- a/splits/split_misc_hadoopfree.sh +++ b/splits/split_misc_hadoopfree.sh @@ -52,7 +52,8 @@ run_test "Stateful stream job upgrade end-to-end test" "$END_TO_END_DIR/test-scr run_test "Elasticsearch (v1.7.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 1 https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.1.tar.gz" run_test "Elasticsearch (v2.3.5) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 2 https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.3.5/elasticsearch-2.3.5.tar.gz" run_test "Elasticsearch (v5.1.2) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 5 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.2.tar.gz" -run_test "Elasticsearch (v6.3.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 6 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.1.tar.gz" +# Disabled because of test instability, see FLINK-10361 +#run_test "Elasticsearch (v6.3.1) sink end-to-end test" "$END_TO_END_DIR/test-scripts/test_streaming_elasticsearch.sh 6 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.1.tar.gz" run_test "Quickstarts Java nightly end-to-end test" "$END_TO_END_DIR/test-scripts/test_quickstarts.sh java" run_test "Quickstarts Scala nightly end-to-end test" "$END_TO_END_DIR/test-scripts/test_quickstarts.sh scala"
