Inserting data to influxdb

Dear All,

I am Varun and I am very new to influxdb. I need your suggestion on how to insert records into influxdb

Scenario:
We have records extracted from mysqldb in CSV format and we have another table in in Influxdb which is collecting live data from the sensors. Now I would like to insert records in CSV file to live database table. Please let me know how to do that.

Note: Inserting records using line protocol will be tough as we have many records in CSV file.

Thanks & Regards
Varun

This sounds like a great use case for using Flux to either join the CSV data with your time series data or skip the CSV translation step and use the sql.from() function to pull the data directly from MySQL and join it with your sensor data.