updates release notes and new functionality

pull/5992/head
Scott Anderson 2025-04-16 09:49:02 -06:00
parent 2cc6acdbb6
commit fae3754349
5 changed files with 66 additions and 5 deletions

View File

@ -7,6 +7,12 @@ menu:
name: Release notes
weight: 10
parent: About the project
---
## v1.12.0 {date="2025-04-15"}
---
{{% note %}}
@ -28,6 +34,8 @@ InfluxDB Enterprise builds are available. For more information, see
string comparisons (e.g. to allow special characters in measurement names).
- Enable SHA256 for FIPS RPMs.
---
## v1.11.7 {date="2024-09-19"}
### Bug Fixes

View File

@ -12,6 +12,39 @@ alt_links:
v2: /influxdb/v2/reference/release-notes/influxdb/
---
## v1.12.0 {date="2025-04-15"}
## Features
- Add additional log output when using
[`influx_inspect buildtsi`](/influxdb/v1/tools/influx_inspect/#buildtsi) to
rebuild the TSI index.
- Use [`influx_inspect export`](/influxdb/v1/tools/influx_inspect/#export) with
[`-tsmfile` option](/influxdb/v1/tools/influx_inspect/#--tsmfile-tsm_file-) to
export a single TSM file.
- Add `fluxQueryRespBytes` metric to the `/debug/vars` metrics endpoint.
- Add [`aggressive-points-per-block` configuration option](/influxdb/v1/administration/config/#aggressive-points-per-block)
to prevent TSM files from not getting fully compacted.
- Improve error handling.
## Bug fixes
- Log rejected writes to subscriptions.
- Update `xxhash` and avoid `stringtoslicebyte` in the cache.
- Prevent a panic when a shard group has no shards.
- Fix file handle leaks in `Compactor.write`.
- Ensure fields in memory match the fields on disk.
- Ensure temporary files are removed after failed compactions.
- Do not panic on invalid multiple subqueries.
## Other
- Update Go to 1.23.5.
- Upgrade Flux to v0.196.1.
- Upgrade InfluxQL to v1.4.1.
---
## v1.11.8 {date="2024-11-15"}
### Bug Fixes
@ -20,6 +53,8 @@ alt_links:
compatibility API](/influxdb/v1/tools/api/#apiv2delete-http-endpoint) before
string comparisons (e.g. to allow special characters in measurement names).
---
## v1.11.7 {date="2024-10-10"}
This release represents the first public release of InfluxDB OSS v1 since 2021

View File

@ -360,8 +360,8 @@ If a user writes points with timestamps set by the client, then multiple points
### `export`
Exports all TSM files in InfluxDB line protocol data format.
This output file can be imported using the
Exports all TSM files or a single TSM file in InfluxDB line protocol data format.
The output file can be imported using the
[influx](/influxdb/v1/tools/shell/#import-data-from-a-file-with-import) command.
#### Syntax
@ -416,6 +416,7 @@ YYYY-MM-DDTHH:MM:SS+07:00
> **Note:** With offsets, avoid replacing the + or - sign with a Z. It may cause an error or print Z (ISO 8601 behavior) instead of the time zone offset.
##### [ `-lponly` ]
Output data in line protocol format only.
Does not output data definition language (DDL) statements (such as `CREATE DATABASE`)
or DML context metadata (such as `# CONTEXT-DATABASE`).
@ -443,6 +444,11 @@ Default value is `$HOME/.influxdb/wal`.
See the [file system layout](/influxdb/v1/concepts/file-system-layout/#file-system-layout)
for InfluxDB on your system.
##### [ `-tsmfile <tsm_file>` ]
Path to a single tsm file to export. This requires both `-database` and
`-retention` to be specified.
#### Examples
##### Export all databases and compress the output
@ -457,6 +463,15 @@ influx_inspect export -compress
influx_inspect export -database DATABASE_NAME -retention RETENTION_POLICY
```
##### Export data from a single TSM file
```bash
influx_inspect export \
-database DATABASE_NAME \
-retention RETENTION_POLICY \
-tsmfile TSM_FILE_NAME
```
##### Output file
```bash

View File

@ -541,6 +541,9 @@ The number of Flux query requests served.
#### fluxQueryReqDurationNs
The duration (wall-time), in nanoseconds, spent executing Flux query requests.
#### fluxQueryRespBytes
The sum of all bytes returned in Flux query responses.
#### pingReq
The number of times InfluxDB HTTP server served the `/ping` HTTP endpoint.

View File

@ -84,7 +84,7 @@ influxdb:
latest_patches:
v3: 3.0.0alpha
v2: 2.7.11
v1: 1.11.8
v1: 1.12.0
latest_cli:
v2: 2.7.5
ai_sample_questions:
@ -154,9 +154,9 @@ enterprise_influxdb:
menu_category: self-managed
list_order: 5
versions: [v1]
latest: v1.11
latest: v1.12
latest_patches:
v1: 1.11.8
v1: 1.12.0
ai_sample_questions:
- How can I configure my InfluxDB v1 Enterprise server?
- How do I replicate data between InfluxDB v1 Enterprise and OSS?