Skip to content

Commit 00c0d57

Browse files
authored
Embedded tests: Use regular Kafka image. (apache#18203)
This patch switches the image from apache/kafka-native (GraalVM ahead-of-time compiled) to apache/kafka (regular JVM). Previously the kafka-native image was used, because it boots up more quickly. However, on my machine it segfaults on ~5% of bootups, causing tests to be flaky. Container startup has also been flaky in GitHub Actions, so something similar may be happening there.
1 parent ba21070 commit 00c0d57

File tree

1 file changed

+1
-1
lines changed
  • extensions-core/kafka-indexing-service/src/test/java/org/apache/druid/indexing/kafka/simulate

1 file changed

+1
-1
lines changed

extensions-core/kafka-indexing-service/src/test/java/org/apache/druid/indexing/kafka/simulate/KafkaResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public KafkaResource()
4444
super();
4545
}
4646

47-
private static final String KAFKA_IMAGE = "apache/kafka-native:4.0.0";
47+
private static final String KAFKA_IMAGE = "apache/kafka:4.0.0";
4848

4949
@Override
5050
protected KafkaContainer createContainer()

0 commit comments

Comments
 (0)