I try to convert a fild to float using the toFloat command, using a task.
from(bucket: "ite")
|> filter(fn: (r) =>
(r._measurement == "ITE02" and r._field == "ITE02_T"))
|> toFloat()
Runing the task fails with the following error:
|2020-11-18 09:41:07 +0100|Started task from script: “option task = {name: “float”, every: 600s}\n\nfrom(bucket: “ite”)\n\t|> filter(fn: ® =>\n\t\t(r._measurement == “ITE02” and r._field == “ITE02_T”))\n\t|> toFloat()”|
| — | — | — | — |
|2020-11-18 09:41:08 +0100|Completed(failed)|
|2020-11-18 09:41:08 +0100|Error exhausting result iterator; Err: error in building plan while starting program: cannot submit unbounded read to “ite”; try bounding ‘from’ with a call to ‘range’: error in building plan while starting program: cannot submit unbounded read to “ite”; try bounding ‘from’ with a call to ‘range’|