Hello,
In our system, we need to store the most recent timepoint consistently. As we process incoming events concurrently, we rely on the event.published_at timestamp to ensure that we always store the latest event. This is because we could not find any information about timepoints being incremental. However, we have encountered events with event.published_at timestamps that are either in the past or the future. Should we assume that the timepoints are incremental and check if they are greater than the timestamp of the most recently received event?
Thank you for your assistance in advance.