Skip to content

InfluxDB

Published On:
Apr 1, 2025
Last Updated:
Apr 1, 2025

InfluxDB is a popular time-series database (TSDB) developed by InfluxData. It is optimized for the storage and retrieval of time-series data such as metrics and IoT sensor data.

InfluxDB organizes data into buckets. A bucket combines the concept of a database and retention policy (the amount of time data is kept in the database before being automatically deleted).1

The InfluxDB logo.

Documentation for InfluxDB can be confusing. Often you will come across documentation which states “You are currently viewing documentation specific to InfluxDB Cloud powered by the TSM storage engine, which offers different functionality than InfluxDB Cloud Serverless powered by the v3 storage engine.” (e.g. here).

One interesting note is that as of April 2025, you cannot delete data from InfluxDB Cloud Serverless. This can be annoying and make it tricky to manage data if you incorrectly write the wrong thing (which typically happens many times over during initial development!). InfluxDB OSS v2 and InfluxDB Cloud (TSM) both support deleting data.2

Interacting with InfluxDB Using Python

There are two main libraries you should use:

  1. influxdata/influxdb-client-python: Use this if you are using Influx 2.x.
  2. InfluxCommunity/influxdb3-python: Use this if you are using Influx 3.x.

InfluxDB 3.x

InfluxDB 3 was designed to remove limitations present in the Time Structured Merge Tree (TSM) storage engine (used in what is called InfluxDB Cloud (TSM)). InfluxDB 3.x products no longer support the Flux query language. Instead, they support the InfluxQL query language (as well as native SQL support). All InfluxDB accounts and organizations created through cloud3.influxdata.com on or after January 31, 2023 are powered by InfluxDB 3.3

Data Concepts

A measurement consists of multiple tags and fields. Each tag is an indexed key-value pair (the tag key and tag value). Each field is a non-indexed key-value pair (the field key and field value). Tags, being indexed, are faster to query than fields.

Interacting with InfluxDB 3.x Using Python

Install influxdb3-python into your Python environment using pip:

Terminal window
pip install influxdb3-python

You will need to be using Python 3.6 or later. It is recommended to use 3.11 or later for the best support.4

To initialize a client, you can use the following code:

from influxdb_client import InfluxDBClient
client = InfluxDBClient3(token="your-token",
host="your-host",
org="your-org",
database="your-database")

Querying

To query data, use the client.query() method. You can tell the client which query language you are using. The example below uses sql, and also provides the mode="pandas" parameter to automatically convert the result into a pandas DataFrame.

df = client.query(
query="SELECT * FROM my_measurement",
language="sql",
mode="pandas")
print(df)

To list all the measurements in your database:

# List all measurements in the database
df = client.query(
query=f'SHOW MEASUREMENTS',
language="influxql",
mode="pandas")
print(df)

This should print something like this:

iox::measurement name
0 measurements my_measurement
df = client.query(
query=f'SHOW COLUMNS FROM my_table',
language="sql",
mode="pandas")
print(df)

This will print something like this:

table_catalog table_schema table_name column_name data_type is_nullable
0 public iox my_table 0 Float64 YES
1 public iox my_table 1 Float64 YES
2 public iox my_table 10 Float64 YES

To query tag keys:

df = client.query(
query="SHOW TAG KEYS",
language="influxql",
mode="pandas")
print(df)

Footnotes

  1. InfluxData. InfluxDB data elements [documentation]. Retrieved 2025-04-01, from https://docs.influxdata.com/influxdb/cloud/reference/key-concepts/data-elements/.

  2. InfluxData. influx CLI 2.0.3+ > influx delete [documentation]. Retrieved 2025-04-01, from https://docs.influxdata.com/influxdb3/cloud-serverless/reference/cli/influx/delete/.

  3. InfluxData. InfluxDB3 > Cloud Serverless [documentation]. Retrieved 2025-04-01, from https://docs.influxdata.com/influxdb3/cloud-serverless/.

  4. InfluxCommunity. influxdb3-python [repository]. Retrieved 2025-04-01, from https://github.com/InfluxCommunity/influxdb3-python.