I want to trigger some tasks on specific time by user settings. For example, if user set 4:00 PM then I would run a task at 4:00PM It could be handle in Celery with countdown and eta. But my broker prefer is Kafka. Is there any alternative of Celery countdown and eta ?
The code in Celery is below:
result = add.apply_async((2, 2), countdown=3)
I expect not use Celery, and must use Kafka