From 93adc6ca972df711a924db40ae4d66386b505174 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Fri, 12 Sep 2025 18:13:51 -0500 Subject: [PATCH 1/3] feat(release-notes): InfluxDB 3 Core/Enterprise v3.4.2 release notes - Generate release notes using helper script for v3.4.1 to v3.4.2 --- .../_index.md | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/content/shared/v3-core-enterprise-release-notes/_index.md b/content/shared/v3-core-enterprise-release-notes/_index.md index 1b1f1060e..9d376ed76 100644 --- a/content/shared/v3-core-enterprise-release-notes/_index.md +++ b/content/shared/v3-core-enterprise-release-notes/_index.md @@ -5,6 +5,38 @@ > All updates to Core are automatically included in Enterprise. > The Enterprise sections below only list updates exclusive to Enterprise. +## v3.4.2 {date="2025-09-11"} + +### Core + +#### Features + +- No new features in this release + +#### Bug fixes + +- **Database reliability**: + - TableIndexCache initialization and ObjectStore improvements + - Persister doesn't need a TableIndexCache + +#### HTTP API changes + +- **v2 write API**: Standardized `/api/v2/write` error response format to match other InfluxDB editions. Error responses now use the consistent format: `{"code": "", "message": ""}` ([#26787](https://github.com/influxdata/influxdb/pull/26787)) + +### Enterprise + +All Core updates are included in Enterprise. Additional Enterprise-specific features and fixes: + +#### Features + +- **Storage engine**: Pass in root CA and disable TLS verify for object store +- **Support**: Add support for manually stopping a node + +#### Bug fixes + +- **Bug fix**: Generation detail path calculation panic +- **Database reliability**: Pass TableIndexCache through to PersistedFiles + ## v3.4.1 {date="2025-08-28"} ### Core From d6d7e724ae7b57ca7712a882529229d24c2fc3c6 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Fri, 12 Sep 2025 18:26:34 -0500 Subject: [PATCH 2/3] chore(influxdb3): v3.4.2 Bump latest patch --- data/products.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/products.yml b/data/products.yml index 0be800a1b..51561285e 100644 --- a/data/products.yml +++ b/data/products.yml @@ -6,7 +6,7 @@ influxdb3_core: versions: [core] list_order: 2 latest: core - latest_patch: 3.4.1 + latest_patch: 3.4.2 placeholder_host: localhost:8181 ai_sample_questions: - How do I install and run InfluxDB 3 Core? @@ -21,7 +21,7 @@ influxdb3_enterprise: versions: [enterprise] list_order: 2 latest: enterprise - latest_patch: 3.4.1 + latest_patch: 3.4.2 placeholder_host: localhost:8181 ai_sample_questions: - How do I install and run InfluxDB 3 Enterprise? From a736140c2c332276adcfd4e566323daca0d5fd4b Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 15 Sep 2025 08:57:02 -0500 Subject: [PATCH 3/3] docs(enterprise): add operational improvements to v3.4.2 release notes - Document compaction optimizations (cleaner wait time, producer startup delay) - Document catalog synchronization improvements (1s sync interval) - Document enhanced logging for sequence persistence tracking Co-authored-by: hiltontj --- content/shared/v3-core-enterprise-release-notes/_index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/shared/v3-core-enterprise-release-notes/_index.md b/content/shared/v3-core-enterprise-release-notes/_index.md index 9d376ed76..f44f75c88 100644 --- a/content/shared/v3-core-enterprise-release-notes/_index.md +++ b/content/shared/v3-core-enterprise-release-notes/_index.md @@ -37,6 +37,14 @@ All Core updates are included in Enterprise. Additional Enterprise-specific feat - **Bug fix**: Generation detail path calculation panic - **Database reliability**: Pass TableIndexCache through to PersistedFiles +#### Operational improvements + +- **Compaction optimizations**: + - Compaction cleaner now waits for 1 hour by default (previously 10 minutes) + - Compaction producer now waits for 10 seconds before starting compaction cycle +- **Catalog synchronization**: Background catalog update is synchronized every 1 second (previously 10 seconds) +- **Logging improvements**: Added clear logging to indicate what sequence is persisted on producer side and what is consumed by the consumer side + ## v3.4.1 {date="2025-08-28"} ### Core