Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release'
Browse files Browse the repository at this point in the history
  • Loading branch information
Overhang.IO committed Dec 5, 2024
2 parents 1a637dc + 88652a4 commit e944dbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/20241204_152125_edunext_better_celery.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[Improvement] Disable celery gossip and mingle to improve celery performance. (by @Ian2012)
6 changes: 6 additions & 0 deletions tutor/plugins/openedx.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ def is_directory_mounted(image_name: str, dirname: str) -> bool:
"--hostname=edx.lms.core.default.%h",
"--queues=edx.lms.core.default,edx.lms.core.high,edx.lms.core.high_mem",
"--max-tasks-per-child=100",
"--prefetch-multiplier=1",
"--without-gossip",
"--without-mingle",
]
)

Expand All @@ -199,6 +202,9 @@ def is_directory_mounted(image_name: str, dirname: str) -> bool:
"--hostname=edx.cms.core.default.%h",
"--queues=edx.cms.core.default,edx.cms.core.high,edx.cms.core.low",
"--max-tasks-per-child=100",
"--prefetch-multiplier=1",
"--without-gossip",
"--without-mingle",
]
)

Expand Down

0 comments on commit e944dbb

Please sign in to comment.