kaiser

module
v0.0.0-...-cf2ac4b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 2, 2018 License: MIT

README

Kaiser Job Runner

Kaiser is a extensible job runner. It is responsible for execute jobs provided by the different implemented providers. The language used for developing script is javascript with the functions implemented with plugins. Kaiser can be used as workflow manager, IoT projects or for dynamic job programming.

Currently is under development but any help is very welcome. The language used is javascript (basic javascript) for scripts (in workspace folder you can find some examples).

Cloning project including web application

  • Cloning repository and submodules
git clone --recursive https://github.com/plopezm/kaiser
  • Installing golang dependencies
dep ensure
  • Installing SPA dependencies
cd cmd/webapp/kaiser-spa
npm install

Launching Kaiser for development

  • Running kaiser daemon only:
make run
  • Running kaiser & kaiser spa:
make -j2 devrun 

Status

  • Basic engine
  • Basic job foldering
  • Script file dynamic read (scripts can be modified and reexecuted automatically)
  • Argument setting
  • [Job scheduling] Scheduling jobs using ISO 8601 Duration
  • [Job launcher] Add a way to launch jobs from http events
  • [Job management] GraphQL API for creating, executing, removing tasks remotely.
  • [Web interface] A web interface to manage kaiser
  • [Plugins] More default plugins & runtime plugins (in Linux & OSX)

Project structure

  • cmd: Contains executables, currently only the engine is there, in the future a terminal connected with graphql will be implemented for managing the daemon
  • config: Used for parging "kaiser.config.json" with the program input, in addition the log is configured to be used with files
  • core: Contains the implementation of the engine, interpreter (otto) and provider. A Job provider is a thread that find new jobs and provide them to daemon
  • interfaces: Different ways to manage, create and query the jobs
  • plugins: Implementation of new functionalities for Kaiser interpreter
  • utils: Common functions used in the whole project

Package manager

This project is using dep as package management, to download all required libraries type "dep ensure"

Configuration

Currently there is only one important configuration called "workspace" where the job folder is defined.

This is an example of the current configuration file:

{
    "workspace": "./workspace"
}

Workspace

The workspace folder has some rules:

  • Folder "disabled" is used to ignore jobs putting them there.
  • Every job file has special names, *.job.json

GraphQL Examples

The file graphql.http contains some examples to use with the current API.

Directories

Path Synopsis
cmd
interfaces
plugins

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL