diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-04 10:57:22 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-04 10:57:22 +0300 |
| commit | aa2f547cf2b6136dc60f541f30c27a426ec7c6c8 (patch) | |
| tree | 6180691fc7a0753f82c16aefdbf7da078928a3ae /examples | |
| parent | becf8a2ea235ee37adceabc1733ae8727cec5488 (diff) | |
refactor: change turbo boost to be enabled by default
- Changed environment variable from DTAIL_TURBOBOOST_ENABLE to DTAIL_TURBOBOOST_DISABLE
- Changed config field from TurboModeEnable to TurboBoostDisable
- Turbo boost is now enabled by default and must be explicitly disabled
- Updated all code references, documentation, and examples
- No change in functionality, only inverted the boolean logic
This makes turbo boost opt-out rather than opt-in, providing better
default performance for large files while allowing users to disable
it for scenarios where it adds overhead.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/dtail.json.example | 2 | ||||
| -rwxr-xr-x | examples/dtail.schema.json | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/dtail.json.example b/examples/dtail.json.example index f21d114..2c5b508 100644 --- a/examples/dtail.json.example +++ b/examples/dtail.json.example @@ -97,7 +97,7 @@ "MaxConcurrentTails": 50, "MaxConnections": 50, "MaxLineLength": 1048576, - "TurboModeEnable": true, + "TurboBoostDisable": false, "Permissions": { "Default": [ "readfiles:^/.*$" diff --git a/examples/dtail.schema.json b/examples/dtail.schema.json index 5690ad7..4fd47b6 100755 --- a/examples/dtail.schema.json +++ b/examples/dtail.schema.json @@ -395,9 +395,9 @@ "minimum": 1024, "maximum": 10240000 }, - "TurboModeEnable": { + "TurboBoostDisable": { "type": "boolean", - "description": "Enable turbo mode for optimized file processing (disabled by default for MapReduce)" + "description": "Disable turbo boost mode. By default, turbo boost is enabled for optimized file processing" }, "Permissions": { "type": "object", |
