Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kanboard/plugin-beanstalk
[NOT MAINTAINED] Use Beanstalkd to process background jobs
https://github.com/kanboard/plugin-beanstalk
Last synced: 5 days ago
JSON representation
[NOT MAINTAINED] Use Beanstalkd to process background jobs
- Host: GitHub
- URL: https://github.com/kanboard/plugin-beanstalk
- Owner: kanboard
- License: mit
- Archived: true
- Created: 2016-05-24T00:44:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T23:11:28.000Z (almost 6 years ago)
- Last Synced: 2024-08-02T12:43:42.655Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 39.1 KB
- Stars: 6
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - kanboard/plugin-beanstalk - [NOT MAINTAINED] Use Beanstalkd to process background jobs (others)
README
Beanstalk Queue Driver
======================This plugin uses [Beanstalk](http://kr.github.io/beanstalkd/) to process background jobs for Kanboard.
Author
------- Frederic Guillot
- License MITRequirements
------------- Kanboard >= 1.0.29
- PHP >= 5.3.3
- Beanstalkd daemonInstallation
------------You have the choice between 3 methods:
1. Install the plugin from the Kanboard plugin manager in one click
2. Download the zip file and decompress everything under the directory `plugins/Beanstalk`
3. Clone this repository into the folder `plugins/Beanstalk`Note: Plugin folder is case-sensitive.
Configuration
-------------By default this plugin assume that beanstalkd is running on `localhost`.
To change the default values, define those parameters in your config file:```php
define('QUEUE_NAME', 'kanboard');
define('BEANSTALKD_HOSTNAME', '127.0.0.1');
```You also need to run the Kanboard's worker:
```bash
./cli worker
```The worker must have the same permissions as the web application (same user).
You should run the worker with a process manager like [supervisord](http://supervisord.org) or similar.Docker help
-----------Using the official Docker distributed for Kanboard, you can implement this approach following these simple steps:
* Create a subfolder /etc/services.d/cli_worker and a text file /etc/services.d/cli_worker/run
* Create a subfolder /etc/services.d/beanstalk and a text file /etc/services.d/beanstalk/runThese "run" files are required for s6-svscan already included in the image to automatically load and supervise the two processes required
* For cli_worker/run define contents:
```
#!/bin/execlineb -P
/usr/bin/beanstalkd
```* For beanstalk/run define contents:
```
#!/bin/execlineb -P
/var/www/app/cli worker
```Restart the docker and you should be all set.