Long running processes prevent other processes from responding as quickly as intended. Typically a problem in UI programming, long running processes can prevent the UI from responding to user input.
0
votes
0answers
18 views
Cancelling a long running WCF task from MVC
I have a long running task on a "per call" WCF service like this:
public Task PerformLongRunningTask()
{
return Task.Run(() =>
{
for (int i = 0; i < 100; ...
0
votes
1answer
40 views
Programme which stops without errors or warnings before entering the function
Please help! After I run my programme, it does neither breaks, nor any errors or warnings appear and debugger stops in exactly the same moment, before it should approach function - "stworz_inaczej". ...
1
vote
1answer
63 views
Thread or Task for long running operation
I need to have a thread in my app that will be long running (it is a job scheduler, Cron like) and will be most of the time sleeping. So not much CPU and IO. What would you advise me for this . Does a ...
2
votes
1answer
26 views
LongRunning + AttachedToParent (simultaneously) task
My Task have to work for a long time (it's like a service) - so I need to make it LongRunning.
At the same time, I need to mark it as AttachedToParent to prevent parent task completion before my ...
1
vote
2answers
151 views
Alternative to an infinite loop
I have an infinite loop:-
while(true)
{
//display an image
}
Obviously the CPU goes up.
I have used:
Thread.Sleep(100);
Thread.Sleep(0);
ApplicationDoEvents() - I know i shouldn't
This loop ...
0
votes
0answers
58 views
long running sql procedure hangs website
I have an MVC 4 web application that calls the business layer which calls a data layer method ExecuteSP asynchronously. The data layer method ExecuteSP calls a long running stored procedure like this:
...
0
votes
1answer
35 views
Approach to serve multiple users concurrently with dancer
For some reason I could not find an answer to the question below, probably because it is just too obvious.
During my experiments with perl dancer, I added a route, which just sleeps for 10 seconds ...
0
votes
0answers
10 views
Hosting without processes running [closed]
Does anyone know which is the cheapest hosting company, with >25 processes running allowed? Now I'm using Hostgator but it only allow 25 processes running and I've too much visitors on my site... I ...
1
vote
1answer
76 views
Is Quartz.Net appropriate to run a long process started from an ASP.Net 3.5 page?
I have a long running task (many hours) that is started via a web page on an intranet interface. This is an ASP.Net 3.5 project. Of course, I could extend the script timeout and let the page run for ...
0
votes
4answers
90 views
Performance impact of long running stored procedure
I have a requirement to call a stored procedure which can take up to 15 minutes for each call on SQL Server 2008 database.
Will it cause performance impact on other systems accessing the same ...
0
votes
0answers
55 views
Php - listening on a port - but run on demand
I am not sure on any of the technical terms, but I think I am describing this in an understandable way.
I am going to write a php script which will listen on a port, and send out data as necessary, ...
0
votes
3answers
73 views
Node.js reloading module bug
I'm reloading a module this way:
require('./module.js'); // require the module
delete require.cache('/module.js'); // delete module from cache
require('/module.js'); // ...
1
vote
2answers
70 views
Inconsistent behavior when attempting to terminate python subprocess running on a thread
I am running into problems when I attempt to terminate a run a long running process running on a separate thread.
The below is the program. WorkOne creates a subprocess and runs a long running ...
0
votes
1answer
54 views
Independent thread in Asp.net 4.5
protected void Button1_OnClick(object sender, EventArgs e)
{
FineTuneDB();// Long Task running in db
SendSMStoAllClients();// Using Twolio API to send sms to all client long task
...
1
vote
3answers
263 views
Cancel a long running task over WCF from client
I have a WCF service set to PerCall
I would like to know how I can send a Start call from the client to start a long running process, and send a Cancel command to cancel it
My WCF service looks ...
0
votes
2answers
107 views
how to prevent server to block execution on long time running script
i have a big script written in php, which should import a lot of informations in a prestashop installation, using webservices, this script is written in "sections" I mean, there is a function that ...
-1
votes
1answer
106 views
Long Running Process
I quickly wrote this little rinky-dink vb.net console app to demonstrate something to someone. When I got to looking at it I thought there must be a better way than eating up cycles by using
While ...
3
votes
1answer
194 views
Inherent memory leaks in iOS or MonoTouch?
We are battling with memory leaks in an iPad app that has to be stable enough to be able to keep running for 24/7, as such, memory leaks are intolerable.
As a simple test, we created a new iPad ...
3
votes
1answer
59 views
Is it possible to get launching event of Applications in android?
I am developing an application which shows some specific allowed apps.If user tried to launch except these allowed apps i want to block them.
I know that it is possible to get running tasks using ...
0
votes
1answer
43 views
Application that uses own queues as holders of long-term process operations
I want to make a long-term process handler and use for it NServiceBus.
The role of NServiceBus is to hold an operations of that process (some kind of batch process)
The problem is that I have more ...
0
votes
0answers
97 views
Getting a status update from WCF to an asp.net page
I'm wondering if I can access a static variable in a WCF service for status updates and how to do this if you can?
I have a long process that updates 1000s of products. This process is fired off ...
0
votes
2answers
422 views
How to fire off and poll a windows service from asp.net page
client wants an asp.net page that has a button to fire off a database update from an external source with hundreds of records. This process takes a long time. He also wants status update as the ...
4
votes
2answers
444 views
How to run long-lasting process asynchronously under asp.net?
.net 4.5, asp.net mvc: What is the best way to run long-lasting process (1-2 minutes) from ASP.NET application giving it should be run in a single-threaded environment, I mean the process is initiated ...
0
votes
3answers
121 views
Is there a way to implement long-running transactions in App Engine?
I have a function that makes many HTTP requests to collect data and stores it in the datastore. All calls must succeed or else everything must be rolled back. The length of time to execute approaches ...
0
votes
1answer
407 views
Long Running WF 4 Pattern
I am trying to achieve the following:
Start a workflow that may go running for a long time which includes custom activities;
These custom activities will follow the pattern of creating a bookmark ...
3
votes
2answers
391 views
Flask long routines
I have to do some long work in my Flask app. And I want to do it async. Just start working, and then check status from javascript.
I'm trying to do something like:
@app.route('/sync')
def sync():
...
0
votes
0answers
57 views
Undefined error during a long running AJAX request in ASP.NET application
My ASP.NET web application does the following:
Executes a Report and stores the output in an excel file.
Downloads the Excel file for user reference.
This works perfectly when the excel file is ...
0
votes
1answer
302 views
asp.net long running task
I've implemented this solution to running a long running task in asp.net http://haacked.com/archive/2011/10/16/the-dangers-of-implementing-recurring-background-tasks-in-asp-net.aspx
But I've been ...
0
votes
1answer
295 views
Long-running MySQL queries run from PHP under Apache: browser does not output result and keeps “Transferring data…”
I have Apache 2.2 PHP 5.3 MySQL 5.5 application. A form on page1.php accepts user input. Values are passed to page2.php using GET. PHP script on page2.php runs MySQL query and shows results. Depending ...
0
votes
2answers
1k views
Handling a Long Running jsp request on the server using Ajax and threads
I am trying to implement a solution for a long running process on the server where it is taking about 10 min to process a pdf generation request. The browser bored/timesout at the 5 mins. I was ...
0
votes
4answers
376 views
Keeping responsive UI
I have a winform which have several combo boxes and a gridview.
Initially I am creating the gridview with Rows and Columns and no data filled in with.
The filling data to grid is a long running ...
3
votes
3answers
400 views
Long running (or forever) task on Windows Azure
I need to write some data to database every 50 seconds or so. It's similar to a Windows service that's running on background and silently doing its job. Starting and stopping is not an option in my ...
1
vote
1answer
197 views
Returning status from long-running session bean method
I am using JSF 2.0 with RichFaces 4.2.2 running on Glassfish 3.1.2. I have created local stateless session beans with a long-running method that will be called by the JSF managed bean.
I would like ...
0
votes
2answers
84 views
long running application (tail like)
I want to write an tail like app. Now this app, scans a file for changes in the background and fires events in case something changed.
I want to run my application until the user requests to exit it ...
1
vote
1answer
280 views
Struts2 JMS request processing long running process
I have a Struts2 Action class that places a JMS Fetch request for a list of Trade in a JMS Queue. This JMS Fetch message is processed by an external process and can take either a few seconds or even ...
0
votes
1answer
256 views
Long running process using TPL. Could not find how to write callback?
I have used TPL to do long running process like generating 1,00,000 PDF in my asp.net application. Codes is like bellow:
private Task<ErrorList> GeneratePDF()
{
return ...
0
votes
1answer
286 views
Prevent long running PHP script from closing
I'm running a php script via cli, so it can run in background. This script is suposed run 24/7. How can I prevent it from shutting down (on errors, warnings, etc) and restart immediatly if it happens?
...
0
votes
1answer
104 views
Long running tasks, should I run them in another thread or another process? [duplicate]
Possible Duplicate:
Why should I use a thread vs using a process?
I have some long-running tasks, they consume cpu and memory heavily.
Should I run them in another thread or another ...
2
votes
2answers
127 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 ...
0
votes
2answers
100 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
93 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 ...
5
votes
4answers
206 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.
...
0
votes
2answers
155 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 ...
2
votes
3answers
1k 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
votes
1answer
2k views
GCD and UIBackgroundTaskIdentifier
I have a dispatch queue that has some work in it. I want the queue to keep running till either time runs out or the queue gets drained, when the application goes into the background. How would I set ...
1
vote
1answer
735 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 ...
3
votes
3answers
283 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 ...
0
votes
2answers
785 views
Long running process in separate thread updating UI
I noticed a similar problem for dot NET, but my problem is for Android, so perhaps solution looks different.
The process is activated by clicking button. The process was running as part of UI thread ...
1
vote
1answer
582 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 ...
2
votes
2answers
918 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, ...

