Skip to main content
Quick navigation

How about the latency impact?

View the full demo in realtime

You can either follow all the steps manually, or watch the recording

Review the docker compose environment

As can be seen from docker-compose.yaml the demo environment consists of the following services:

  • gateway1
  • gateway2
  • kafka-client
  • kafka1
  • kafka2
  • kafka3
  • schema-registry
cat docker-compose.yaml

Starting the docker environment

Start all your docker processes, wait for them to be up and ready, then run in background

  • --wait: Wait for services to be running|healthy. Implies detached mode.
  • --detach: Detached mode: Run containers in the background
docker compose up --detach --wait

Creating topic physical-kafka on kafka1

Creating on kafka1:

  • Topic physical-kafka with partitions:10 and replication-factor:1
kafka-topics \
--bootstrap-server localhost:9092,localhost:9093,localhost:9094 \
--replication-factor 1 \
--partitions 10 \
--create --if-not-exists \
--topic physical-kafka

Let's use EndToEndLatency that comes bundled with Kafka

arg1: broker_list arg2: topic arg3: num_messages arg4: producer_acks arg5: message_size_bytes

kafka-run-class kafka.tools.EndToEndLatency \
localhost:9092,localhost:9093,localhost:9094 \
physical-kafka 10000 all 255

Creating topic via-gateway on gateway1

Creating on gateway1:

  • Topic via-gateway with partitions:10 and replication-factor:1
kafka-topics \
--bootstrap-server localhost:6969 \
--replication-factor 1 \
--partitions 10 \
--create --if-not-exists \
--topic via-gateway

Let's use kafka-producer-perf-test that comes bundled with Kafka

arg1: broker_list arg2: topic arg3: num_messages arg4: producer_acks arg5: message_size_bytes arg6: property file

kafka-run-class kafka.tools.EndToEndLatency \
localhost:6969 \
via-gateway 10000 all 255 \
${KAFKA_CONFIG_FILE}

Tearing down the docker environment

Remove all your docker processes and associated volumes

  • --volumes: Remove named volumes declared in the "volumes" section of the Compose file and anonymous volumes attached to containers.
docker compose down --volumes

Conclusion

Gateway is end to end latency is enough for all use cases!