41 $DIC->backgroundTasks()->persistence()->saveBucketAndItsTasks($bucket);
43 $DIC->logger()->root()->info(
"[BT] Trying to call webserver");
46 $soap_client = new \ilSoapClient();
47 $soap_client->setResponseTimeout(0);
48 $soap_client->enableWSDL(
true);
50 $session_id = session_id();
51 $client_id = $DIC->http()->wrapper()->cookie()->retrieve(
53 $DIC->refinery()->byTrying([
54 $DIC->refinery()->kindlyTo()->string(),
55 $DIC->refinery()->always(
62 $soap_client->call(self::CMD_START_WORKER, array(
66 $DIC->logger()->root()->info(
"[BT] Calling Webserver failed, fallback to sync version");
68 $sync_manager->run($bucket);
70 $DIC->logger()->root()->info(
"[BT] Calling webserver successful");
81 $n_of_tasks = $ilIliasIniFile->readVariable(
"background_tasks",
"number_of_concurrent_tasks");
82 $n_of_tasks = $n_of_tasks ? $n_of_tasks : 5;
84 $DIC->logger()->root()->info(
"[BackgroundTask] Starting background job.");
88 $MAX_PARALLEL_JOBS = $n_of_tasks;
90 $DIC->logger()->root()->info(
"[BT] Too many running jobs, worker going down.");
97 if (count($ids) === 0) {
103 $task = $bucket->getTask();
108 $this->persistence->updateBucket($bucket);
111 $this->persistence->deleteBucket($bucket);
114 $this->persistence->saveBucketAndItsTasks($bucket);
117 $DIC->logger()->root()->info(
"[BT] Exception while async computing: " 119 $DIC->logger()->root()->info(
"[BT] Stack Trace: " 120 . $e->getTraceAsString());
124 $DIC->logger()->root()->info(
"[BT] One worker going down because there's nothing left to do.");
executeTask(Task $task, Observer $observer)
Actually executes a task.
loadBucket(int $bucket_container_id)
Class PersistingObserver.
setCurrentTask(Task $task)
getBucketIdsByState(int $state)
deleteBucket(Bucket $bucket)
Delete the bucket and all its stuff.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
run(Bucket $bucket)
This will add an Observer of the Task and start running the task.