@@ -32,7 +32,7 @@ related:
3232{{% product-name %}} includes a preview of major upgrades to the
3333storage layer that improve how data is written, stored, compressed, compacted,
3434and queried.
35- These upgrades touch every layer of the storage path-- from a new on-disk file
35+ These upgrades touch every layer of the storage path— from a new on-disk file
3636format to how fields are organized into column families and how compaction
3737manages resources.
3838
@@ -48,25 +48,25 @@ maintaining full compatibility with InfluxDB 3's data model and query languages.
4848
4949Key improvements include:
5050
51- - ** Faster single-series queries** -- Single-digit millisecond response times
51+ - ** Faster single-series queries** : Single-digit millisecond response times
5252 for highly selective time-series queries.
53- - ** Consistent resource usage** -- Bounded CPU and memory during persistence
53+ - ** Consistent resource usage** : Bounded CPU and memory during persistence
5454 and compaction, eliminating spikes during heavy ingestion or compaction bursts.
55- - ** Wide-and-sparse table support** -- Schemas with up to millions of columns
55+ - ** Wide-and-sparse table support** : Schemas with up to millions of columns
5656 and dynamic schema evolution without expensive rewrites.
57- - ** Column families** -- Group related fields for efficient compression and I/O,
57+ - ** Column families** : Group related fields for efficient compression and I/O,
5858 so queries only read the data they need.
59- - ** Bulk data export** -- Export compacted data as Parquet files for use with
59+ - ** Bulk data export** : Export compacted data as Parquet files for use with
6060 external tools.
61- - ** Automatic Parquet upgrade** -- Seamlessly migrate existing data with
61+ - ** Automatic Parquet upgrade** : Seamlessly migrate existing data with
6262 hybrid query mode during the transition.
6363
6464## Enable the preview
6565
6666Include the ` --use-pacha-tree ` flag in your
6767[ ` influxdb3 serve ` startup command] ( /influxdb3/enterprise/get-started/setup/ ) :
6868
69- {{< code-callout "--use-pacha-tree" >}}
69+ {{< code-callout "--use-pacha-tree" >}}
7070``` bash
7171influxdb3 serve \
7272 --node-id host01 \
@@ -75,8 +75,8 @@ influxdb3 serve \
7575 --data-dir ~ /.influxdb3 \
7676 --use-pacha-tree
7777```
78- {{< /code-callout >}}
79-
78+ {{< /code-callout >}}
79+
8080You can also enable the preview with an environment variable:
8181
8282``` bash
@@ -105,7 +105,7 @@ for system tables and telemetry.
105105
106106## What's changed
107107
108- These upgrades touch every layer of the storage path -- from the on-disk file
108+ These upgrades touch every layer of the storage path— from the on-disk file
109109format to how data is compressed, organized, and compacted.
110110
111111### New file format
@@ -117,8 +117,8 @@ All data within a file is sorted by column family key,
117117timestamp, which enables efficient compaction, querying, and filtering.
118118
119119The format uses type-specific compression algorithms that adapt to data
120- characteristics -- delta-delta RLE for timestamps, Gorilla encoding for floats,
121- dictionary encoding for low-cardinality strings, and more -- typically
120+ characteristics— delta-delta RLE for timestamps, Gorilla encoding for floats,
121+ dictionary encoding for low-cardinality strings, and more— typically
122122achieving 5-20x compression ratios.
123123
124124### Column families
0 commit comments