Documentation

InfluxDB 3 Enterprise Internals

InfluxDB 3 Enterprise is in Public Beta

InfluxDB 3 Enterprise is in public beta and available for testing and feedback, but is not meant for production use yet. Both the product and this documentation are works in progress. We welcome and encourage your input about your experience with the beta and invite you to join our public channels for updates and to share feedback.

Beta expectations and recommendations

How data flows through InfluxDB 3 Enterprise

When data is written to InfluxDB 3 Enterprise, 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 Enterprise, 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.

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.
  • Details: Every ten minutes (default), the InfluxDB 3 Enterprise 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 Enterprise 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!


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.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out: