This is a race condition with multiple workers picking up the same job. Make sure your Redis connection has the block_for option set:
// config/queue.php
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => 'default',
'retry_after' => 600,
'block_for' => 5,
]
Also, reduce workers to 2 and increase retry_after to 600 (10 minutes) so slow jobs don't get retried while still processing.