My team recently set up a trial w/ InfluxDB 2.0 in order to test them out for use as a Time series database for our work. I have been trying to write a dataframe into Our InfluxDB cloud bucket similar to the solution provided here. and although we don’t get any errors and connect correctly (The only difference being the URL we use is an influxDB cloud url and not a local server, none of our data writes in. We tried various dataframes down to the simplest possible and it didn’t work.
Is this not possible to do to the cloud? The documentation I find suggests writing Data Points, InfluxDB line protocol, or batch writes in the line protocool format is the only way to do so.
Many thanks in advance if anyone could shed a light on this!
Code snippets posted in the forum, do not necessarily have to be error-free
I think there is a typo - also in the official documentation.
Should be: record=_data_frame
If you look at debug output you could see that following LineProtocol was written into InfluxDB: Speed,DateTime=2021-02-18\ 12:56:44.859396 Speed=“0.0” 0.
Could you share how your code and DataFrame looks like?