testcontainers-rs-modules-community
testcontainers-rs-modules-community copied to clipboard
feat: add support for `apache\kafka` docker image
Up till now kafka test container used confluentinc/cp-kafka, recently kafka started producing two official
images apache\kafka and apache\kafka-native which may use kraft protocol, thus no zookeeper
instance is needed.
apache\kafka-native image has kafka server compiled using GraalVM which decreases container startup and memory consumption.
Default image is apache\kafka-native which provide fast starting speed.
More details:
I've used this commit to fix mongo example missing feature which was failing tests
thanks @CommanderStorm, I hope your comments have been addressed