Questions tagged [queueing]

57 questions
1
vote
1 answer

Quite basic JQuery Animation-queuing, ain't working though

So, I got this great (?) idea to build my own tabsystem, as none of the scripts I've tried worked as I hoped. I've got a list with links, and a couple of divs which are hidden to begin with. Click a LI and any visible div hides whereafter the…
Xavio
  • 437
  • 1
  • 6
  • 21
1
vote
0 answers

Scheduling/Queueing Tasks Django/Celery

I'd like to add a scheduling option to allow user to manually input a date and time that would delay their post to be published to that specific date/time. So if the user uploads five posts in one day but only wants to publish one per day, then they…
Glenn G.
  • 419
  • 3
  • 7
  • 18
1
vote
0 answers

Tensorflow enqueuing data

I'm wondering why the implementation of x_input_data in this code won't work as intended when using the uncommented version, but the commented version will. Anyone know the reason? I feel it has something to do with pointers to objects/values.…
BRIAN LIU
  • 31
  • 2
1
vote
0 answers

Tensorflow: proper queueing/batching structure using training and validation set

I am trying to replicate the structure used in the TensorBoard MNIST example from the recent 2017 dev summit (code found here). In it, feed_dict's are used to alternate between training and validation sets; however, they use the very non-transparent…
Wanna-be Coder
  • 169
  • 1
  • 11
1
vote
0 answers

how to shorten and hasten response time to my queueing system html?

Hi everyone I am new to stack overflow and I needed help to shorten my code and the response time to my created html queueing system. The thing I need to fix my queueing system: How to have multi query in one go in my code pages because the code…
1
vote
2 answers

Simpy: simulation with two types of processes

I want to make a simulation of a store with two types of customers: a normal customer and a VIP. I don't want to serve these customers FIFO. Instead - no matter what the queue looks like - I want to serve a VIP with chance p and a normal customer…
Ricardo
  • 335
  • 1
  • 4
  • 13
1
vote
1 answer

Redirect output of my java program under qsub

I am currently running multiple Java executable program using qsub. I wrote two scripts: 1) qsub.sh, 2) run.sh qsub.sh #! /bin/bash echo cd `pwd` \; "$@" | qsub run.sh #! /bin/bash for param in 1 2 3 do ./qsub.sh java -jar myProgram.jar -param…
Mansumen
  • 373
  • 2
  • 4
  • 17
1
vote
1 answer

Laravel 5.1 - Delayed Message Queueing

I'm trying to send a delayed message but it's not working, it gets into the jobs table but it stays there. Here is my code: Mail::later(5, 'emails.test', ['testVar' => 'hello'], function ($message){ $message->to('*someaddress@hotmail.com',…
Erick Ramírez
  • 75
  • 2
  • 14
1
vote
0 answers

Python Simulation Patient-Doctor Link (Simpy, Emergency Department)

I'm working on a project to describe the patient flow in the Emergency Department using Simpy 2.6. Suppose there are three doctors in the intake area. My process is, after seeing one specific doctor (say, doctor X), the patient will (with 80%…
1
vote
0 answers

Use of Oracle Advanced Queuing to receive changes of database table rows

I am confused about Oracle Advanced Queueing. It looks like it is a way to asynchronously send database notification to application layer. But looking in some details, there is queue to be setup, alongside a table. and there is explicit calls to…
charfeddine.ahmed
  • 526
  • 2
  • 8
  • 16
1
vote
2 answers

java ThreadPoolExecutor default

I was reading Oracles documentation on ThreadPoolExecutor and in particular about the queuing in case there are more requests than Threads available. However I did not find out what the default settings are. To instantiate the Executor the only…
dingalapadum
  • 2,077
  • 2
  • 21
  • 31
1
vote
1 answer

Tools for quantitative systems performance analysis?

I have a model of a simple distributed system as a heterogeneous network of a number of producers and consumers of various classes of workitem, and a number of compute nodes which can process those workitems at various rates. There are arcs…
timday
  • 24,582
  • 12
  • 83
  • 135
1
vote
3 answers

Why use Queueing systems such as RabbitMQ

I am not a senior programmer but I have been deploying applications for a while and devloped small complete systems. I am starting to hear about queueing systems such as RabbitMQ. May be, I never developed any systems that had to use a queueing…
user1666952
  • 309
  • 1
  • 8
  • 18
0
votes
0 answers

Twilio : Calculating estimated wait time in multi queue multi server system

I have a system that has multiple queues, whenever a user calls if no agent is available it will wait in the queue. The queue has multiple filters which separates the agent based on their skills. I want to calculate the estimated wait time for each…
0
votes
0 answers

Queueing Model with No Waiting Area using R

My goal is to create queueing model without a waiting area. For example, if an individual tries to speak to an attendant, but the attendant is already helping another individual, the person will not wait and will go elsewhere. How can I set up a…
324
  • 702
  • 8
  • 28