Skip to content
Snippets Groups Projects
  1. May 22, 2024
  2. May 15, 2024
  3. Apr 26, 2024
  4. Apr 08, 2024
    • Vincent Sellier's avatar
      origin cli: Fix the available slot count computation · 698fb5d8
      Vincent Sellier authored
      The get_available_slots method already returns the exact available slots
      in a queue so there is no need to recompute it with the current
      threshold. As a side effect, the queue_size was always 0 when there was no
      messages in the queue.
      
      The behavior was also fixed when the queue does not exist, the max_lengh
      is returned if provided instead of the default MAX_NUM_TASKS
      698fb5d8
  5. Mar 29, 2024
  6. Mar 20, 2024
    • Antoine Lambert's avatar
      celery_backend/config: Fix enabling of celery integration for sentry · 236f7986
      Antoine Lambert authored
      About a year ago, we updated the way sentry is configured for celery
      tasks by not relying anymore on the worker_init signal and the
      SWH_SENTRY_DSN environment variable but rather by using a task_prerun
      signal callback that sets sentry DSN through a dict mapping a task name
      to its sentry DSN.
      
      But as a result it broke our celery integration for sentry (that notably
      adds task name and parameters in sentry events) as integrations must be
      initialized in the worker_init signal callback to work properly. So ensure
      they are by first setting a fake DSN in the worker_init signal callback and
      update tests to check celery integration is enabled.
      
      Related to swh/meta#4949.
  7. Mar 11, 2024
  8. Mar 04, 2024
  9. Feb 29, 2024
  10. Feb 21, 2024
  11. Feb 14, 2024
    • Antoine R. Dumont's avatar
      Rename send-to-celery cli to send-origins-from-scheduler-to-celery · 06a9f206
      Antoine R. Dumont authored
      This cli is used by operator/sysadm. It's renamed to avoid confusion with the new
      subcommand send-origins-from-file-to-celery.
      
      Refs. swh/infra/sysadm-environment#4872
      06a9f206
    • Antoine R. Dumont's avatar
      scheduler/origin: Add scheduling origins cli from file/stdin to celery · 0fdfb130
      Antoine R. Dumont authored
      It lived in the snippet repository for years (2017 and prior) and used regularly since
      then. It's been recently reused for the osdn origins scheduling. And as usual,
      improvments on it ensued. It's time to make it an official cli.
      
      It's now migrated under the the 'swh scheduler origin' subcommand. It's name is
      'send-origins-from-file-to-celery'. The file to read is either a local file or the
      standard input. This expects a list of origins (urls) to be pushed directly in the
      proper queue according to the <task-type> argument.
      
      For example:
      ```
      export SWH_CONFIG_FILENAME=~/.config/swh/scheduler.yml; \
        head -20 /tmp/20230509-1539-priority.list.github | \
        shuf | \
        swh scheduler -C $SWH_CONFIG_FILENAME origin send-origins-from-file-to-celery \
          --queue-name-prefix large-repository \  # optional
          --debug \
          --dry-run \
          load-git
      ```
      
      or directly:
      ```
      swh scheduler -C $SWH_CONFIG_FILENAME origin send-origins-from-file-to-celery \
          --queue-name-prefix large-repository \  # optional
          --debug \
          --dry-run \
          --limit 10 \
          load-git
          /tmp/20230509-1539-priority.list.github  # note that here, the full file is sent,
                                                   # without shuffling it
      ```
      
      Origins can be routed to extra queue with the help of the <--queue-name-prefix> flag.
      This will use standard (configured in the scheduler) queue name with the dedicated
      prefix (<queue-name-prefix>:<standard-queue-name>). This also expects that the
      destination queue is being consumed on the infra side (ping sysadm for it if not).
      
      The cli can be parametric to limit the number of messages with the <--limit> flag. It
      can also just be tested with <--dry-run> to do nothing but print actions. Some extra
      logging can be triggered with the <--debug> flag.
      
      Refs. swh/infra/sysadm-environment#4872
      0fdfb130
  12. Feb 08, 2024
    • Antoine R. Dumont's avatar
      cli/origin: Make utils function compute only the required data · 281486bf
      Antoine R. Dumont authored
      And let the caller function do the actual display. This also make the utility function
      compute only the required data to be displayed (the listing data is optionally
      outputted).
      
      This also renames the 'list' bool to 'with_listing'. 'list' is a python keyword (it's ok
      to reuse but editors usually color it differently than plain function name and that can
      be confusing).
      281486bf
  13. Feb 07, 2024
  14. Feb 05, 2024
  15. Feb 02, 2024
  16. Jan 30, 2024
  17. Dec 06, 2023
  18. Dec 04, 2023
  19. Dec 03, 2023
  20. Nov 29, 2023
  21. Nov 16, 2023
  22. Nov 08, 2023
  23. Nov 07, 2023
  24. Oct 20, 2023
  25. Oct 06, 2023
  26. Oct 02, 2023
  27. Aug 30, 2023
Loading