Closed
Description
I am working on a dataset which contains >10k fields in a measurement. I would like to query data the whole dataset of a given day (or several days) which makes the size of returned dataset very large. Here is my sample flux query:
from(bucket: "_bucket")
|> range(start: _start, stop: _stop)
|> filter(fn: (r) =>
r._measurement == "_measurement"
)
Is it a good idea to add a kwarg stream: bool = False
and then the API return the generator directly
when stream=True
?