Documentation

InfluxDB 3 Core internals

How data flows through InfluxDB 3 Core

When data is written to InfluxDB 3 Core, it progresses through multiple stages to ensure durability, optimize performance, and enable efficient querying. Configuration options at each stage affect system behavior, balancing reliability and resource usage.

Data flow for writes

As written data moves through InfluxDB 3 Core, it follows a structured path to ensure durability, efficient querying, and optimized storage.

Ingest path and data flow for InfluxDB 3 Core & Enterprise Figure: Write request, response, and ingest flow for InfluxDB 3 Core and Enterprise

  1. Write validation and memory buffer
  2. Write-ahead log (WAL) persistence
  3. Query availability
  4. Parquet storage
  5. In-memory cache

Write validation and memory buffer

  • Process: InfluxDB validates incoming data before accepting it into the system.
  • Impact: Prevents malformed or unsupported data from entering the database.
  • Details: The database validates incoming data and stores it in the write buffer (in memory). If no_sync=true, the server sends a response to acknowledge the write without waiting for persistence.

Write-ahead log (WAL) persistence

  • Process: The database flushes the write buffer to the WAL every second (default).
  • Impact: Ensures durability by persisting data to object storage.
  • Tradeoff: More frequent flushing improves durability but increases I/O overhead.
  • Details: Every second (default), the database flushes the write buffer to the Write-Ahead Log (WAL) for persistence in the object store. If no_sync=false (default), the server sends a response to acknowledge the write.

Query availability

  • Process: The system moves data to the queryable buffer after WAL persistence.
  • Impact: Enables fast queries on recent data.
  • Tradeoff: A larger buffer speeds up queries but increases memory usage.
  • Details: After WAL persistence completes, data moves to the queryable buffer where it becomes available for queries. By default, the server keeps up to 900 WAL files (15 minutes of data) buffered.

Parquet storage

  • Process: Every ten minutes (default), data is persisted to Parquet files in object storage.
  • Impact: Provides durable, long-term storage.
  • Tradeoff: More frequent persistence reduces reliance on the WAL but increases I/O costs.
  • Memory usage: The persistence process uses memory from the configured memory pool (exec-mem-pool-bytes) when converting data to Parquet format. For write-heavy workloads, ensure adequate memory is allocated.
  • Details: Every ten minutes (default), InfluxDB 3 Core persists the oldest data from the queryable buffer to the object store in Parquet format, and keeps the remaining data (the most recent 5 minutes) in memory.

In-memory cache

  • Process: Recently persisted Parquet files are cached in memory.
  • Impact: Reduces query latency by minimizing object storage access.
  • Details: InfluxDB 3 Core puts Parquet files into an in-memory cache so that queries against the most recently persisted data don’t have to go to object storage.

Was this page helpful?

Thank you for your feedback!


InfluxDB OSS 2.9.0: API tokens are hashed by default

Stronger token security in InfluxDB OSS 2.9.0 — tokens are hashed on disk by default. Existing tokens are hashed on first startup and can’t be recovered afterward. Capture any plaintext tokens you still need before you upgrade.

View InfluxDB OSS 2.9.0 release notes

Hashed tokens authenticate exactly like unhashed tokens — clients and integrations keep working.

Also new in 2.9.0:

  • Configurable backup compression
  • Restore support for backups containing hashed tokens
  • Tighter Edge Data Replication queue validation
  • Flux upgrade
  • Compaction reliability improvements

Key enhancements in Explorer 1.8

Explorer 1.8 is now available with streaming data subscriptions (beta), line protocol preview, and query history & saved queries.

View Explorer 1.8 release notes

Explorer 1.8 includes new features and improvements that make it easier to ingest, explore, and manage data.

Highlights:

  • Streaming data subscriptions (beta): Stream data into Explorer from MQTT, Kafka, and AMQP sources.
  • Line protocol preview: Preview line protocol, schema, and parse errors before data is written.
  • Custom sample data: Generate custom sample datasets with line protocol and schema preview.
  • Query history and saved queries: Browse query history and save/re-run named queries.
  • Retention period management: Set, update, or clear retention periods on databases and tables.

For more details, see Explorer 1.8 release notes

InfluxDB 3.9: Performance upgrade preview

InfluxDB 3 Enterprise 3.9 includes a beta of major performance upgrades with faster single-series queries, wide-and-sparse table support, and more.

InfluxDB 3 Enterprise 3.9 includes a beta of major performance and feature updates.

Key improvements:

  • Faster single-series queries
  • Consistent resource usage
  • Wide-and-sparse table support
  • Automatic distinct value caches for reduced latency with metadata queries

Preview features are subject to breaking changes.

For more information, see:

Telegraf Enterprise now in public beta

Get early access to the Telegraf Controller and provide feedback to help shape the future of Telegraf Enterprise.

See the Blog Post

The upcoming Telegraf Enterprise offering is for organizations running Telegraf at scale and is comprised of two key components:

  • Telegraf Controller: A control plane (UI + API) that centralizes Telegraf configuration management and agent health visibility.
  • Telegraf Enterprise Support: Official support for Telegraf Controller and Telegraf plugins.

Join the Telegraf Enterprise beta to get early access to the Telegraf Controller and provide feedback to help shape the future of Telegraf Enterprise.

For more information:

Telegraf Controller v0.0.7-beta now available

Telegraf Controller v0.0.7-beta is now available with new features, improvements, bug fixes, and an important breaking change.

View the release notes
Download Telegraf Controller v0.0.7-beta

InfluxDB Docker latest tag changing to InfluxDB 3 Core

On May 27, 2026, the latest tag for InfluxDB Docker images will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments.

If using Docker to install and run InfluxDB, the latest tag will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments. For example, if using Docker to run InfluxDB v2, replace the latest version tag with a specific version tag in your Docker pull command–for example:

docker pull influxdb:2