Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion .ci/v1-shared-drift-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"supported_protocols/prometheus.md",
"tools/api_client_libraries.md",
"tools/grafana.md",
"tools/influx-cli/use-influx-cli.md",
"tools/influx_inspect.md",
"troubleshooting/errors.md",
"troubleshooting/frequently-asked-questions.md",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,13 @@ alt_links:
[Enable mTLS](/enterprise_influxdb/v1/administration/configure/security/enable_tls/).
- Add an `influx-meta cleanup-shards` command that removes shards with no
owners and shard groups with no shards from a live cluster.
- Add a `-timeout <duration>` flag to `influxd-ctl` that applies to any
command that uses the control client, including `add-data`.
- Add a
[`-timeout <duration>`](/enterprise_influxdb/v1/tools/influxd-ctl/#override-the-default-timeout)
flag to `influxd-ctl` that applies to any command that uses the control
client, including `add-data`.
- `influxd-ctl backup` now avoids data nodes with no shard data and prefers
the most recently written shard copy when selecting a source.
the most recently written shard copy when
[selecting a source](/enterprise_influxdb/v1/tools/influxd-ctl/backup/#node-selection).

### Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@

Environment variable: `INFLUXDB_DATA_SERIES_ID_SET_CACHE_SIZE`

#### series-id-set-cache-max-size
#### series-id-set-cache-max-size {metadata="v1.13.0+"}

Default is `0`.

Expand All @@ -600,11 +600,13 @@
both be set to enable adaptive sizing, or both left at `0` to disable it.
Setting only one prevents InfluxDB from starting. When adaptive sizing is
enabled, `series-id-set-cache-max-size` must be greater than
`series-id-set-cache-size`.
`series-id-set-cache-size`, and `series-id-set-cache-size` must be greater
than `0`. A `series-id-set-cache-size` of `0` disables the cache entirely,
which takes precedence over adaptive sizing.

Environment variable: `INFLUXDB_DATA_SERIES_ID_SET_CACHE_MAX_SIZE`

#### series-id-set-cache-target-hit-rate
#### series-id-set-cache-target-hit-rate {metadata="v1.13.0+"}

Default is `0.0`.

Expand All @@ -617,7 +619,7 @@

Environment variable: `INFLUXDB_DATA_SERIES_ID_SET_CACHE_TARGET_HIT_RATE`

#### series-id-set-cache-shrink-conservatism
#### series-id-set-cache-shrink-conservatism {metadata="v1.13.0+"}

Default is `2.5`.

Expand Down Expand Up @@ -1624,7 +1626,7 @@

To change the log level without restarting the data node, edit the `level` value in the configuration file and send `SIGHUP` to the process:

```bash

Check notice on line 1629 in content/enterprise_influxdb/v1/administration/configure/config-data-nodes.md

View workflow job for this annotation

GitHub Actions / Lint code blocks

normalized before parse: angle-bracket placeholder strip
kill -SIGHUP <influxd_pid>
```

Expand Down
Loading
Loading