From c635235f74e97714dd59a02eea27e817da8428c2 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 20 Nov 2025 15:38:45 +0300 Subject: [PATCH] feat: taskiq user process pool --- start_taskiq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start_taskiq.sh b/start_taskiq.sh index 337d486..ae41107 100755 --- a/start_taskiq.sh +++ b/start_taskiq.sh @@ -8,7 +8,7 @@ log_info() { } # Start the Taskiq worker log_info "Starting Taskiq worker..." -taskiq worker background:taskiq_broker background.tasks --max-async-task 1000 --max-threadpool-threads 8 --max-prefetch 10000 --workers 1 +taskiq worker background:taskiq_broker background.tasks --max-async-task 100 --use-process-pool --max-prefetch 100 --workers 1 # Log when the Taskiq worker stops log_info "Taskiq worker stopped"