0

我在 Django 中有这样的任务:

from celery import task
import subprocess, celery

@celery.task
def file(password, source12, destination):
    return subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', '--info=progress2', source12, destination], 
                                    stderr=subprocess.PIPE, stdout=subprocess.PIPE).communicate()[0]

这会将文件从一台服务器传输到另一台服务器,使用rsync. 以下是我的看法:

def sync(request):
    """Sync the files into the server with the progress bar"""
    choices = request.POST.getlist('choice') 
    for i in choices:
        new_source = source +"/"+ i 
        start_date1 = datetime.datetime.utcnow().replace(tzinfo=utc)
        source12 = new_source.replace(' ', '') #Remove whitespaces
        result = file.delay(password, source12, destination)
        result.get()
        a = result.ready()
        start_date = start_date1.strftime("%B %d, %Y, %H:%M%p")

        extension = os.path.splitext(i)[1][1:] #Get the file_extension
        fullname = os.path.join(destination, i) #Get the file_full_size to calculate size
        st = int(os.path.getsize(fullname))
        f_size = size(st, system=alternative)

我想更新数据库中要更新的表并将其显示给用户。传输文件时应更新该表。我怎样才能做到这一点django-celery

4

1 回答 1

0

对于 Django,Celery 没有什么特别之处。您可以像往常一样更新数据库。您可能需要考虑的唯一一件事是交易。

只是为了确保我会推荐使用手动提交或自动提交来更新数据库。尽管我建议使用 redis/memcached 而不是数据库来进行此类状态更新。它们更适合此目的。

于 2013-02-04T12:12:22.347 回答