[
https://issues.apache.org/jira/browse/BEAM-8025?focusedWorklogId=430041&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-430041
]
ASF GitHub Bot logged work on BEAM-8025:
----------------------------------------
Author: ASF GitHub Bot
Created on: 04/May/20 08:12
Start Date: 04/May/20 08:12
Worklog Time Spent: 10m
Work Description: echauchot commented on a change in pull request #11578:
URL: https://github.com/apache/beam/pull/11578#discussion_r419274259
##########
File path:
sdks/java/io/cassandra/src/test/java/org/apache/beam/sdk/io/cassandra/CassandraIOTest.java
##########
@@ -153,18 +153,22 @@ public static void beforeClass() throws Exception {
private static Cluster buildCluster(CassandraEmbeddedServerBuilder builder) {
int tried = 0;
- while (tried < 3) {
+ int delay = 5000;
+ while (tried < 5) {
try {
return builder.buildNativeCluster();
} catch (NoHostAvailableException e) {
tried++;
try {
- Thread.sleep(1000L);
+ Thread.sleep(delay);
} catch (InterruptedException e1) {
Review comment:
Yeah, that was too quick of me to ignore the interrupted exception :)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 430041)
Time Spent: 5h 20m (was: 5h 10m)
> Cassandra IO classMethod test is flaky
> --------------------------------------
>
> Key: BEAM-8025
> URL: https://issues.apache.org/jira/browse/BEAM-8025
> Project: Beam
> Issue Type: Bug
> Components: io-java-cassandra, test-failures
> Affects Versions: 2.16.0
> Reporter: Kyle Weaver
> Assignee: Etienne Chauchot
> Priority: Critical
> Labels: flake
> Time Spent: 5h 20m
> Remaining Estimate: 0h
>
> The most recent runs of this test are failing:
> [https://builds.apache.org/job/beam_PreCommit_Java_Commit/7398/]
> [https://builds.apache.org/job/beam_PreCommit_Java_Commit/7399/console]
--
This message was sent by Atlassian Jira
(v8.3.4#803005)