-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improvement: Adds field PeriodicTask.origin_key to sync tasks defined in source code with settings.beat_schedule #136
Open
pztrick
wants to merge
1
commit into
celery:main
Choose a base branch
from
pztrick:feature/sync-source-code-periodic-tasks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
django_celery_beat/migrations/0007_periodictask_origin_key.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import absolute_import, unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('django_celery_beat', '0006_auto_20180210_1226'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='periodictask', | ||
name='origin_key', | ||
field=models.CharField( | ||
blank=True, | ||
default=None, | ||
max_length=200, | ||
null=True, | ||
verbose_name='origin key' | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,12 +142,19 @@ def _unpack_fields(cls, schedule, | |
args=None, kwargs=None, relative=None, options=None, | ||
**entry): | ||
model_schedule, model_field = cls.to_model_schedule(schedule) | ||
schedules = { | ||
'interval': None, | ||
'crontab': None, | ||
'solar': None | ||
} | ||
schedules[model_field] = model_schedule | ||
|
||
entry.update(**schedules) | ||
entry.update( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So this will run two queries instead of one now? It would be nicer to keep it as one. |
||
{model_field: model_schedule}, | ||
args=dumps(args or []), | ||
kwargs=dumps(kwargs or {}), | ||
**cls._unpack_options(**options or {}) | ||
) | ||
entry.update(**cls._unpack_options(**options or {})) | ||
return entry | ||
|
||
@classmethod | ||
|
@@ -189,7 +196,8 @@ def __init__(self, *args, **kwargs): | |
|
||
def setup_schedule(self): | ||
self.install_default_entries(self.schedule) | ||
self.update_from_dict(self.app.conf.beat_schedule) | ||
self.update_from_dict(self.app.conf.beat_schedule, | ||
origin_key='beat_schedule') | ||
|
||
def all_as_schedule(self): | ||
debug('DatabaseScheduler: Fetching database schedule') | ||
|
@@ -248,18 +256,36 @@ def sync(self): | |
self._dirty |= _tried | ||
logger.exception('Database error while sync: %r', exc) | ||
|
||
def update_from_dict(self, mapping): | ||
def update_from_dict(self, mapping, origin_key=None): | ||
s = {} | ||
for name, entry_fields in items(mapping): | ||
try: | ||
entry = self.Entry.from_entry(name, | ||
app=self.app, | ||
origin_key=origin_key, | ||
**entry_fields) | ||
if entry.model.enabled: | ||
s[name] = entry | ||
|
||
except Exception as exc: | ||
logger.error(ADD_ENTRY_ERROR, name, exc, entry_fields) | ||
if origin_key: | ||
# delete database-persisted periodic tasks that | ||
# are no longer declared in source code | ||
existing_task_instances = PeriodicTask.objects.filter( | ||
origin_key=origin_key | ||
) | ||
existing_tasks = set( | ||
map(lambda x: x.name, existing_task_instances) | ||
) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could replace a lot of logic here with just this I think:
|
||
tasks_to_purge = existing_tasks - set(mapping.keys()) | ||
if tasks_to_purge: | ||
PeriodicTask.objects.filter( | ||
origin_key=origin_key, | ||
name__in=list(tasks_to_purge) | ||
).delete() | ||
logger.warn("Purged periodic tasks [origin_key=%s]: %s", | ||
origin_key, ', '.join(list(tasks_to_purge))) | ||
self.schedule.update(s) | ||
|
||
def install_default_entries(self, data): | ||
|
@@ -272,7 +298,7 @@ def install_default_entries(self, data): | |
'options': {'expires': 12 * 3600}, | ||
}, | ||
) | ||
self.update_from_dict(entries) | ||
self.update_from_dict(entries, origin_key='default_entries') | ||
|
||
@property | ||
def schedule(self): | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other migrations has been added, you'll need to rebase this to be the next one in the list based on what's in the master branch.