Difference between revisions of "Mastodon/admin/Sidekiq"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(Created page with "In Mastodon, Sidekiq manages background jobs like sending email and deleting users. Of particular note is the fact that although it is Sidekiq which actually does the...")
 
(reducing sidekiq ram usage)
 
Line 2: Line 2:
  
 
Of particular note is the fact that although it is Sidekiq which actually does the sending, the email parameters are defined in <code>$mastodon/.env.production</code>, and you have to restart the Sidekiq service worker (see {{l/same|mastodon-sidekiq.service}}) for them to take effect.
 
Of particular note is the fact that although it is Sidekiq which actually does the sending, the email parameters are defined in <code>$mastodon/.env.production</code>, and you have to restart the Sidekiq service worker (see {{l/same|mastodon-sidekiq.service}}) for them to take effect.
 +
==Links==
 +
* '''2018-04-24''' [https://github.com/tootsuite/mastodon/issues/7257 Reduce Sidekiq memory usage 2-4x (issue #7257)]

Latest revision as of 09:55, 25 April 2018

In Mastodon, Sidekiq manages background jobs like sending email and deleting users.

Of particular note is the fact that although it is Sidekiq which actually does the sending, the email parameters are defined in $mastodon/.env.production, and you have to restart the Sidekiq service worker (see mastodon-sidekiq.service) for them to take effect.

Links