Marut Singh
Marut Singh

Reputation: 355

Celery Task.delay behavior

Is it possible that Task.delay just silently gets killed under high throughput scenario? I am using Celery with RabbitMQ as backend. Do not understand its internals fully and how does celery controls the behavior.

Upvotes: 0

Views: 354

Answers (1)

Dmitry Shilyaev
Dmitry Shilyaev

Reputation: 733

The time limit (–time-limit) is the maximum number of seconds a task may run before the process executing it is terminated and replaced by a new process.

http://docs.celeryproject.org/en/latest/userguide/workers.html#time-limits

Upvotes: 1

Related Questions