mirror of
https://github.com/mastodon/mastodon.git
synced 2026-03-21 18:05:23 -05:00
Some checks failed
Check i18n / check-i18n (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Check formatting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
Ruby Testing / build (production) (push) Has been cancelled
Ruby Testing / build (test) (push) Has been cancelled
Ruby Testing / test (.ruby-version) (push) Has been cancelled
Ruby Testing / test (3.2) (push) Has been cancelled
Ruby Testing / test (3.3) (push) Has been cancelled
Ruby Testing / ImageMagick tests (.ruby-version) (push) Has been cancelled
Ruby Testing / ImageMagick tests (3.2) (push) Has been cancelled
Ruby Testing / ImageMagick tests (3.3) (push) Has been cancelled
Ruby Testing / End to End testing (.ruby-version) (push) Has been cancelled
Ruby Testing / End to End testing (3.2) (push) Has been cancelled
Ruby Testing / End to End testing (3.3) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Bundler Audit / security (push) Has been cancelled
75 lines
2.3 KiB
YAML
75 lines
2.3 KiB
YAML
---
|
|
:concurrency: <%= ENV.fetch('SIDEKIQ_CONCURRENCY', 5) %>
|
|
:queues:
|
|
- [default, 8]
|
|
- [push, 6]
|
|
- [ingress, 4]
|
|
- [mailers, 2]
|
|
- [pull]
|
|
- [scheduler]
|
|
- [fasp]
|
|
|
|
:scheduler:
|
|
:listened_queues_only: true
|
|
:schedule:
|
|
scheduled_statuses_scheduler:
|
|
every: '5m'
|
|
class: Scheduler::ScheduledStatusesScheduler
|
|
queue: scheduler
|
|
trends_refresh_scheduler:
|
|
every: '5m'
|
|
class: Scheduler::Trends::RefreshScheduler
|
|
queue: scheduler
|
|
trends_review_notifications_scheduler:
|
|
every: '6h'
|
|
class: Scheduler::Trends::ReviewNotificationsScheduler
|
|
queue: scheduler
|
|
indexing_scheduler:
|
|
interval: 1 minute
|
|
class: Scheduler::IndexingScheduler
|
|
queue: scheduler
|
|
vacuum_scheduler:
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(3..5) %> * * *'
|
|
class: Scheduler::VacuumScheduler
|
|
queue: scheduler
|
|
follow_recommendations_scheduler:
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(6..9) %> * * *'
|
|
class: Scheduler::FollowRecommendationsScheduler
|
|
queue: scheduler
|
|
user_cleanup_scheduler:
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(4..6) %> * * *'
|
|
class: Scheduler::UserCleanupScheduler
|
|
queue: scheduler
|
|
ip_cleanup_scheduler:
|
|
cron: '<%= Random.rand(0..59) %> <%= Random.rand(3..5) %> * * *'
|
|
class: Scheduler::IpCleanupScheduler
|
|
queue: scheduler
|
|
pghero_scheduler:
|
|
cron: '0 0 * * *'
|
|
class: Scheduler::PgheroScheduler
|
|
queue: scheduler
|
|
instance_refresh_scheduler:
|
|
cron: '0 * * * *'
|
|
class: Scheduler::InstanceRefreshScheduler
|
|
queue: scheduler
|
|
accounts_statuses_cleanup_scheduler:
|
|
interval: 1 minute
|
|
class: Scheduler::AccountsStatusesCleanupScheduler
|
|
queue: scheduler
|
|
suspended_user_cleanup_scheduler:
|
|
interval: 1 minute
|
|
class: Scheduler::SuspendedUserCleanupScheduler
|
|
queue: scheduler
|
|
software_update_check_scheduler:
|
|
interval: 30 minutes
|
|
class: Scheduler::SoftwareUpdateCheckScheduler
|
|
queue: scheduler
|
|
auto_close_registrations_scheduler:
|
|
interval: 1 hour
|
|
class: Scheduler::AutoCloseRegistrationsScheduler
|
|
queue: scheduler
|
|
fasp_follow_recommendation_cleanup_scheduler:
|
|
interval: 1 day
|
|
class: Scheduler::Fasp::FollowRecommendationCleanupScheduler
|
|
queue: scheduler
|