summaryrefslogtreecommitdiff
path: root/internal/mapr
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-04 10:57:22 +0300
committerPaul Buetow <paul@buetow.org>2025-07-04 10:57:22 +0300
commitaa2f547cf2b6136dc60f541f30c27a426ec7c6c8 (patch)
tree6180691fc7a0753f82c16aefdbf7da078928a3ae /internal/mapr
parentbecf8a2ea235ee37adceabc1733ae8727cec5488 (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 'internal/mapr')
-rw-r--r--internal/mapr/server/turbo_aggregate_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/mapr/server/turbo_aggregate_test.go b/internal/mapr/server/turbo_aggregate_test.go
index b247201..ec1d6a3 100644
--- a/internal/mapr/server/turbo_aggregate_test.go
+++ b/internal/mapr/server/turbo_aggregate_test.go
@@ -25,7 +25,7 @@ func TestTurboAggregateVsRegular(t *testing.T) {
if config.Server == nil {
config.Server = &config.ServerConfig{
MapreduceLogFormat: "default",
- TurboModeEnable: false,
+ TurboBoostDisable: false,
}
}
if dlog.Server == nil {
@@ -210,7 +210,7 @@ func TestTurboAggregateConcurrency(t *testing.T) {
if config.Server == nil {
config.Server = &config.ServerConfig{
MapreduceLogFormat: "default",
- TurboModeEnable: false,
+ TurboBoostDisable: false,
}
}
if dlog.Server == nil {