Slackbot
12/20/2022, 7:09 AMRohan Garg
12/20/2022, 10:03 AMLong.MAX_VALUE in java (9223372036854775807). Druid by default uses an ETERNITY time interval filter on the queries which corresponds to [Long.MIN_VALUE, Long.MAX_VALUE] epoch range.Rohan Garg
12/20/2022, 1:22 PMLong.MAX_VALUE / 2 and Long.MIN_VALUE / 2 instead of Long.MAX_VALUE and Long.MIN_VALUE
It is so because the interval duration is needed to be storable in a java long - (Long.MAX_VALUE - Long.MIN_VAUE can't come in a java long but Long.MAX_VALUE / 2 - Long.MIN_VALUE / 2 ) canVadim
12/20/2022, 4:26 PM