Skip to main content

A scheduler of stuff (ASOS)

Project description

A scheduler of stuff (ASOS)

This is a task manager, sort of. Supports plugins for storage and for executors.

Configuration

Takes quite few parameters:

{
  "uuid": "current_instance_name",
  "storage_plugin": "mysql"
}

Storage plugins

Should implement two methods:

  1. Get all active tasks
  2. Add a result of task execution
class Storage():

	def get_tasks(self):
		return {task_id: task, ...}

	def add(self, task_id, task, env, result, dump=None):
		return True

Executor plugins

Does the actual work. The name of plugin should match a task_type field.

class Executor():

	def do(self, task, env):
		return result, dump

Tasks

Task objects represent tasks that need to be done. Should contain all additional parameters, required by your plugins.

{
  "task_type": executor_plugin_name,
  "task_interval": 60,
  "additional_param": "value"
}

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

asos-1.0.8-py3-none-any.whl (16.1 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