Skip to content

Commit d58cbc7

Browse files
authored
style(enterprise): fix formatting in performance preview (#7052)
Replace -- with em dashes and colons, remove trailing whitespace on code-callout closing tag.
1 parent a21dd53 commit d58cbc7

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

  • content/influxdb3/enterprise/performance-preview

content/influxdb3/enterprise/performance-preview/_index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ related:
3232
{{% product-name %}} includes a preview of major upgrades to the
3333
storage layer that improve how data is written, stored, compressed, compacted,
3434
and 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 pathfrom a new on-disk file
3636
format to how fields are organized into column families and how compaction
3737
manages resources.
3838

@@ -48,25 +48,25 @@ maintaining full compatibility with InfluxDB 3's data model and query languages.
4848

4949
Key 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

6666
Include 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
7171
influxdb3 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+
8080
You 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 pathfrom the on-disk file
109109
format 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,
117117
timestamp, which enables efficient compaction, querying, and filtering.
118118

119119
The 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+
characteristicsdelta-delta RLE for timestamps, Gorilla encoding for floats,
121+
dictionary encoding for low-cardinality strings, and moretypically
122122
achieving 5-20x compression ratios.
123123

124124
### Column families

0 commit comments

Comments
 (0)