Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Jarek Potiuk
Fantastic! Great job Ash! On Tue, May 19, 2020 at 12:14 PM Ash Berlin-Taylor wrote: > PR created that I think will fix it > https://github.com/apache/airflow/pull/8909 > > -ash > > On May 19 2020, at 10:08 am, Jarek Potiuk > wrote: > > > Issue created: https://github.com/apache/airflow/issues/8

Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Ash Berlin-Taylor
PR created that I think will fix it https://github.com/apache/airflow/pull/8909 -ash On May 19 2020, at 10:08 am, Jarek Potiuk wrote: > Issue created: https://github.com/apache/airflow/issues/8908 > > On Tue, May 19, 2020 at 11:06 AM Asif Saif Uddin wrote: > >> value = Exception('> \'sqlalch

Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Asif Saif Uddin
value = Exception('((\'(psycopg2.errors.UniqueViolation) duplicate key value violates..."pg_type_typname_nsp_index"\\nDETAIL: Key (typname, typnamespace)=(celery_tasksetmeta, 2200) already exists.\\n\',))') tb = None def reraise(tp, value, tb=None): """Reraise exception.""" if value.__traceback__ i

Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Jarek Potiuk
Issue created: https://github.com/apache/airflow/issues/8908 On Tue, May 19, 2020 at 11:06 AM Asif Saif Uddin wrote: > value = Exception(' \'sqlalchemy.exc.IntegrityError\'>((\'(psycopg2.errors.UniqueViolation) > duplicate key value violates..."pg_type_typname_nsp_index"\\nDETAIL: Key > (typname

Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Tomasz Urbaszek
Should we create an issue? Maybe Asif (CC) from Celery team will be able to help us? Tomek On Tue, May 19, 2020 at 10:39 AM Ash Berlin-Taylor wrote: > > I'll take a look. I'm surprised by that error though, it looks like two > processes are racing to create a table, and not dealing with losin

Re: Celery Executor test failing - help needed to solve it

2020-05-19 Thread Ash Berlin-Taylor
I'll take a look. I'm surprised by that error though, it looks like two processes are racing to create a table, and not dealing with losing. (I suspect we can fix it by pre-creating that tbl,/calling something before we spawn processes, but this really is a bug in celery.) On 19 May 2020 07:58:

Celery Executor test failing - help needed to solve it

2020-05-18 Thread Jarek Potiuk
Hello Everyone, but mostly I think Kamil, Ash, Kaxil, I think we need someone who knows a bit more about Celery Executor to stabilise one of the tests that is transiently failing. I think this started to appear recently (so likely it is one of the optimizations implemented recently) You can see e