dajac commented on code in PR #14417:
URL: https://github.com/apache/kafka/pull/14417#discussion_r1355162764
##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java:
##########
@@ -709,6 +727,16 @@ public void complete(Throwable exception) {
}
}
+ @Override
+ public long enqueueTimeMs() {
+ return this.enqueueTimeMs;
+ }
+
+ @Override
+ public void setEnqueueTimeMs(long enqueueTimeMs) {
+ this.enqueueTimeMs = enqueueTimeMs;
+ }
Review Comment:
Instead of setting it like this, would it be possible to just let every
event have a created time ms? The event is usually created just before being
enqueued so it would be equivalent in the end.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]