Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
14 changes: 14 additions & 0 deletions content/shared/influxdb3-cli/config-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ influxdb3 serve
- [query-file-limit](#query-file-limit)
- [Processing Engine](#processing-engine)
- [plugin-dir](#plugin-dir)
- [plugin-repo](#plugin-repo)
- [virtual-env-location](#virtual-env-location)
- [package-manager](#package-manager)
{{% show-in "enterprise" %}}
Expand Down Expand Up @@ -1743,6 +1744,7 @@ the following side-effects:
### Processing Engine

- [plugin-dir](#plugin-dir)
- [plugin-repo](#plugin-repo)
- [virtual-env-location](#virtual-env-location)
- [package-manager](#package-manager)

Expand All @@ -1756,6 +1758,18 @@ Specifies the local directory that contains Python plugins and their test files.

---

#### plugin-repo

Specifies the remote repository to use for 'gh:' prefixed plugins.

**Default:** `https://raw.githubusercontent.com/influxdata/influxdb3_plugins/main/`

| influxdb3 serve option | Environment variable |
| :--------------------- | :---------------------- |
| `--plugin-repo` | `INFLUXDB3_PLUGIN_REPO` |

---

#### virtual-env-location

Specifies the location of the Python virtual environment that the processing
Expand Down
50 changes: 46 additions & 4 deletions content/shared/v3-core-enterprise-release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,55 @@
> 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"}
## v3.5.0 {date="2025-09-30"}

### Core

#### Features

- No new features in this release
- **Custom Plugin Repository**:
- Use the `--plugin-repo` option with `influxdb3 serve` to specify custom plugin repositories. This enables loading plugins from personal repos or disabling remote repo access.

#### Bug fixes

- **Database reliability**:
- Table index updates now complete atomically before creating new indices, preventing race conditions that could corrupt database state ([#26838](https://github.com/influxdata/influxdb/pull/26838))
- Delete operations are now idempotent, preventing errors during object store cleanup ([#26839](https://github.com/influxdata/influxdb/pull/26839))
- **Write path**:
- Write operations to soft-deleted databases are now rejected, preventing data loss ([#26722](https://github.com/influxdata/influxdb/pull/26722))
- **Runtime stability**:
- Fixed a compatibility issue that could cause deadlocks for concurrent operations ([#26804](https://github.com/influxdata/influxdb/pull/26804))
- Other bug fixes and performance improvements

#### Security & Misc

- Sensitive environment variable values are now hidden in CLI output and log messages ([#26837](https://github.com/influxdata/influxdb/pull/26837))

### Enterprise

All Core updates are included in Enterprise. Additional Enterprise-specific features and fixes:

#### Features

- **Cache optimization**:
- Last Value Cache (LVC) and Distinct Value Cache (DVC) now populate on creation and only on query nodes, reducing resource usage on ingest nodes.

#### Bug fixes

- **Object store reliability**:
- Object store operations now use retryable mechanisms with better error handling

#### Operational improvements

- **Compaction optimizations**:
- Compaction producer now waits 10 seconds before starting cycles, reducing resource contention during startup
- Enhanced scheduling algorithms distribute compaction work more efficiently across available resources
- **System tables**:
- System tables now provide consistent data across different node modes (ingest, query, compact), enabling better monitoring in multi-node deployments

## v3.4.2 {date="2025-09-11"}

### Core

#### Bug fixes

Expand Down Expand Up @@ -267,8 +309,8 @@ All Core updates are included in Enterprise. Additional Enterprise-specific feat
- Tokens can now be granted `CREATE` permission for creating databases

#### Additional Updates
- Last value caches populate on creation and reload on restart
- Distinct value caches populate on creation and reload on restart
- Last value caches reload on restart
- Distinct value caches reload on restart
- Other performance improvements
- Replaces remaining "INFLUXDB_IOX" Dockerfile environment variables with the following:
- `ENV INFLUXDB3_OBJECT_STORE=file`
Expand Down