39 if (!$DIC->settings()->get(
'soap_user_administration')) {
40 $DIC->logger()->bgtk()->warning(
"SOAP not enabled, fallback to sync version");
42 $sync_manager->run($bucket);
48 $DIC->backgroundTasks()->persistence()->saveBucketAndItsTasks($bucket);
50 $DIC->logger()->bgtk()->info(
"Trying to call webserver");
53 $soap_client = new \ilSoapClient();
54 $soap_client->setResponseTimeout(0);
55 $soap_client->enableWSDL(
true);
57 $session_id = session_id();
58 $client_id = $DIC->http()->wrapper()->cookie()->retrieve(
60 $DIC->refinery()->byTrying([
61 $DIC->refinery()->kindlyTo()->string(),
62 $DIC->refinery()->always(
69 $soap_client->call(self::CMD_START_WORKER, [
73 $DIC->logger()->bgtk()->warning($t->getMessage());
74 $DIC->logger()->bgtk()->warning(
"Calling webserver failed, fallback to sync version");
76 $sync_manager->run($bucket);
79 $DIC->logger()->bgtk()->info(
"Calling webserver successful");
89 $n_of_tasks = $ilIliasIniFile->readVariable(
"background_tasks",
"number_of_concurrent_tasks");
90 $n_of_tasks = $n_of_tasks ?: 5;
92 $DIC->logger()->bgtk()->info(
"Starting background job.");
93 $persistence = $DIC->backgroundTasks()->persistence();
96 $MAX_PARALLEL_JOBS = $n_of_tasks;
97 if (count($persistence->getBucketIdsByState(
State::RUNNING)) >= $MAX_PARALLEL_JOBS) {
98 $DIC->logger()->bgtk()->info(
"Too many running jobs, worker going down.");
105 if (count($ids) === 0) {
109 $bucket = $persistence->loadBucket(array_shift($ids));
111 $task = $bucket->getTask();
116 $this->persistence->updateBucket($bucket);
119 $this->persistence->deleteBucket($bucket);
122 $this->persistence->saveBucketAndItsTasks($bucket);
124 $persistence->deleteBucket($bucket);
125 $DIC->logger()->bgtk()->info(
"Exception while async computing: " 127 $DIC->logger()->bgtk()->info(
"Stack Trace: " 128 . $e->getTraceAsString());
132 $DIC->logger()->bgtk()->info(
"One worker going down because there's nothing left to do.");
executeTask(Task $task, Observer $observer)
Actually executes a task.
Class PersistingObserver.
setCurrentTask(Task $task)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.