Fault Tolerant Distributed Tracing with Apache Kafka and Jaeger

Using Jaeger tracing, I’ve been able to answer an important question that nearly every Apache Kafka project that I’ve worked on posed: how is data flowing through my distributed system? I’ve started writing about this on the Object Partners blog here and now I’m writing about what should be your next question: now that I’m relying on Jaeger to trace how data is flowing through my distributed system, what if Jaeger goes down?

If you want to answer that question and learn how you can use Kafka to make your Jaeger tracing solution more robust read my latest post on the Confluent blog here: https://www.confluent.io/blog/fault-tolerance-distributed-systems-tracing-with-apache-kafka-jaeger.

About the Author

Aaron Burk profile.

Aaron Burk

Principal Technologist

Outside of his full time role as a Principal Technologist, Aaron is a serial side project starter, the latest of which is a Spring Boot Java web app that manages contact info. With clients of Object Partners, Aaron is currently working with Apache Kafka, Apache Avro, Kafka Streams, Kafka Connect, Kafka Consumers/Producers, Spring Boot, and Java.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Blog Posts
Android Development for iOS Developers
Android development has greatly improved since the early days. Maybe you tried it out when Android development was done in Eclipse, emulators were slow and buggy, and Java was the required language. Things have changed […]
Add a custom object to your Liquibase diff
Adding a custom object to your liquibase diff is a pretty simple two step process. Create an implementation of DatabaseObject Create an implementation of SnapshotGenerator In my case I wanted to add tracking of Stored […]
Keeping Secrets Out of Terraform State
There are many instances where you will want to create resources via Terraform with secrets that you just don’t want anyone to see. These could be IAM credentials, certificates, RDS DB credentials, etc. One problem […]
Validating Terraform Plans using Open Policy Agent
When developing infrastructure as code using terraform, it can be difficult to test and validate changes without executing the code against a real environment. The feedback loop between writing a line of code and understanding […]