Handle nulled duplicate jobs

Created on 25 September 2024, 6 months ago

Problem/Motivation

The JobTypeInterface has a handleDuplicateJobs() method which can return null. But the Queue entity is not equipped to handle nulls returned by that method.

  /**
   * Handles existing jobs detected as duplicates when enqueuing a new job.
   *
   * A function can be used to execute a range of different strategies with
   * regard to duplicate jobs:
   * - to pass the decision up to the job creator, throw DuplicateJobException;
   * - to enqueue the new job anyway, return the job;
   * - to overwrite the duplicate job, if the backend implements
   *   SupportsDeletingJobsInterface delete the duplicate job on the backend
   *   and return the new job;
   * - to merge the payloads, delete the duplicate job and return the new job
   *   with a modified payload;
   * - to discard the new job and leave the duplicate intact, return NULL.
...
   * @return \Drupal\advancedqueue\JobResult|null
   *   A new job to enqueue on the backend, or null if no new job should
   *   be enqueued.
 ...
   */
  public function handleDuplicateJobs(Job $job, array $duplicates, BackendInterface $backend): ?Job;

Proposed resolution

Harden the queue entity to allow for the possibility that the job plugin wishes to cancel the new job because it's a duplicate.

Remaining tasks

User interface changes

None.

API changes

None.

Data model changes

None.

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇬🇧United Kingdom jonathanshaw Stroud, UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @jonathanshaw
  • Merge request !21#3476814: Handle nulled duplicate jobs → (Open) created by jonathanshaw
  • 🇬🇧United Kingdom jonathanshaw Stroud, UK
  • 🇬🇧United Kingdom jonathanshaw Stroud, UK
  • Pipeline finished with Failed
    6 months ago
    Total: 191s
    #292598
  • Pipeline finished with Failed
    6 months ago
    Total: 159s
    #292611
  • Pipeline finished with Failed
    6 months ago
    Total: 157s
    #292653
  • Pipeline finished with Success
    6 months ago
    Total: 161s
    #293222
  • Status changed to Needs review about 2 months ago
  • 🇮🇱Israel jsacksick

    I'm confused by these changes... For example, prepareJob() currently cannot return NULL? In which case can it return a NULL job now?

  • 🇬🇧United Kingdom jonathanshaw Stroud, UK

    Yes, Queue::prepareJob() should be able to return NULL, meaning 'discard this job'. This makes sense because prepaeJob() relies on job type plugin's handleDuplicateJobs() method, which has the design feature that it can return nulls, meaning "discard the current because it's the duplicate of an already queued one".

    Queue:

      protected function prepareJob(Job $job): ?Job {
        ...
          if ($duplicates = $this->getBackend()->getDuplicateJobs($job)) {
            $job = $job_type_plugin->handleDuplicateJobs($job, $duplicates, $this->getBackend());
          }
        }
        return $job;
      }

    JobTypeInterface:

      /**
       * Handles existing jobs detected as duplicates when enqueing a new job.
       *
       * A function can be used to execute a range of different strategies with
       * regard to duplicate jobs:
    ...
       * - to discard the new job and leave the duplicate intact, return NULL.
    ...
       * @return \Drupal\advancedqueue\JobResult|null
       *   A new job to enqueue on the backend, or null if no new job should
       *   be enqueued.
       */
      public function handleDuplicateJobs(Job $job, array $duplicates, BackendInterface $backend): ?Job;
    
  • Pipeline finished with Success
    about 2 months ago
    Total: 177s
    #425211
Production build 0.71.5 2024