Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions content/influxdb/v2/reference/config-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ To configure InfluxDB, use the following configuration options when starting the
- [storage-cache-snapshot-memory-size](#storage-cache-snapshot-memory-size)
- [storage-cache-snapshot-write-cold-duration](#storage-cache-snapshot-write-cold-duration)
- [storage-compact-full-write-cold-duration](#storage-compact-full-write-cold-duration)
- [storage-compact-throughput](#storage-compact-throughput)
- [storage-compact-throughput-burst](#storage-compact-throughput-burst)
- [storage-max-concurrent-compactions](#storage-max-concurrent-compactions)
- [storage-max-index-log-file-size](#storage-max-index-log-file-size)
Expand Down Expand Up @@ -2190,6 +2191,51 @@ storage-compact-full-write-cold-duration = "4h0m0s"

---

### storage-compact-throughput
Rate limit (in bytes per second) that TSM compactions can write to disk.
Comment thread
jstirnaman marked this conversation as resolved.
Outdated

> [!Note]
> The CLI flag for this option will be available in a future release.

**Default:** `50331648`

| influxd flag | Environment variable | Configuration key |
| :----------- | :------------------- | :---------------- |
| _Not yet available_ | `INFLUXD_STORAGE_COMPACT_THROUGHPUT` | `storage-compact-throughput` |

###### Environment variable
```sh
export INFLUXD_STORAGE_COMPACT_THROUGHPUT=50331648
```

###### Configuration file
{{< code-tabs-wrapper >}}
{{% code-tabs %}}
[YAML](#)
[TOML](#)
[JSON](#)
{{% /code-tabs %}}
{{% code-tab-content %}}
```yml
storage-compact-throughput: 50331648
```
{{% /code-tab-content %}}
{{% code-tab-content %}}
```toml
storage-compact-throughput = 50331648
```
{{% /code-tab-content %}}
{{% code-tab-content %}}
```json
{
"storage-compact-throughput": 50331648
}
```
{{% /code-tab-content %}}
{{< /code-tabs-wrapper >}}

---

### storage-compact-throughput-burst
Rate limit (in bytes per second) that TSM compactions can write to disk.

Expand Down
Loading