diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-04-06 10:54:58 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-06 10:54:58 -0700 |
commit | 0b306fa60ad84ea077111e0ff7b59208ba7bc8a3 (patch) | |
tree | 5d8941b5950ede2db8ca3fba0213792db0f07a50 /doc/en_US/worker.markdown | |
parent | ac11220a1aa7ae30b8827d9bbf221888d3edd0a7 (diff) |
Move documentation to https://docs.kanboard.org/
Diffstat (limited to 'doc/en_US/worker.markdown')
-rw-r--r-- | doc/en_US/worker.markdown | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/doc/en_US/worker.markdown b/doc/en_US/worker.markdown deleted file mode 100644 index b4ba4271..00000000 --- a/doc/en_US/worker.markdown +++ /dev/null @@ -1,35 +0,0 @@ -Background Workers -================== - -**This feature is experimental**. - -Depending on your configuration, some features can slow down the application if they are executed in the same process as the HTTP request. -Kanboard can delegate these tasks to a background worker that listen for incoming events. - -Example of feature that may slow down Kanboard: - -- Sending emails via an external SMTP server can take several seconds -- Sending notifications to external services - -This feature is optional and require the installation of a queue daemon on your server. - -### Beanstalk - -[Beanstalk](http://kr.github.io/beanstalkd/) is a simple, fast work queue. - -- To install Beanstalk, you can simply use the package manager of your Linux distribution -- Install the [Kanboard plugin for Beanstalk](https://github.com/kanboard/plugin-beanstalk) -- Start the worker with the Kanboard command line tool: `./cli worker` - -### RabbitMQ - -[RabbitMQ](https://www.rabbitmq.com/) is a robust messaging system that is more suitable for high-availability infrastructure. - -- Follow the official documentation of RabbitMQ for the installation and the configuration -- Install the [Kanboard plugin for RabbitMQ](https://github.com/kanboard/plugin-rabbitmq) -- Start the worker with the Kanboard command line tool: `./cli worker` - -### Notes - -- You should start the Kanboard worker with a process supervisor (systemd, upstart or supervisord) -- The process must have access to the data folder if you store files on the local filesystem or use Sqlite |