https://github.com/reddec/tractor
Simple but powerful event processing system
https://github.com/reddec/tractor
Last synced: over 1 year ago
JSON representation
Simple but powerful event processing system
- Host: GitHub
- URL: https://github.com/reddec/tractor
- Owner: reddec
- Created: 2017-12-01T07:29:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T05:47:52.000Z (over 8 years ago)
- Last Synced: 2025-03-09T00:06:41.090Z (over 1 year ago)
- Language: Go
- Size: 64.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tractor
Not very cute, but powerful system for dirty task ;-)
Supports multi-broker and multi-db fail-over
(README is in progress)
## Overview
(in progress)
This is a system based on message AMQP broker (tested on RabbitMQ) for distributed tasks.
Made as combination of ideas from IronFunctinos, CGI and Node-red
## Configurable parameters
(in progress)
### Limit - execution time
Maximum execution time. After this time application will be killed. Available only for non-stream executables.
* **place**: `limits.execution_time`
* **type**: duration
* **default**: no limit
### Limit - graceful delay
Maximum delay after SIGINT signal and before SIGKILL (terminate). Right now available only for non-stream executables
* **place**: `limits.graceful_time`
* **type**: duration
* **default**: 2s