Backend Worker

KintoHub can host backend workers which are services that run continuously and do not expose any port. Usually backend workers are used to consume messages or process events from queues such as Redis, Kafka or RabbitMQ. Sidekiq and Celery are often used as a backend worker service.

When to use a backend worker service?

If your app does not have any public API endpoints and needs to run continuously, you should consider using backend worker.

Backend worker features