George Psarakis

Results 54 comments of George Psarakis

@thedrow @auvipy should we plan on an implementation based on the work of this PR? Seems quite important.

Can you please provide the output of the following command: ``` $ celery -A proj report ```

@ptadas you do not need to register the `CustomTask`, the `base` argument value must be a class. Omitting the registration line, should work: ``` class CustomTask(Task): def run(self): print('running') @celery_app.task(bind=True,...

Judging from [this line](https://github.com/celery/celery/blob/ea964757d887a1ba351a2f2fefb81971d7674404/celery/bin/base.py#L460), the problem seems to have to do with the terminal width being reported wrong. Have you maybe tried starting the container with an interactive TTY (`docker...

Can you please give a more detailed code example?

Hello @caleb15 . Normally unpickleable exceptions should not be an issue, since there is specific handling for them. For details see [here](https://github.com/celery/celery/blob/f653dce4557c06c8d6f933f7c43486897747abff/celery/utils/serialization.py#L169). If you could provide a test case to...

Also, could you please share the hardware specifications (or simply the instance type) of the Redis instance? Generally it would be helpful if you had available metrics of (at least)...

This is part of the connection retry mechanism. Each transport can declare a set of recoverable exception classes. Are you using [librabbitmq](https://github.com/celery/kombu/blob/a600ab87d9c32d23396f1171486541ce0b6d937d/kombu/transport/librabbitmq.py#L86) ?

@rubenv as far as I understand the current code uses a connection pool to execute each statement separately and not a common connection across statements (always referring to a single...

This should be possible. Do you have a stack trace from the error?