使用django celery传输文件时如何更新数据库中的表?

时间:2013-02-04 11:59:22

标签: django django-celery

我在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

执行此操作

1 个答案:

答案 0 :(得分:0)

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

为了确保我建议使用手动提交或自动提交来更新数据库。虽然我建议使用redis / memcached而不是数据库进行这些状态更新。它们更适合这个目的。