Is it possible to have Kafka Streams order messages correctly by their timestamps, even if they arrived out of order?
E.g, say Message A with a timestamp of 5:00 PM and Message B with a timestamp of 5:15 PM, are sent. Message B arrives sooner than Message A, due to network issues. Is it possible to make sure that, across all consumers of Kafka Streams (even if they are across different servers, but have the same consumer group), Message A is consumed first, before Message B? Thanks.