When it comes to real-time segments taking precede...
# general
c
When it comes to real-time segments taking precedence over offline segments during query time, is it hard coded to be 24 hours, or it’d be a merge between real-time and offline segments, so if there’s no data in real-time during the specified time range, aggregates from offline segments would be served as query result?
its not hardcoded
image.png
c
Does this apply if it’s just an offline table, instead of hybrid table?
k
no, only for hybrid table
c
Yep got it. Thanks.
In case of hybrid tables, the brokers ensure that the overlap between realtime and offline segment data is queried exactly once, by performing offline and realtime federation.
👍 1