You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Detection of sources in analytics_sources.pipe is done using the current domain from the first event that arrives. This works fine on setups where there is only a single source, but when there are many it can lead to false positives: the current domain may change from event to event.
Expected Behavior
When multiple events arrive together they should be processed using the current domain from each one.
To Reproduce
Send multiple events with different href and referrer. The current domain from the first event is used for all of them.
Details
This behavior is particularly problematic with the Tinybird gatherer, as it coalesces multiple events and sends them together. It also leads to memory issues in certain setups with billions of events.
The text was updated successfully, but these errors were encountered:
Module
Tinybird Data Project
Describe the Bug
analytics_sources.pipe
is done using the current domain from the first event that arrives. This works fine on setups where there is only a single source, but when there are many it can lead to false positives: the current domain may change from event to event.Expected Behavior
When multiple events arrive together they should be processed using the current domain from each one.
To Reproduce
Send multiple events with different
href
andreferrer
. The current domain from the first event is used for all of them.Details
This behavior is particularly problematic with the Tinybird gatherer, as it coalesces multiple events and sends them together. It also leads to memory issues in certain setups with billions of events.
The text was updated successfully, but these errors were encountered: