Skip to content

Commit

Permalink
[FLINK-21853][e2e] Reduce the number JM kills in test_ha_per_job_clus…
Browse files Browse the repository at this point in the history
…ter_datastream.sh and test_ha_datastream.sh

This commit reduces the number of JM kills in test_ha_per_job_cluster_datastream.sh and test_ha_datastream.sh because on
CI killing the JM 3 times can take more than the current timeout (15 minutes) (2 minutes per successful checkpoint, 8
successful checkpoints required to pass).

This closes apache#17139.
  • Loading branch information
tillrohrmann committed Oct 1, 2021
1 parent 9c2e284 commit 31df254
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flink-end-to-end-tests/test-scripts/test_ha_datastream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function run_ha_test() {
local INCREM=$4
local ZOOKEEPER_VERSION=$5

local JM_KILLS=3
local JM_KILLS=2
local CHECKPOINT_DIR="${TEST_DATA_DIR}/checkpoints/"

CLEARED=0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function run_ha_test() {
local INCREM=$4
local ZOOKEEPER_VERSION=$5

local JM_KILLS=3
local JM_KILLS=2

CLEARED=0

Expand Down

0 comments on commit 31df254

Please sign in to comment.