Questions tagged [long-running-processes]

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.

289 questions
0
votes
2 answers

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 done by the service, make changes and send those…
Mauro Destro
  • 746
  • 12
  • 34
0
votes
2 answers

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 the bus a request for the operation. My problems…
Mauro Destro
  • 746
  • 12
  • 34
0
votes
0 answers

SQL Timed out and Long running session

We are on SQL Server 2017 Application was set to run PROC up to 5min. So if it exceed 5mins it is going to timed out. The PROC got timedout, when I see the history of that query in sp_whoisactive which we store history in our log table): the reads,…
0
votes
0 answers

GCP Vertext AI Java api: Is that possible to track progress of a long running job like import data or create training pipeline?

I am trying Vertex AI's Java api. For some long running task like import data, normally it will run about 30 minutes. During this period, is that possible to track progress like percentage of data imported? My code is like following: fun…
0
votes
0 answers

Resolution to keep Mysql production server safe from Long running queries

Mysql: 5.7 on AWS RDS On our production server some queries are running so long. show processlist output Here this select was running from 1278013 seconds. We have given the production read access to multiple users and even to the customers and…
0
votes
1 answer

Can a MassTransit JobConsumer be hosted on a different application domain (and geographical location) as the job publisher?

We are looking into MassTransit + RabbitMQ to solve a challenge we experience with automated job scheduling. The scenario: Our web app (OurApp), an ASP.NET Forms monolith, is deployed against multiple independent instances and with some hosted…
0
votes
0 answers

How can we handle long running processes using serverless architecture in azure?

I'm looking for something similar to ECS task where it will just run the long running task like terraform scripts without any time limit. Do we have any better approach in serverless architecture where we can just ask to perform a long running task…
0
votes
0 answers

Embedded terminal processes die if I close the IDE, how to have them continue running?

A novice question... but please help. I often run "stuff" in the VS code terminal, things like local webapps being served on localhost, scheduled process, etc... Note: I'm on windows The workflow is something like: Turn on computer Open VS…
0
votes
1 answer

What is the "bash" process name meaning

I have checked the process in my Linux system I found there is lots of process running with the name bash And if we Kill them all attaching a enter image description herescreenshot for reference.
0
votes
2 answers

Code running slow in SAS, any idea what I can do to run it quicker?

I am a beginner with SAS and trying to create a table with code below. Although the code has been running for 3 hours now. The dataset is quite huge (150000 rows). Although, when I insert a different date it runs in 45 mins. The date I have inserted…
0
votes
1 answer

Azure Application Gateway Timeout #long running process

We are using Azure Application Gateway with WAF. We have configured a timeout of 3600 seconds, and we performed the following scenario with Azure WAF and without WAF: With Azure: The application runs around 1 hour and then shows 504 Error. And…
0
votes
0 answers

Oracle Query Times out and or Object No Longer Exists

wondering if someone can help me streamline the below query. It will run for hours, and then it give idle timeout warning. We updated the idle time to unlimited and now we get: Error message: ORA-12801: error signaled in parallel query server…
0
votes
0 answers

How can I get the stacktrace of a long running statement in a mutiny TimeOut

I'm trying to get the stacktrace of the Thread.sleep in the following code snippet. Right now, the only stacktrace I'm getting is the one created by Mutiny upon timing out (which isn't helpful). I've tried following things: Catch any exception on…
0
votes
0 answers

How to execute background Long Running tasks in React native (iOS)

I have a case where I need to run a background task for at least 8-12 mins based on network bandwidth. I searched a lot but can't find a way in React Native. I'm just wondering is it really not possible with react-native even at 2022 ? Suggestions…
0
votes
1 answer

Durable function Timeout

I'm Using Azure Durable Functions .Net Core. [FunctionName("Calculate")] public async Task RunOrchestrator( [OrchestrationTrigger] IDurableOrchestrationContext context, ILogger log) { await…