Questions tagged [job-queue]

In system software, a job queue (sometimes batch queue), is a data structure maintained by job scheduler software containing jobs to run.

A job queue is a queue (that is, a First In First Out (FIFO) collection) of tasks to be carried out at an unspecified time in the future. Workers may take on the task at the head of the queue and carry it out, returning to take another when they are finished.

This is often applied to multi-threaded programming environments, in which there are fewer threads than available tasks so tasks must be queued until a thread is available to process them.

113 questions
0
votes
2 answers

How to Call a method every time when Network is Available in Android?

Scenario is When my Application is offline, i am Storing Some information in database which i need to send to server. So when Network is available i want to send those by Api calls. Is there any way to call a method every time when Network is…
rashmi ranjan
  • 380
  • 1
  • 4
  • 14
0
votes
1 answer

Retrieve changefeeds of rethinkDB if node server crashes

I have a meteor app where user can insert or update into rethink db table and I am watching the change feeds from a node worker and pushing it in rethink-node-job-queue. Now if somehow my node-worker crashes sometimes , I will loose those changes or…
Nabarag Paul
  • 319
  • 5
  • 19
0
votes
1 answer

C# .NET workload processing a'la job queue processing examples ideas?

As part of my constant learning curve into what you can do to make apps scale better, I am currently trying to get a direction to go with queuing, i.e. job queuing or workload processing whichever phrase you like. In the distant past I used IBM…
Dav.id
  • 2,757
  • 3
  • 45
  • 57
0
votes
1 answer

Postpone Job Queue with Gearman

I want to extract some of the time consuming things into a queue. For this I found Gearman to be the most used but don't know if it is the right thing for me. One of the tasks we want to do is queue sending emails and want to provide the feature to…
Thomaschaaf
  • 17,847
  • 32
  • 94
  • 128
0
votes
1 answer

How to manage a queue in nodejs?

I have written a script in Nodejs that takes a screenshot of websites(using slimerJs), this script takes around 10-20 seconds to complete, the problem here is the server is stalled until this script has is finished. app.get('/screenshot', function…
Syed Faizan
  • 901
  • 3
  • 14
  • 28
0
votes
1 answer

Windows Service Job Monitor via Touch of Task-based Asynchronous Pattern (TAP)

I am building a windows service in C# that will monitor a job queue and when it finds item(s) available in the queue, it launches jobs that will 'completely' process the job (including failures). I'm using Task.Factory.StartNew() and admittedly,…
Terry
  • 2,148
  • 2
  • 32
  • 53
0
votes
1 answer

AS400 JOB Queue via Java jt400

I am just writing an Interface between a java application and an AS400. For this purpose I use jt400. I managed to get information about the systemstatus like CPU usage, as well I managed to receive the current status about subsystems and jobs. Now…
LStrike
  • 1,598
  • 4
  • 26
  • 58
0
votes
0 answers

Google App Engine inconcistencies and iratic behviour

I have a Java aplication running on Google App Engine with version 1.9.36 of the SDK.The application is running Java 7 with access to Datastore, BigQuery and Cloud Storage. The container is a B8 class backend server with the tasks being submitted by…
0
votes
1 answer

Path JobQueue cannot serialize String HashSet

I need to serialize a collection of Strings for the JobQueue. How do I do that? Using HashSet causes an exception. I am using https://github.com/path/android-priority-jobqueue (there is no hashtag for it here) error while serializing object…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
0
votes
1 answer

Implementing a job queue with rabbitmq

I have built a rabbitmq wrapper which publishes messages to consumers and this is working well. Can I also build a work queue (like gearman) in rabbitmq which can distribute long running tasks to consumers and the consumers, in turn, notify the…
web-nomad
  • 6,003
  • 3
  • 34
  • 49
0
votes
1 answer

Fiserv/OSI DNA and ACH Origination job

Is anyone here familiar with the Fiserv (formerly Open Solutions) DNA banking platform? I'm looking for a second opinion on ACH origination as we're having problems with how the job is running. The problem we are having is with regards to the timing…
0
votes
1 answer

Path's job queue callback from server

Using the Path JobQueue library, is there a way to know when data has been successfully sent to the server? For instance if I were using AsyncTask, then onPostExecute would be the callback method. In the Path JobQueue library, per my understanding,…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
0
votes
0 answers

Oracle Job Scheduler "Stuck"

We have 2 production environments say XX and XY. Both are on Oracle 11g Release 11.2.0.2.0. Both the environments have a queue table and a job queue to en-queue/de-queue jobs and process them. The application server is Apache Tomcat Version 6.0.32.…
KG3
  • 43
  • 1
  • 12
0
votes
0 answers

display job-queue worker tasks synchronously in webpage

I have a asynchronous task in RQ-worker to download files from the internet, i want to monitor the progress in a webpage, i searched over internet and can not find any methods to synchronously display the progress or task states. there's a way that…
yudun1989
  • 996
  • 9
  • 23
0
votes
1 answer

ZF2 - Job queue to create a PDF file using SlmQueueBeanstalkd and DOMPDFModule

I'm trying to run a job queue to create a PDF file using SlmQueueBeanstalkd and DOMPDFModule in ZF". Here's what I'm doing in my controller: public function reporteAction() { $job = new TareaReporte(); $queueManager =…