Skip to content

Commit

Permalink
Spark 3.5: Use Awaitility instead of Thread.sleep() (apache#8853)
Browse files Browse the repository at this point in the history
  • Loading branch information
nastra authored Oct 17, 2023
1 parent cb20bdb commit 069d930
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
1 change: 1 addition & 0 deletions spark/v3.5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ project(":iceberg-spark:iceberg-spark-${sparkMajorVersion}_${scalaVersion}") {
testImplementation project(path: ':iceberg-core', configuration: 'testArtifacts')
testImplementation project(path: ':iceberg-data', configuration: 'testArtifacts')
testImplementation libs.sqlite.jdbc
testImplementation libs.awaitility
}

test {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@
*/
package org.apache.iceberg.spark.source;

import static org.assertj.core.api.Assertions.assertThat;

import java.time.Duration;
import org.apache.spark.sql.SparkSession;
import org.apache.spark.sql.execution.ui.SQLAppStatusStore;
import org.apache.spark.sql.execution.ui.SQLExecutionUIData;
import org.apache.spark.sql.execution.ui.SQLPlanMetric;
import org.junit.Assert;
import org.awaitility.Awaitility;
import scala.Option;

public class SparkSQLExecutionHelper {
Expand All @@ -42,28 +45,26 @@ public static String lastExecutedMetricValue(SparkSession spark, String metricNa
SQLExecutionUIData lastExecution = statusStore.executionsList().last();
Option<SQLPlanMetric> sqlPlanMetric =
lastExecution.metrics().find(metric -> metric.name().equals(metricName));
Assert.assertTrue(
String.format("Metric '%s' not found in last execution", metricName),
sqlPlanMetric.isDefined());
assertThat(sqlPlanMetric.isDefined())
.as(String.format("Metric '%s' not found in last execution", metricName))
.isTrue();
long metricId = sqlPlanMetric.get().accumulatorId();

// Refresh metricValues, they will remain null until the execution is complete and metrics are
// aggregated
int attempts = 3;
while (lastExecution.metricValues() == null && attempts > 0) {
try {
Thread.sleep(100);
attempts--;
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
Awaitility.await()
.atMost(Duration.ofMillis(500))
.pollInterval(Duration.ofMillis(100))
.untilAsserted(
() -> assertThat(statusStore.execution(lastExecution.executionId()).get()).isNotNull());

lastExecution = statusStore.execution(lastExecution.executionId()).get();
}
SQLExecutionUIData exec = statusStore.execution(lastExecution.executionId()).get();

Assert.assertNotNull("Metric values were not finalized", lastExecution.metricValues());
String metricValue = lastExecution.metricValues().get(metricId).getOrElse(null);
Assert.assertNotNull(String.format("Metric '%s' was not finalized", metricName), metricValue);
assertThat(exec.metricValues()).as("Metric values were not finalized").isNotNull();
String metricValue = exec.metricValues().get(metricId).getOrElse(null);
assertThat(metricValue)
.as(String.format("Metric '%s' was not finalized", metricName))
.isNotNull();
return metricValue;
}
}

0 comments on commit 069d930

Please sign in to comment.