Mark Parrish

Results 7 comments of Mark Parrish

I am experiencing the same thing. For me it is using multiple queue workers through supervisor and using sqlite as the index db. Only one worker gets to work on...

I think this is caused by the a double call to the primary key. When I dd the query string, it shows an entry for id and the custom primary...

I agree with @SamuelY. I think the issue stems from $perm being pulled from the user_permission table. $perm->id is the id from that table and not the id from the...

Did you update your mysql? I think there was a change to the default. You need to SET PERSIST local_infile = 1; in your cnf file.

You need to add sep='\t' to the call. d6tstack.utils.pd_to_psql(df, str(engine.url), table_name, if_exists='append',sep='\t')

I think the best way to handle "noise" in your file is to use the drop filter ` if [FIRST_COLUMN] in ["FIRST_COLUMN"] { drop { } } ` This way...

I did an - php artisan optimize:clear - solved my problem. Laravel 10.39