From 6dbc909cb137af5ec6d55097911b70334b992d83 Mon Sep 17 00:00:00 2001 From: Sujay Jayakar Date: Wed, 9 Oct 2024 00:54:17 -0400 Subject: [PATCH] Default to turning off tokio's LIFO slot (#30490) GitOrigin-RevId: 37216d0de8f96aa0819acf2b5471ed70f1fc6bae --- crates/common/src/knobs.rs | 2 +- scripts/package-lock.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/common/src/knobs.rs b/crates/common/src/knobs.rs index eec30e52..6ce88908 100644 --- a/crates/common/src/knobs.rs +++ b/crates/common/src/knobs.rs @@ -55,7 +55,7 @@ pub static RUNTIME_WORKER_THREADS: LazyLock = /// help with tail latencies until they improve its implementation. /// See https://docs.rs/tokio/latest/tokio/runtime/struct.Builder.html#method.disable_lifo_slot. pub static RUNTIME_DISABLE_LIFO_SLOT: LazyLock = - LazyLock::new(|| env_config("RUNTIME_DISABLE_LIFO_SLOT", false)); + LazyLock::new(|| env_config("RUNTIME_DISABLE_LIFO_SLOT", true)); /// Maximum size of the UDF cache. Default 100MiB. pub static UDF_CACHE_MAX_SIZE: LazyLock = diff --git a/scripts/package-lock.json b/scripts/package-lock.json index 616e227d..f745e66b 100644 --- a/scripts/package-lock.json +++ b/scripts/package-lock.json @@ -6,7 +6,7 @@ "": { "name": "convex", "devDependencies": { - "@microsoft/rush": "^5.130.3", + "@microsoft/rush": "^5.125.1", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "dprint": "0.46.1",