Skip to content

rodra-go/task-q

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

sudo 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 taskq show-queue --<option>

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>

For more information, excecute taskq --help.

About

Linux simple CLI tool for multi user queue

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published