Tagged Questions
The long-running-processes tag has no wiki summary.
7
votes
3answers
690 views
Long running operations (threads) in a web (asp.net) environment
I have an asp.net (mvc) web site. As the part of the functions I will have to support some long running operations, for example:
Initiated from user:
User can upload (xml) file to the server. On the ...
7
votes
4answers
1k views
How to start a long running process from Django view?
What I need to do is run a process that might take hours to complete from a Django view. I don't need to the state or communicate with it but I need that view to redirect away right after starting the ...
5
votes
4answers
105 views
.NET Automated Testing for Long Running Processes
We would like to do some automated integration testing of a process that requires sending data to an external source and then validating that the data has been correctly displayed on their website.
...
4
votes
5answers
1k views
Winform updates on long running tasks
Do you have a good solution for keeping a 'Please wait' winform 'painted' while an application is performing a long running task ?
I've tried using form.refresh() on each step, but there are a few ...
4
votes
1answer
432 views
Run arbitrary subprocesses on Windows and still terminate cleanly?
I have an application A that I would like to be able to invoke arbitrary other processes as specified by a user in a configuration file.
Batch script B is one such process a user would like to be ...
3
votes
1answer
100 views
Controller actions appear to be synchronous though on different requests?
I am under the impression that the below code should work asynchronously.
However, when I am looking at firebug, I see the requests fired asynchronously, but the results coming back synchronously:
...
3
votes
2answers
211 views
Recommendations for designing a long-running, resource-intensive web service
I have a .NET function that does some complex calculation. Depending on the parameters that are passed in, the function:
Takes anywhere from several minutes to several hours to run
Uses 100% of a ...
3
votes
1answer
197 views
Best practice for processing a lot of data while the user waits (in Rails)?
I have a bookmarklet that, when used, submits all of the URLs on the current browser page to a Rails 3 app for processing. Behind the scenes I'm using Typhoeus to check that each URL returns a 2XX ...
3
votes
1answer
664 views
Force immediate DOM update modified with jQuery in long-running function
I have a javascript that takes about 2 seconds to execute (complex optimization algorithm).
I want to set certain span to "working..." at the beginning of the function.
I observe that the span doesn't ...
2
votes
2answers
45 views
how to check if a specific instance of a class is running in java?
I have a class which will get data from socket. I should create 5 instance of this class according several condition. How can i check if a specific instant of this class is running, other ways ...
2
votes
3answers
71 views
How do I detect that a PHP CLI script is in a Hung state
I am using supervisor (http://supervisord.org/) to daemonize a fairly standard PHP script. The script is structured something like:
while (1) {
// Do a SQL select
// for any matching rows, do ...
2
votes
2answers
421 views
How to run long running operation asynchronously and show loading for the user in ASP.Net Ajax and poll for the result?
I've a heavy operation which takes long time to be completed in my asp.net application. I don't want to run the entire operation in one request which may result in a TimeOut error. Instead I want to ...
2
votes
1answer
487 views
MySQL - can I limit the maximum time allowed for a query to run?
I'm looking for a way to limit the max running time of a query on mysql server. I figured this could be done through the my.cnf configuration file, but couldn't find anything relevant in the docs. ...
2
votes
1answer
664 views
Qt QApplication::processEvents() in custom event handler
Is it possible to call QApplication::processEvents() inside the event handler, where there is a long process. My program terminates with Segfault. My code is something like this:
void ...
2
votes
6answers
410 views
calculate running time of a huge c++ program
the suggested method of estimating the time is using the clock() function and then dividing the count of cpu cycles by cycles/second.
My problem is that the program i am trying to run takes a lot of ...
2
votes
5answers
387 views
Considerations for ASP.NET application with long running synchronous requests
Under windows server 2008 64bit, IIS 7.0 and .NET 4.0 if an ASP.NET application (using ASP.NET thread pool, synchronous request processing) is long running (> 30 minutes). Web application has no page ...
2
votes
2answers
145 views
ASP.NET Long Task Hangs Other Pages?
I'm generating reports on the fly using the great SpreadSheetGear tool. At first things were great because the reports were simple and done in under 1 second. Now I'm at more complex reports and they ...
2
votes
2answers
212 views
Django, Python calling Python code without waiting for response?
I am using Django and am making some long running processes that I am just interacting with through my web user interface. Such as, they would be running all the time, checking a database value every ...
2
votes
4answers
293 views
Common Ways of handling long running process in ASP.NET
We have a long running data transfer process that is just an asp.net page that is called and run. It can take up to a couple hours to complete. It seems to work all right but I was just wondering what ...
2
votes
5answers
178 views
long processes php
i need to run a really long php script (four and half, five hours).
the script sometimes runs successfully, but sometimes gets killed inexplicably (poss something to do with the shared hosting??).
i ...
2
votes
5answers
395 views
.NET Frustration - Process.GetProcessById Returns New Reference
I'm writing a c# program that will launch many child processes. At some time later on, I'll need to retrieve those processes by ID and then match those processes to a set of processes stored in a ...
2
votes
2answers
591 views
Long running webservice architecture
We use axis2 for building our webservices and a Jboss server to run the logic of all of our applications. We were asked to build a webservice that talks to a bean that could take up to 1 hour to ...
2
votes
5answers
833 views
python long running daemon job processor
I want to write a long running process (linux daemon) that serves two purposes:
responds to REST web requests
executes jobs which can be scheduled
I originally had it working as a simple program ...
2
votes
4answers
4k views
shell script to spawn processes, terminate children on SIGTERM
I want to write a shell script that spawns several long-running processes in the background, then hangs around. Upon receiving SIGTERM, I want all the subprocesses to terminate as well.
Basically, I ...
1
vote
3answers
134 views
Can a Windows Service take hours to shutdown gracefully?
We have a .NET Windows service that shovels a lot of highly critical data from A to B in a transactional manner.
We also need to make sure that all external compontents used in the service are ...
1
vote
1answer
102 views
How to spawn long-running-processes in Twisted
Preface
I'm writing an web-server that gives to users an access to some program written on C (I'm using an Python wrapper over this C-program, it is PyCLIPS). To serve a lot of users, the web-server ...
1
vote
1answer
240 views
Can I use async controllers in the following scenario?
I have an application in Asp.net MVC where at some point I would like to display a modal dialog to the user that would display process execution progress indicator.
The process behind the scenes does ...
1
vote
2answers
81 views
asp.net output messages to user on long running task
What is the best way to send messages to the user during a long process in asp.net. In other languages there is a flush method and I see that asp.net has that as well but is that the best way? If not, ...
1
vote
1answer
206 views
PHP Monitoring child processes
I'm working on a script that listens to a message queue. The only problem that I have with this is that I can only bind one queue per script. I'm wondering if there is a way to have a parent php ...
1
vote
1answer
383 views
How can a user cancel a long running query?
Related: How can you cancel a SQL Server execution process programmatically
I have created an application (Windows, WPF) which is basically a viewer for data in a database (Sql Server). The ...
1
vote
2answers
988 views
Showing loading image/progress bar for long running processes in ASP.Net Ajax
How can I show loading image for the user while executing long running process in an ASP.Net Ajax application? Is there a way other than using Page Methods? Any ideas?
1
vote
1answer
99 views
Is it bad to run a long-running process on a server in a Gnu Screen session?
I have a long running process that currently logs output to stderr, and I'm just starting it up and leaving it running on the server within a gnu screen session on the server, which I just detach when ...
1
vote
3answers
1k views
Long process blocks waiting icon render in ExtJS
The feature I'm implementing is not a really required, so I won't include an extra library of threads just for that. But if someone knows a workaround I will appreciate it.
So I have a grid of 256 ...
1
vote
2answers
254 views
Programming a long-running time-based process
I was wondering what the best way to write an application would be. Basically, I have a sports simulation project that is multi-threaded and can execute different game simulations concurrently.
I ...
1
vote
4answers
176 views
BackgroundWorker acting bizarrely
I'm working on some code that calls a service. This service call could fail and if it does I want the system to try again until it works or too much time has passed.
I am wondering where I am going ...
1
vote
3answers
186 views
Long running stats process - thoughts on language choice?
I am on a LAMP stack for a website I am managing. There is a need to roll up usage statistics (a variety of things related to our desktop product), and I initially tackled the problem with PHP (being ...
1
vote
3answers
949 views
Long-running ASP.NET tasks
I know there's a bunch of APIs out there that do this, but I also know that the hosting environment (being ASP.NET) puts restrictions on what you can reliably do in a separate thread.
I could be ...
1
vote
4answers
1k views
wpf window refresh works at first, then stops
I've got a routine that grabs a list of all images in a directory, then runs an MD5 digest on all of them. Since this takes a while to do, I pop up a window with a progress bar. The progress bar is ...
1
vote
3answers
277 views
Progress Updates on Long Process with Javascript
I have an asp.net page that calls a dll that will start a long process that updates product information. As the process is running, I want to provide the user with constant updates on which product ...
1
vote
3answers
177 views
Should I run everything in a background thread?
I am designing an application which has the potential to hang while waiting for data from servers (either Database or internet) the problem is that I don't know how best to cope with the multitude of ...
1
vote
3answers
479 views
Global state of long-running process in django
I have the need to kick off a long-running process in response to a form submission in django. Then, I'd like to be able to poll using ajax and have the view respond with the state of the process ...
1
vote
2answers
356 views
ASP.NET background processing blocks status or UI feedback
I know this question has been asked many times, but my problem is a little different.
I have page which lets user download and upload excel file. During downloading excel, it takes approx 2 mins to ...
1
vote
6answers
522 views
What's the best way to hold an ASP.NET page until long-running operation finishes?
Javascript?
Metatag refresh?
Response.Redirect (to self)
Server.Transfer (to self)
Ajax update panel?
0
votes
2answers
29 views
Parse continuous output of a long-running command
I could not find similar question, so decided to post it
I have a long running job (*nix environment):
program > job.out
which is running over days and prints output in chunks. Can I instead of ...
0
votes
2answers
51 views
Resource lock waiting for user interaction in client-server solution
I have a client-server process that after a long-running operation (2-5 minutes) server side, ask the user to confirm or change the operation results.
User can take an hour or more to check the work ...
0
votes
2answers
63 views
long running process interlock
I'm creating a webservice+servicebus project where user can do something like
public void ExecuteLongProcess(DateTime fromDate,string aggregateId){}
This method immediately returns but send over ...
0
votes
2answers
294 views
Spring, MVC, Java, making a singleton bean do an action every 5 seconds?
I have a Spring MVC app where I am using a singleton bean that stores a large hashmap object. I am using NeoDats object DB to persist this as it is a sort of search engine application and we are using ...
0
votes
0answers
100 views
Design options for implementing long running server-side processing and client callback on CherryPy and Android
I'm new to Python and CherryPy and would like to explore some design options for implementing the following functionality.
I want to upload a large compressed and encrypted file (size 50 MB to ...
0
votes
1answer
418 views
Jquery AJAX Simultaneous and Long-Running Requests
I am using jQuery to loop through a large table (1,000 rows) and for each row I make an AJAX call to process some information and update a database. It takes roughly 30 minutes to complete this ...
0
votes
1answer
829 views
Service that survives Task Killers like Pandora / How do Services actually work?
First off, this is not aimed at perpetuating bloatware and other bad practices. I know many will say "don't do that" but I promise to respect users.
I am building an app where I would like a service ...