From 0e9fc6c5ba0c521b3de5fd8d28bac15613e86b14 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 7 Jun 2026 00:55:11 -0700 Subject: [PATCH] worker: drop ec.balance from the default admin script (#9848) The dedicated ec_balance task worker handles EC shard balancing now, so the periodic admin script no longer needs to run it. --- weed/plugin/worker/admin_script_handler.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/weed/plugin/worker/admin_script_handler.go b/weed/plugin/worker/admin_script_handler.go index 9d7271289..5643956d0 100644 --- a/weed/plugin/worker/admin_script_handler.go +++ b/weed/plugin/worker/admin_script_handler.go @@ -25,8 +25,7 @@ const ( adminScriptDetectTickMinutes = 17 ) -const defaultAdminScript = `ec.balance -apply -fs.log.purge -daysAgo=7 +const defaultAdminScript = `fs.log.purge -daysAgo=7 volume.deleteEmpty -quietFor=24h -apply volume.fix.replication -apply s3.clean.uploads -timeAgo=24h`