I'd go check, but it appears users no longer have the ability to DescribeConsumerGroups, DescribeCluster and DescribeConfigs so I can't use Kadeck, a useful UI for troubleshooting.
Checking with a Python script though:
==============================Topic : prod-1010-Darwin-Train-Information-Push-Port-IIII2_0-JSON
Partition : 0
Offset : 318596102
Key : b'{"messageID":"ID:liv1-dwnpp102-49747-638894340902160133-1:22:1:1:323040199"}'
Value : <built-in method value of cimpl.Message object at 0x105137a40>
==============================
==============================
Topic : prod-1010-Darwin-Train-Information-Push-Port-IIII2_0-JSON
Partition : 0
Offset : 318596103
Key : b'{"messageID":"ID:liv1-dwnpp102-49747-638894340902160133-1:22:1:1:323040201"}'
Value : <built-in method value of cimpl.Message object at 0x1051b1240>
==============================
==============================
Topic : prod-1010-Darwin-Train-Information-Push-Port-IIII2_0-JSON
Partition : 0
Offset : 318596104
Key : b'{"messageID":"ID:liv1-dwnpp102-49747-638894340902160133-1:22:1:1:323040198"}'
Value : <built-in method value of cimpl.Message object at 0x105137a40>
==============================
If the keys are still the JMS messageID header, then the messages will occasionally be out-of-order. In fact, even within a single partition, the messages don't appear to be in order - the final component of the messageID is the sequence number, and it jumps from -199 to -201, then back to -198 again. Looking across both partitions, all the messages are there, so to quote Eric Morcambe, "I'm playing all the right notes, but not necessarily in the right order".
So the ordering message exists issue still.
Peter