redis_echo_group_id
Appends the current task's group ID to a specified Redis list using a reliable connection.
def redis_echo_group_id(
self: celery.app.task.Task,
_: any,
redis_key: string = "redis-group-ids"
) - > null
Appends the current Celery task group ID to a specified Redis list for tracking or synchronization purposes.
Parameters
| Name | Type | Description |
|---|---|---|
| self | celery.app.task.Task | The task instance, used to access the current request context and group metadata. |
| _ | any | An ignored positional argument, typically used for compatibility with Celery signal or link signatures. |
| redis_key | string = "redis-group-ids" | The key name of the Redis list where the group ID will be stored. |
Returns
| Type | Description |
|---|---|
null | This function does not return a value. |