From dc6dd4970fff8762507208bd95804bc007195cfd Mon Sep 17 00:00:00 2001 From: Ted Kaemming <65315+tkaemming@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:36:37 -0700 Subject: [PATCH] Default `INGESTION_OVERFLOW_PRESERVE_PARTITION_LOCALITY` to false for reverse compatibility and no surprises during deploy --- plugin-server/src/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-server/src/config/config.ts b/plugin-server/src/config/config.ts index 8be8565eb2abe..24880db690086 100644 --- a/plugin-server/src/config/config.ts +++ b/plugin-server/src/config/config.ts @@ -75,7 +75,7 @@ export function getDefaultConfig(): PluginsServerConfig { INGESTION_CONCURRENCY: 10, INGESTION_BATCH_SIZE: 500, INGESTION_OVERFLOW_ENABLED: false, - INGESTION_OVERFLOW_PRESERVE_PARTITION_LOCALITY: true, + INGESTION_OVERFLOW_PRESERVE_PARTITION_LOCALITY: false, PLUGINS_DEFAULT_LOG_LEVEL: isTestEnv() ? PluginLogLevel.Full : PluginLogLevel.Log, LOG_LEVEL: isTestEnv() ? LogLevel.Warn : LogLevel.Info, SENTRY_DSN: null,