I just came across a surprising result. In 2025-09, there are many cases where event time dt (and revision.rev_dt) is in the past way behind ingestion time meta.dt.
See query and results here:
https://gitlab.wikimedia.org/-/snippets/267
It looks like all of these either have page_change_kind as 'create' or 'edit'. All create and edit events should results in brand new revision ids. For these kinds of events, IIRC, in EventBus, we set dt (event time) = Revision's create time. This makes sense, as we'd like the event time to match what MediaWiki consider's the event time: the time at which the revision was created.
So, I'd expect there to be very very little mismatch between dt and meta.dt, caused only by the small latency between revision create and eventgate's setting of meta.dt. Not weeks.
There may be edge cases where MediaWiki is 'importing' revisions from another wiki and causing create and edit events to be fired.
But, I ran the same query for data on 2025-01, before T391254: Hypothesis 5.2.13: EventBus Adoption of Domain Events was completed.
There are very few mismatches here, and where there are mismatches they are on the date border as might be expected.
I suspect something is different with event time since we migrated to DomainEvents.