Documentation

Automatically upgrade from InfluxDB 1.x to 2.7

Use the influxd upgrade command to upgrade InfluxDB 1.x to InfluxDB 2.7. The influxd upgrade command is part of the v2 influxd service and provides an in-place upgrade from InfluxDB 1.x to InfluxDB 2.7.

To complete the upgrade process, ensure that you are using the InfluxDB 2.7 influxd binary that includes the influxd upgrade command.

The upgrade process does the following:

  1. Reads the existing InfluxDB 1.x configuration file and generates an equivalent InfluxDB 2.7 configuration file at ~/.influxdbv2/config.toml or at a custom path specified with the --v2-config-path flag.
  2. Upgrades metadata and storage engine paths to ~/.influxdbv2/meta and ~/.influxdbv2/engine, respectively (unless otherwise specified).
  3. Writes existing data and write ahead log (WAL) files into InfluxDB 2.7 buckets.
  4. Creates database and retention policy (DBRP) mappings required to query data with InfluxQL.
  5. Reads existing metadata and migrates non-admin users, passwords, and permissions into a 1.x authorization–compatible store within ~/influxdbv2/influxdb.bolt.

When starting InfluxDB 2.7 after running influxdb upgrade, InfluxDB must build a new time series index (TSI). Depending on the volume of data present, this may take some time.

Important considerations before you begin

Before upgrading to InfluxDB 2.7, consider the following guidelines. Some or all might apply to your specific installation and use case. The sections below contain our recommendations for addressing possible gaps in the upgrade process. Consider whether you need to address any of the following before upgrading.

Available operating system, container, and platform support

InfluxDB 2.7 is currently available for macOS, Linux, and Windows.

InfluxDB 2.7 requires 64-bit operating systems.

Continuous queries

Continuous queries are replaced by tasks in InfluxDB 2.7. By default, influxd upgrade writes all continuous queries to ~/continuous_queries.txt. To convert continuous queries to InfluxDB tasks, see Migrate continuous queries to tasks.

Supported protocols

InfluxDB 2.7 doesn’t directly support the alternate write protocols supported in InfluxDB 1.x (CollectD, Graphite, OpenTSDB, Prometheus, UDP). Use Telegraf to translate these protocols to line protocol.

Kapacitor

You can continue to use Kapacitor with InfluxDB OSS 2.7 under the following scenarios:

  • Kapacitor Batch-style TICKscripts work with the 1.x read compatible API. Existing Kapacitor user credentials should continue to work using the 1.x compatibility API.
  • InfluxDB 2.7 has no subscriptions API and does not support Kapacitor stream tasks. To continue using stream tasks, write data directly to both InfluxDB and Kapacitor. Use Telegraf and its InfluxDB output plugin to write to Kapacitor and the InfluxDB v2 output plugin to write to InfluxDB v2.
Example Telegraf configuration
# Write to Kapacitor
[[outputs.influxdb]]
  urls = ["http://localhost:9092"]
  database = "example-db"
  retention_policy = "example-rp"

# Write to InfluxDB 2.7
[[outputs.influxdb]]
  urls = ["http://localhost:8086"]
  database = "example-db"
  retention_policy = "example-rp"
  username = "v1-auth-username"
  password = "v1-auth-password"

User migration

influxd upgrade migrates existing 1.x users and their permissions except the following users:

Review 1.x user privileges

If using an admin user for visualization or Chronograf administrative functions, create a new read-only user before upgrading:

Create a read-only 1.x user
> CREATE USER <username> WITH PASSWORD '<password>'
> GRANT READ ON <database> TO "<username>"

InfluxDB 2.7 only grants admin privileges to the primary user set up during the InfluxDB 2.7 upgrade. This provides you the opportunity to reassess who to grant admin permissions to when setting up InfluxDB 2.7.

Dashboards

You can continue to use your existing dashboards and visualization tools with InfluxDB 2.7 via the 1.x /query compatibility API. The upgrade process creates DBRP mappings to ensure existing users can execute InfluxQL queries with the appropriate permissions.

However, if your dashboard tool is configured using a user with admin permissions, you will need to create a new read-only user with the appropriate database permissions before upgrading. This new username and password combination should be used within the data source configurations to continue to provide read-only access to the underlying data.

Ensure your dashboards are all functioning before upgrading.

Other data

The 1.x _internal database is not migrated with the influxd upgrade command. To collect, store, and monitor similar internal InfluxDB metrics, create an InfluxDB 2.7 scraper to scrape data from the /metrics endpoint and store them in a bucket.

Secure by default

InfluxDB 2.7 requires authentication and does not support the InfluxDB 1.x auth-enabled = false configuration option.

Before upgrading to 2.7, enable authentication in your InfluxDB 1.x instance and test your credentials to ensure your applications, agents, and visualization tools can connect to InfluxDB.

If you upgrade with auth-enabled = false, the upgrade may appear complete, but client requests to InfluxDB 2.7 may be silently ignored (you won’t see a notification that the request was denied).

In-memory indexing option

InfluxDB 2.7 doesn’t support in-memory (inmem) indexing. The following InfluxDB 1.x configuration options associated with inmem indexing are ignored in the upgrade process:

  • max-series-per-database
  • max-values-per-tag

Interactive shell

The InfluxDB 2.7 influx CLI includes an interactive InfluxQL shell for executing InfluxQL queries. To start an InfluxQL shell:

  1. Download and install the influx CLI.
  2. Set up your influx CLI authentication credentials.
  3. Run the influx v1 shell command.

For more information see:

To build an interactive shell to execute Flux queries, compile and build a command line Flux REPL from source.

Perform the upgrade

If you’ve considered the guidance above and are ready to proceed, follow these steps to upgrade your InfluxDB 1.x to InfluxDB 2.7.

  1. Download InfluxDB OSS 2.7. Unpackage the InfluxDB binaries and place them in your $PATH.

  2. Stop your running InfluxDB 1.x instance. Make a backup copy of all 1.x data before upgrading:

    cp -R .influxdb/ .influxdb_bak/
    
  3. Use influxd version to ensure you are running InfluxDB 2.7 from the command line. The influxd upgrade command is only available in InfluxDB 2.7.

  4. If your 1.x configuration file is at the default location, run:

    influxd upgrade
    

    Upgrade .deb packages

    When installed from a .deb package, InfluxDB 1.x and 2.x run under the influxdb user. If you’ve installed both versions from .deb packages, run the upgrade command as the influxdb user:

    sudo -u influxdb influxd upgrade
    

    If your 1.x configuration file is not at the default location, run:

    influxd upgrade --config-file <path to v1 config file>
    

    To store the upgraded 2.7 configuration file in a custom location, include the --v2-config-path flag:

    influxd upgrade --v2-config-path <destination path for v2 config file>
    
  5. Follow the prompts to set up a new InfluxDB 2.7 instance.

    Welcome to InfluxDB 2.7 upgrade!
    Please type your primary username: <your-username>
    
    Please type your password:
    
    Please type your password again:
    
    Please type your primary organization name: <your-org>
    
    Please type your primary bucket name: <your-bucket>
    
    Please type your retention period in hours.
    Or press ENTER for infinite:
    
    You have entered:
      Username:          <your-username>
      Organization:      <your-org>
      Bucket:            <your-bucket>
      Retention Period:  infinite
    Confirm? (y/n): y
    

The output of the upgrade prints to standard output. It is also saved (for troubleshooting and debugging) in the current directory to a file called upgrade.log located in the home directory of the user running influxdb upgrade.

Post-upgrade

Verify 1.x users were migrated to 2.7

To verify 1.x users were successfully migrated to 2.7, run influx v1 auth list.

Add authorizations for external clients

If your InfluxDB 1.x instance did not have authentication enabled and the influx v1 auth list doesn’t return any users, external clients connected to your 1.x instance will not be able to access InfluxDB 2.7, which requires authentication.

For these external clients to work with InfluxDB 2.7:

  1. Manually create a 1.x-compatible authorization.
  2. Update the client configuration to use the username and password associated with your 1.x-compatible authorization.

Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Flux is going into maintenance mode and will not be supported in InfluxDB 3.0. This was a decision based on the broad demand for SQL and the continued growth and adoption of InfluxQL. We are continuing to support Flux for users in 1.x and 2.x so you can continue using it with no changes to your code. If you are interested in transitioning to InfluxDB 3.0 and want to future-proof your code, we suggest using InfluxQL.

For information about the future of Flux, see the following: