On Thu, Dec 18, 2008 at 3:36 AM, Alan <alanwil...@gmail.com> wrote:

> Thanks Malcom,
> I think I was not clear enough. I will try again.
>
> So I am at the "Submission Page" (submit.html), with a form where I set
> some parameters and then I click "submit". This form is linked to action
> "run_aria" (run_aria.html) defined in views.py as:
>
> def run_aria(request):
>
>     if not request.user.is_authenticated():
>
>         return HttpResponseRedirect('/accounts/login/')
>
>     if request.POST:
>
>         runAria(request)
>
>         return HttpResponseRedirect('/status')
>
>     else:
>
>         return HttpResponseRedirect('/jobs')
>
> Once I click "submit", I would expect "run_aria" view to call my external
> method "runAria"(I have this in views.py: from ccpngrid.src.mainCCPNGrid
> import handleUploadedCcpnProject, runAria) and then redirect to "Status
> page" (status.html).
>
> What is happening is it does run "runAria" (external application is called
> and starts working) but then it doesn't redirect to status.html. Instead the
> submit.html page remains still showing in my browser status bar "Waiting for
> localhost..." until "runAria" method finishes, which can take hours.
>
> However, since my all pages has a common "base.html" with a header with
> links to "Home" and "Status", if I click in "Status", "Status" page is shown
> perfectly.
>
> So in the end "things" seem to be working but it just doesn't redirect. To
> add more, if I go in my external method "runAria" and comment out the line
> invoking "os.spawnvp", redirection works perfectly, but then no job is
> submitted.
>
> I hope it help you to help me. I will test something else meanwhile.
>
>
That doesn't really help...the question Malcolm asked was where, exactly, in
your runAria function is program execution being held up?  That is, which
line of code in runAria does not complete until the started external program
finishes?  You've already got a commented-out print statement right above
the os.spawnvp call so presumably you've confirmed that P_NOWAIT is in fact
being used on the call?  Have you confirmed via a print statement that as a
result the os.spawnvp call then does in fact return immediately vs. blocking
until the spawned program has finished?  If yes, then move on through the
processing in runAria adding print statements until you find the line of
code that is causing the delay, and then the question becomes why is that
particular line of code not returning vs. why is this function about which
we on the mailing list know only bits and pieces not returning?  We're much
more likely to be able to help with the specific line of code question.

You might also want to review this recent list conversation:

http://groups.google.com/group/django-users/browse_thread/thread/f3d8e863929f626b#

about doing long-running processing in a view.  I have a feeling the "in the
view, simply add something to a job queue that is processed by a completely
external process" approach is really better for what you are doing, but I
have not had to do this sort of thing myself so I can't be 100% sure of
that. If, though, your "where exactly is the clode blocking" determination
comes up with the answer that it is not in fact blocking anywhere in runAria
but rather somewhere after your return from your view, I'd be guessing you
need to be using the job queue approach instead of spawning the external
process from the view itself.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to