Status
Current state: Under Discussion"
Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]
JIRA:
Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).
Motivation
When debugging Kafka Streams application performance, it can be hard to isolate the problem to a bottleneck in Kafka Streams. The poll-ratio and processing-ratio metrics reported today are helpful, but limited in sample size: they tell you the proportion of time spent in poll or processing records for the last poll loop at an instant in time. They are also a bit too coarse-grained: poll wraps some computationally-significant work, like calls to consumer interceptors. Really, we just want to know the proportion of time the application was processing records vs blocked waiting on Kafka. This KIP proposes a new metric, called `blocked-time-total` that measures the total time a thread spent blocked since it was started. Users can sample this metric periodically and use the difference between samples to measure time blocked during an interval.
Public Interfaces
New Metrics
blocked-time-total
tags: thread-id, application-id
description: the total time the Kafka Streams thread spent blocked on Kafka.
flush-time-total
tags: producer-id
description: the total time the Producer spent in `Producer.flush`
txn-send-offsets-time-total
tags: producer-id
description: the total time the Producer spent sending offsets to transactions (for EOS).
txn-commit-time-total
tags: producer-id
description: the total time the Producer spent committing transactions (for EOS).
txn-abort-time-total
tags: producer-id
description: the total time the Producer spent aborting transactions (for EOS).
commit-sync-time-total
tags: consumer-id
description: the total time the Consumer spent committing offsets (for AOS).
thread-start-time
tags: thread-id, application-id
description: the epoch time the Kafka Streams thread was started. This is useful for computing the processing ratio during the first interval after the thread starts.
Proposed Changes
flush-time-total: this will be a Producer metric computed as the cumulative sum of time elapsed during calls to Producer.flush
.
txn-send-offsets-time-total: this will be a Producer metric computed as the cumulative sum of time elapsed during calls to Producer.sendOffsetsToTransaction
.
txn-commit-time-total: this will be a Producer metric computed as the cumulative sum of time elapsed during calls to Producer.commitTransaction
.
txn-abort-time-total: this will be a Producer metric computed as the cumulative sum of time elapsed during calls to Producer.abortTransaction.
commit-sync-time-total: this will be a Consumer metric computed as the cumulative sum of time elapsed during calls to Consumer.commitSync
.
blocked-time-total: this will be a Value
that returns the sum of the following metrics:
- consumer’s
io-waittime-total
- consumer’s
iotime-total
- consumer’s
commit-sync-time-total
- restore consumer’s
io-waittime-total
- restore consumer’s
iotime-total
- admin client’s
io-waittime-total
- admin client’s
iotime-total
- producer’s
bufferpool-wait-time-total
- producer's
flush-time-total
- producer's
txn-send-offsets-time-total
- producer's
txn-commit-time-time-total
- producer's
txn-abort-time-total
Compatibility, Deprecation, and Migration Plan
We're not changing or removing existing metrics, so compatibility/migration is not a concern.
Rejected Alternatives
One alternative we considered was to compute a blocked-ratio at a fixed interval, or possibly a configurable interval. It seems more flexible to just expose the total blocked time and leave windowing to the user.