increase concurrent execution limit and add performance testing script

This commit is contained in:
2025-03-25 22:44:21 +05:30
parent 6c6ab17203
commit 67b39f3275
3 changed files with 97 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ type ExecutionService struct {
func NewExecutionService() *ExecutionService {
log.Println("Initializing execution service with 3 concurrent workers")
return &ExecutionService{
queue: queue.NewJobQueue(3), // 3 concurrent executions max
queue: queue.NewJobQueue(35), // 3 concurrent executions max
}
}