I am having an applications that loads market data which has multiple timestamp values…
Currently I can store data with only one column as timestamp that is set by default.
I want to store other times as well in separate Fields. Is this possible?
I didn’t see the timestamp datatype in Influx docs and I couldn’t insert any data with timestamp as field.
I can confirm that InfluxDB supports only one time “column”.
but that does not prevent you form saving other timestamp in the database, a limit is that you can’t save them as datetime types, so you must fallback to strings and integers to save them.
Your error could be caused by an already existing field which is of type boolean (and now you are trying to write a numeric value or string in it, just delete the testTable measurement or store it in a different measurement in order to have a clean structure
Ok, thanks for confirming Giovanni. I’ll look through what changes we can make to store the other timestamp values either as string or int… thanks for the help.