InfluxDB - Migrate data from version 1 to version 2 using local Docker containers

Dec 11, 2023

The scope of this document is to provide a possibility to transfer data from Influx DB Version 1 to InfluxDB Version 2.

Export Data from InfluxDB Version 1.x

version: '3'
services:
  influxdb:
    image: influxdb:1.8.4-alpine
    container_name: influxdbv1
    restart: always
    ports:
      - "8086:8086"
    volumes:
      - ./data:/var/lib/influxdb
      - ./config:/etc/influxdb
# find ID of influxV1 container
docker ps
# execute bash in the container
docker exec -it  bash
influx_inspect export -database "dbname" -datadir "/var/lib/influxdb/data" -waldir "/var/lib/influxdb/wal" -out "/var/lib/influxdb/backup.lp" -compress -lponly

Import Data into InfluxV2

version: '3'
services:
  influxdb:
    image: influxdb:latest
    container_name: influxdb
    restart: always
    ports:
      - "8086:8086"
    volumes:
      - ./data:/var/lib/influxdb2
      - ./config:/etc/influxdb2
      - ../influxv1/data/:/etc/influxbu # <-- this is the folder where the previously created backup is located
    environment:
      - INFLUXDB_ADMIN_USER=user
      - INFLUXDB_ADMIN_PASSWORD=1234
# find ID of influxV1 container
docker ps
# execute bash in the container
docker exec -it  bash
influx write --org  --bucket  --token  --file /etc/influxbu/backup.lp --compression gzip