content/influxdb3/cloud-dedicated/reference/internals/storage-engine.md
The InfluxDB 3 storage engine is a real-time, columnar database optimized for time series data built in Rust on top of Apache Arrow and DataFusion. It supports infinite tag cardinality (number of unique tag values), real-time queries, and is optimized to reduce storage cost.
{{< svg "/static/svgs/v3-storage-architecture.svg" >}}
The Router (also known as the Ingest Router) parses incoming line protocol and then routes it to Ingesters. To ensure write durability, the Router replicates data to two or more of the available Ingesters.
The Router can be scaled both vertically and horizontally. Horizontal scaling increases write throughput and is typically the most effective scaling strategy for the Router. Vertical scaling (specifically increased CPU) improves the Router's ability to parse incoming line protocol with lower latency.
The Ingester processes line protocol submitted in write requests and persists time series data to the Object store. In this process, the Ingester does the following:
The Ingester can be scaled both vertically and horizontally. Horizontal scaling increases write throughput and is typically the most effective scaling strategy for the Ingester.
The Querier handles query requests and returns query results for requests. It supports both SQL and InfluxQL through Apache Arrow DataFusion.
At query time, the querier:
Receives the query request and builds a query plan.
Queries the Ingesters to:
Queries the Catalog to find partitions in the Object store that contain the queried data.
Reads partition Parquet files that contain the queried data and scans each row to filter data that matches predicates in the query plan.
Performs any additional operations (for example: deduplicating, merging, and sorting) specified in the query plan.
Returns the query result to the client.
The Querier can be scaled both vertically and horizontally. Horizontal scaling increases query throughput to handle more concurrent queries. Vertical scaling improves the Querier's ability to process computationally intensive queries.
The Catalog is a PostgreSQL-compatible relational database that stores metadata related to your time series data including schema information and physical locations of partitions in the Object store. It fulfills the following roles:
Scaling strategies available for the Catalog depend on the PostgreSQL-compatible database used to run the catalog. All support vertical scaling. Most support horizontal scaling for redundancy and failover.
The Object store contains time series data in Apache Parquet format. Each Parquet file represents a partition. By default, InfluxDB partitions tables by day, but you can customize the partitioning strategy. Data in each Parquet file is sorted, encoded, and compressed.
Scaling strategies available for the Object store depend on the underlying object storage services used to run the object store. Most support horizontal scaling for redundancy, failover, and increased capacity.
The Compactor processes and compresses partitions in the Object store to continually optimize storage. It then updates the Catalog with locations of compacted data.
The Compactor can be scaled both vertically and horizontally. Because compaction is a compute-heavy process, vertical scaling (especially increasing the available CPU) is the most effective scaling strategy for the Compactor. Horizontal scaling increases compaction throughput, but not as efficiently as vertical scaling.
The Garbage collector runs background jobs that evict expired or deleted data, remove obsolete compaction files, and reclaim space in both the Catalog and the Object store.
The Garbage collector is not designed for distributed load and should not be scaled horizontally. The Garbage collector does not perform CPU- or memory-intensive work, so vertical scaling should only be considered only if you observe very high CPU usage or if the container regularly runs out of memory.
The following scaling strategies can be applied to components of the InfluxDB 3 storage architecture.
[!Note]
For information about scaling your {{< product-name >}} infrastructure, contact InfluxData support.
Vertical scaling (also known as "scaling up") involves increasing the resources (such as RAM or CPU) available to a process or system. Vertical scaling is typically used to handle resource-intensive tasks that require more processing power.
{{< html-diagram/scaling-strategy "vertical" >}}
Horizontal scaling (also known as "scaling out") involves increasing the number of nodes or processes available to perform a given task. Horizontal scaling is typically used to increase the amount of workload or throughput a system can manage, but also provides additional redundancy and failover.
{{< html-diagram/scaling-strategy "horizontal" >}}