I'm running Django on several web hosts connected to a common database server. The database contains a simple table of pending jobs. e.g.
class Job(models.Model):
name = models.CharField(max_length=255, null=False, help_text='task to do')
worker = models.CharField(max_length=255, null=True, help_text='globally unique host name')
How would I use Django's ORM to query a pending job (where worker is null) and set the worker name atomically, so no two Django processes would accidentally grab the same job (i.e. avoid a race condition)?
Ideally, I'd simply want to wrap by query/update inside a table lock, but Django's ORM doesn't seem to have this feature built-in.