mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-29 03:04:16 +01:00
92c28d0160
* Revert "Revert "Add names to celery nodes (#7054 pt. 2) (#7433)" (#7449)"
This reverts commit ecf0679c98
.
* Update bin/docker-worker-beat
* Update bin/docker-worker-celery
* Update bin/start-worker
* Update bin/docker-worker-beat
* Update bin/docker-worker-beat
12 lines
336 B
Bash
Executable File
12 lines
336 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# this kills all processes when the last one terminates
|
|
trap 'kill $(jobs -p)' EXIT
|
|
|
|
# start celery worker with heartbeat (-B)
|
|
celery -A posthog worker -B --scheduler redbeat.RedBeatScheduler --without-heartbeat --without-gossip --without-mingle -Ofair -n node@%h &
|
|
|
|
# start celery plugin worker
|
|
./bin/plugin-server
|