Migrating data from Postgresql to influxdb

Is there any way I can migrate my data from postgresql to influxdb ?

@Luv The postgresql_extensible plugin might help you out. Otherwise I would advise writing a script to do it.

I have just spent a full day writing a script (in Perl) to move data from a PostgreSQL table into InfluxDB. I suspect that trying to modify the postgresql_extensible plugin would take considerably longer :slight_smile:

FWIW, my script uses DBD:Pg fetchall_arrayref() to get the table rows in batches of a few thousand rows at a time, then converts each row to line protocol and uploads the batch via HTTP to InfluxDB. It even performs SELECT INTO queries to do data aggregation on each batch as it goes. (Necessary because CQs don’t do historical data … )

Oh, yes @jackzampolin , that will work completely.

@JeremySTX I am not sure now that what data I need to migrate, does your script gets all the data OR we can select the database?

My script pulls all data out of a specific table and adds the tags we need for our application. Table columns become field names, with some renamed to something more suitable to the current state of our application (compared to when the table was created, a few years ago).

The script is not really something that can easily be shared; my point was that the script was probably easier to write than to spend the time understanding the plugin.

1 Like

@Zir0-93- Is the link removed?

Wrote a short Python script to migrate SQL records to InfluxDB here.

It appears to have moved to Muntazir Fadhel - Easily Migrate Postgres/MySQL Records to InfluxDB

Antony.