Questions tagged [queue-management]

13 questions
8
votes
1 answer

Slurm jobs are pending, but resources are available

I use SLURM as a job scheduler and queue for a small cluster (single node with 64 cores). To submit a batch job I use: > sbatch run.sh Where run.sh looks like: #! /bin/bash #SBATCH --ntasks=4 export…
Simple.guy
  • 215
  • 2
  • 4
2
votes
2 answers

Queuing on iTunes

Is there a way of queuing songs i want to listen to on itunes, like how i can on spotify?
Curtis
  • 546
  • 2
  • 6
  • 18
2
votes
0 answers

How can I (re-)import the exported queue into Handbrake?

I had a queue in Handbrake, it was pointing at files on my D-drive in the NEW Movies folder. Now I want to make it point at video files on my E-drive, in the Old Videos folder. I exported the queue to a JSON file, I changed all the file paths, but…
GngrWtch
  • 111
  • 11
1
vote
2 answers

SLURM allows jobs using more CPUs than requested to start

The problem I am facing with SLURM can be summarized as follows. Consider a bash script test.sh that requests 8 CPUs but actually starts a job using 10 CPUs: #!/bin/sh #SBATCH --ntasks=8 stress -c 10 On a server with 32 CPUs, if I start 5 times…
remek
  • 111
  • 4
1
vote
1 answer

Reorder spotify queue on android?

Is it possible to reorder the tracks in the queue, on the spotify android app? I know this is possible on desktop by drag and dropping the track within the queue, but can't seem to find the feature on android.
Curtis
  • 546
  • 2
  • 6
  • 18
1
vote
0 answers

postfix mail queue - get bottleneck - Debian squeeze

I have a problem with Postfix 2.7.1, Debian Squeeze: send and receive mail with no problem working locally, send e-mail outside work without a problem, the problem is when someone sends a large amount of mails e.g. 500-1000 and for example a lot…
Kenny
  • 31
  • 6
1
vote
1 answer

Computer management tool does not refresh the Message Queueing, private queues

I'm working on a Windows-10 computer, version 2004 (OS Build 19041.1052). I'm working with some new Message Queueing items, which can be seen in "Computer Management" tool, "Services and Applications", "Message Queuing": - Outgoing Queues -…
1
vote
0 answers

Network scheduler not effective with non-status reporting bandwidth allocation

I was recently introduced to concepts like sqm, bufferbloat and network schedulers or queueing disclipines like cake, fq_codel etc. # tc -d qdisc qdisc noqueue 0: dev lo root refcnt 2 qdisc mq 0: dev eth0 root qdisc fq_codel 0: dev eth0 parent :1…
dza
  • 232
  • 1
  • 2
  • 16
1
vote
2 answers

Running a large number of small jobs in Windows, in parallel, with timeout capability

I need to process >50,000 files using a third-party .exe command-line application. The application takes only one input file at a time, so I have to launch the application >50,000 times. Each file (each job) usually takes about one second. However,…
Mattia
  • 43
  • 7
0
votes
1 answer

Queues in Download Accelator Plus?

I am using Download Accelerator Plus to Manage my Downloads. Here is what I want to do: Add a large number of links in DAP. Download the links one by one in the order the link was added. Only one item gets downloaded at one point of time. Now, this…
user127735
0
votes
0 answers

RabbitMQ installation in Program files directory is wrong?

According RabbitMQ documentation is highly recommended to not use spaces in installation path. Does it mean that Program files directory for RabbitMQ is wrong? Documentation says: Installation path must only contain ASCII characters. It is highly…
Čamo
  • 359
  • 5
  • 17
0
votes
1 answer

Bandwidth Control with Queue in Mikrotik

good time I set a bandwidth limit in Mikrotik(simple queues) for each IP, and now I need to set a general bandwidth limit for each of my networks. My question is how to set a 10M limit for a range like 192.168.102.0/24 and a 3M limit for each user…
s.mostafa.b
  • 3
  • 2
  • 5
0
votes
1 answer

Consume kafka topic behind a NAT

We have a kafka cluster with 3 broker and 3 zookeeper that work fine. We want to consume the topic from a consumer that can only access the kafka broker behind natted address. Can you share any config examples on how make it work? Right now, even if…