InfluxDB is a free, open source databases project written in Rust and released under Apache-2.0. It has 31,746 GitHub stars, 3,717 forks and 2,165 open issues, and was last pushed 6 hours ago. On this registry it ranks #14 of 81 tracked projects in Databases, with 5 head-to-head comparisons available. It gained 10 stars over the last 6 tracked days.

What is InfluxDB?

What it is

InfluxDB 3 Core is an open-source time series database purpose-built for real-time ingestion, processing, and querying of event and metrics data. It lives in the InfluxDB ecosystem and is the latest major version, generally available since April 2025. Built with Rust and leveraging Apache Arrow, DataFusion, and Parquet, it replaces older versions (v1.x, v2.x) with a new architecture optimized for low-latency analytics and interactive workloads.

It solves the problem of storing and querying high-cardinality, high-velocity time-stamped data where traditional databases struggle with performance or scalability. Use cases include monitoring sensor data, application performance, network telemetry, financial tick data, and behavioral analytics—any scenario requiring sub-10ms last-value lookups or sub-30ms distinct metadata queries.

Key capabilities

  • Diskless architecture with optional object storage (S3, Azure Blob, GCS) or local disk persistence
  • Fast query response: under 10ms for last-value queries, ~30ms for distinct metadata
  • Embedded Python VM for custom plugins and event triggers
  • Full compatibility with InfluxDB 1.x and 2.x write APIs
  • Support for InfluxQL, SQL (via FlightSQL and HTTP), and Line Protocol for writes
  • Parquet-based storage format for efficient compression and columnar reads
  • HTTP API on port 8181 for writes and queries

Who uses it and how

  • DevOps teams deploy it for real-time infrastructure monitoring, ingesting metrics via Telegraf or direct HTTP Line Protocol writes
  • IoT platforms use it to store and query high-frequency sensor readings with embedded Python triggers for alerting
  • FinTech firms ingest market tick data via FlightSQL for low-latency trading analytics dashboards
  • SaaS vendors build user-facing monitoring UIs that require fast, interactive queries over time-bounded datasets

Getting started

Docker images, Debian/RPM packages, and tarballs are available at the InfluxData downloads page; the getting started guide walks through container or binary deployment with default HTTP API on port 8181.

When to use it — and when not to

Use InfluxDB 3 Core when low-latency time series queries and high write throughput are critical, especially if migrating from InfluxDB 1.x or 2.x and needing SQL compatibility. Avoid it if your workload is purely transactional (OLTP), requires ACID guarantees across unrelated records, or lacks time-based semantics. Self-hosting requires managing object storage or local disk, and the embedded Python runtime adds runtime complexity for production deployments.

project readme (upstream, from github) — read inline

InfluxDB 3 Core

Open source time series database for real-time events, analytics, and monitoring--powered by Apache Arrow, DataFusion, and Parquet.

License: MIT/Apache-2.0 Discord

InfluxDB 3 Core is a database built to collect, process, transform, and store event and time series data. It is ideal for use cases that require real-time ingest and fast query response times to build user interfaces, monitoring, and automation solutions.

Common use cases include:

  • Monitoring sensor data
  • Server monitoring
  • Application performance monitoring
  • Network monitoring
  • Financial market and trading analytics
  • Behavioral analytics

InfluxDB is optimized for scenarios where near real-time data monitoring is essential and queries need to return quickly to support user experiences such as dashboards and interactive user interfaces.

InfluxDB 3 Core’s feature highlights include:

  • Diskless architecture with object storage support (or local disk with no dependencies)
  • Fast query response times (under 10ms for last-value queries, or 30ms for distinct metadata)
  • Embedded Python VM for plugins and triggers
  • Parquet file persistence
  • Compatibility with InfluxDB 1.x and 2.x write APIs
  • Compatibility with InfluxDB 1.x query API (InfluxQL)
  • SQL query engine with support for FlightSQL and HTTP query API

Storage format: Apache Parquet on object storage (S3, Azure, GCP) or local disk
Query languages: SQL, InfluxQL, Flight SQL
Write format: Line protocol
API: HTTP on port 8181
Built with: Rust, Apache Arrow, DataFusion
Compatible with: InfluxDB 1.x and 2.x write APIs, InfluxDB 1.x query API (InfluxQL)

Other InfluxDB Versions

This repository contains multiple InfluxDB versions on separate branches:

Version Branch Query Languages Documentation
v3 Core (this branch) main SQL, InfluxQL docs.influxdata.com/influxdb3/core/
v2.x main-2.x Flux, InfluxQL docs.influxdata.com/influxdb/v2/
v1.x master-1.x InfluxQL, Flux docs.influxdata.com/influxdb/v1/

Project Status

InfluxDB 3 Core has been generally available since April 2025. See v3.* tags and release notes for the latest version.

Join the InfluxDB3 Discord or the public channels below to share your feedback, feature requests, and bug reports.

Installation

Docker images, Debian packages, RPM packages, and tarballs are available on the InfluxData downloads page.

If you are interested in building from source, see the building from source guide for contributors.

Support

For community support and feedback channels, see Bug reports and feedback.

License

The open source software we build is licensed under the permissive MIT or Apache 2 licenses at the user’s choosing. We’ve long held the view that our open source code should be truly open and our commercial code should be separate and closed.

Interested in joining the team building InfluxDB?

Check out current job openings at www.influxdata.com/careers today!

Frequently asked questions

Is InfluxDB free to use?

InfluxDB is open source under the Apache-2.0 licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does InfluxDB do?

Purpose-built time series database for real-time systems

What is InfluxDB written in?

InfluxDB is primarily written in Rust. Its source is publicly available at https://github.com/influxdata/influxdb, and it has 31,746 GitHub stars.