Skip to main content

A simple commandline app that implements a task queue

Project description

TaskQ

Simple CLI for multi user queue execution in Linux. TaskQ allows a single computer to be used by different users concurrently. TaskQ allows each user to submit a task to the same queue, which will be handled by the Task Handler Bot.

1. Setup

1.1. Installing Screen

The Linux program Screen is a TaskQ's dependecy. In order to install it on Ubuntu, run the commands:

sudo apt-get update
sudo apt-get install screen

1.2. Installing TaskQ

TaskQ needs to be installed in order to set its dependecies correctly. In order to do that, it needs a folder to be the TaskQ home, where the app will save its local files, and also an UID to define the owner of TaskQ's queue. It is important to note that the TaskQ Bot will run with the privileges of user that executed the installation step below.

pip install task-q
sudo taskq install $HOME $(id -u $USER)

1.3. Starting Task Handler

The Task Handler is the bot that will execute the tasks in the TaskQ queue. It is necessary to start it manually. It is important to note that only the TaskQ queue owner has the priviliges to start or to stop the Task Handler.

taskq start

In order to stop the queue, do:

taskq stop

2. Using the TaskQ

2.1. Show the queue

To show the queue waiting list, run the command below:

taskq show-queue

It is possible to filter the table with the options below:

  • all: shows all the tasks in the queue, including the completed and failed ones.
  • running: shows only the tasks that are running at the moment
  • mine: shows only the tasks that belong to the user
  • done: shows only the tasks that are complete

2.2. Add a task to the queue

A task for TaskQ is basically a bash command that will be executed within the queue owner context. To add a task to the queue, do:

taskq add '<command string>'

2.3. Abort a task

Aborting a task will remove it out of the waiting list:

taskq abort <task id>

2.4. Reset a task

Reseting a task will put it back into the waiting list:

taskq reset <task id>

For more information, excecute taskq --help.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

task-q-1.1.4.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

task_q-1.1.4-py3-none-any.whl (10.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page