Hi community,
According to the official documentation:
InfluxDB 3 Core limits query time ranges to 72 hours (both recent and historical) to ensure query performance.
However, when I run the following SQL query over a 13-day time range, I still receive complete results without any errors or truncation:
SELECT *
FROM mytable
WHERE time >= $start AND time <= $stop
ORDER BY time ASC
I’m a bit confused — does this limitation apply under certain conditions only?
Or has it been lifted/modified in the latest version?
Any clarification on how this 72-hour limit is enforced would be appreciated!
Thanks in advance