InfluxDB is designed to enable fast reading and writing of data, at the expense of not allowing for updating.
If you only need to change or add field values and not the measurement name or tags then you can overwrite existing data by ensuring the same timestamp, tags, and tag values are used (You can think of the combination of the timestamp and tags forming a primary key or unique row).
If you need to change the measurement name or change tags in any way, then it’s quite an involved process that requires some thought to avoid making mistakes.
[Read More]