셀러리가 작업을 마칠 때까지 기다립니다.
이 기능은 새 작업 수락을 일시 중지하고 모든 작업이 완료될 때까지 기다립니다.
from celery import Celery
from celery.app.control import Control
def celery_check():
app = Celery("app") # Name of the main module
control = Control(app)
control.cancel_consumer("celery") # queue name, must probably be specified once per queue, but we use a single queue
inspect = control.inspect()
while True:
active = inspect.active()
if len(active.items()) > 0:
seconds = 10
time.sleep(seconds)
else:
break
Reference
이 문제에 관하여(셀러리가 작업을 마칠 때까지 기다립니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/petervanderdoes/wait-for-celery-to-finish-its-tasks-1l5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)