Hello! Looking at Amplitude's Raw Data Fields Documentation, a user's event stream is reported based on event_time.
event_time = client_event_time + (server_received_time - client_upload_time)
- What exactly is client_upload_time? Docs say "client_upload_time: Local timestamp (UTC) when the device uploaded the event." I'm not clear on what that means.
- We are thinking about incorporating backend events with our frontend events. Our backend is in Ruby so we'd use the HTTP V2 API asynchronously. Will performing asynchronously open the risk for un-ordered events?
Appreciate any insight. Thanks!