Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
51 views

I'm very new to OpenShift and I'll soon be switching to it as my employer looks to consolidate our deploy processes to one tool. The application I work on is unique to the rest of the other apps we ...
Eman's user avatar
  • 1,357
1 vote
0 answers
41 views

I'm currently in Matlab doing a set of fixed point iterations using fmincon. I use parfor multithreading to do so. However, one of my iterations in the parfor loop goes particularly slow just because ...
ZZ Top's user avatar
  • 105
0 votes
0 answers
82 views

When moving from Celery 4.3 to Celery 5.4, we saw to unexpected results and rolled back until more research could be made to understand what happened. Three thing occurred: We have several nodes pick ...
Charles Mack's user avatar
0 votes
0 answers
15 views

I have a worker thread file worker.js which is used when setting up the worker: myWorker = new Worker("worker.js"); The file has at the top: importScripts("general.js"); where ...
Rewind's user avatar
  • 2,854
0 votes
0 answers
32 views

I have a worker that processes tasks from RabbitMQ and inserts data into a database. The system operates at high scale, handling thousands of messages per second, which makes proper failure handling ...
Yakir's user avatar
  • 19
-3 votes
1 answer
96 views

I'm trying to write an app that keeps track of multiple lists of perishable goods from internal storage. I'm storing and reading serialized .json files to edit and save lists etc., but I've been ...
Humble Roots's user avatar
0 votes
2 answers
91 views

I'm using Laravel's database queue connection to process frequent robot heartbeat data. Each second, robots send data that the Laravel server processes by updating the respective robot entries. The ...
Yeo Bryan's user avatar
  • 439
0 votes
0 answers
62 views

My nodejs server dir structure is as following: ./src/rest/api/longJob.js This file contains following method for long running operation, which I want to handover to worker: const { Worker } = require(...
Ronak SHAH's user avatar
5 votes
2 answers
723 views

I'm working on a Next.js 15.0.2 project with turbopack using TypeScript, and I'm integrating the Stockfish chess engine to create a Web Worker on the client side. The Stockfish library is stored in ...
ius's user avatar
  • 1,641
0 votes
1 answer
856 views

Fellows, Using otel in Api application works and the setup is easy. But i would like to use otel in console application and get metrics from the application like CPU usage, memory, heap and etc.. ...
Felipe Siqueira Queiroz's user avatar
-2 votes
1 answer
168 views

In an interview I was asked this and I was unable to describe this. Could anyone help me with this. I have tried to found out answers from stack overflow but did not get a complete explanation.
Anuja Sharma's user avatar
0 votes
0 answers
48 views

I am doing expensive server-side rendering in nodejs worker thread. After all computations are finished I want to stream response to http response. Is there any way except sending chunks via messages? ...
Márius Rak's user avatar
  • 1,461
2 votes
0 answers
2k views

Body: I'm working on a project using PostgreSQL as the database and SQLAlchemy as the ORM. Recently, I've been encountering two issues related to database connections, particularly while running an ...
Aiman's user avatar
  • 21
1 vote
0 answers
397 views

PS D:\web\javascript\backend\hc\New folder\my-app> npm run dev > [email protected] dev > wrangler dev ⛅️ wrangler 3.65.0 ------------------- ⎔ Starting local server... ╭─────────────────────────...
Rana Zaeem's user avatar
0 votes
1 answer
124 views

androidx.work.Worker.doWork() stopped working 3-4 days ago. It has been working 2-3 years before that without any errors. Before the problem occurred the method was called every 30 minutes. But now it ...
ka3ak's user avatar
  • 3,411
0 votes
1 answer
32 views

We've an up and running Spring Boot java project working in Heroku using web dynos. Business requirement is to include background processes to sync some master data grabbed from external system by ...
Aitor Alonso's user avatar
0 votes
0 answers
110 views

I have created an ec2 windows instance where I have installed IIS. I have created a Cloudflare worker to download files using fetch api. But when I use await fetch('http://54.235.2.69/a.pdf', {cf:{...
Flix Hub's user avatar
2 votes
1 answer
812 views

In the following code the keyword ServicebusTrigger is not recognised. To my understanding webjobs packages are not used for worker isolated, so am reluctant to install. How do I refactor for worker ...
thefunctionofnoreturn's user avatar
0 votes
0 answers
120 views

I'm currently utilizing Celery for task management within my application, and I'm facing a challenge regarding task distribution to specific workers based on their unique hostnames. In my use case, I'...
tpalves's user avatar
3 votes
2 answers
7k views

I have a sample FastAPI application, with a single endpoint which returns the result a after a delay of 5 seconds. Please find the code below. from fastapi import FastAPI import uvicorn, os, time app =...
Nandha's user avatar
  • 51
1 vote
0 answers
51 views

I need a middleware to catch the ServiceBusTrigger message. My wish is save the ServiceBusMessage on meu log storage. The Middleware seems the best options to do that, in order to share it with other ...
Raphael Monteiro Nunes's user avatar
4 votes
1 answer
2k views

I am building a new .net 8 worker service and microsoft has modified the generic host. MSDN HostApplicationBuilder builder = Host.CreateApplicationBuilder(args); builder.Services.AddHostedService<...
Mindbane's user avatar
  • 636
2 votes
0 answers
598 views

I've created a workflow with 4 activity which runs one after another using temporalio, When my one workflow starts it is not running in background, Unable to trigger new workflow until the current ...
Vinay Kumar's user avatar
  • 1,317
1 vote
1 answer
105 views

I have this worker.js script where proxies are read from index.js and using Math.floor to randomize the order of the proxies and then use puppeteer to visit a URL. in index.js: const proxies = fs....
Ferend's user avatar
  • 11
3 votes
1 answer
2k views

I have a long-running worker that gets the user's location in the background. Before starting the worker, I check all the needed location permissions. I also added these lines of code to the Manifest. ...
Dannie's user avatar
  • 175

1
2 3 4 5
26