-
-
Notifications
You must be signed in to change notification settings - Fork 196
Add maintenance function to remove old import tasks #4920
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9e4f53e
Add remove_old_import_tasks and test
jamesrkiger 3a1020b
Remove unnecessary line
jamesrkiger 26f26b4
Refactor chunked deletion and add test note
jamesrkiger b1d0b2b
Add constance config for import cleanup and fix user model in test
jamesrkiger 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
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,33 @@ | ||
# coding: utf-8 | ||
from datetime import timedelta | ||
|
||
from django.contrib.auth import get_user_model | ||
from django.utils import timezone | ||
|
||
from kpi.maintenance_tasks import remove_old_import_tasks | ||
from kpi.models import ImportTask | ||
from kpi.tests.base_test_case import BaseTestCase | ||
|
||
|
||
class AssetImportTaskHousekeepingTest(BaseTestCase): | ||
fixtures = ['test_data'] | ||
|
||
def setUp(self): | ||
User = get_user_model() | ||
self.user = User.objects.get(username='someuser') | ||
|
||
def test_remove_old_import_tasks(self): | ||
old_task = ImportTask.objects.create( | ||
user=self.user, | ||
data='{}', | ||
) | ||
# Because of `auto_date_now`, we cannot specify created_date on creation | ||
old_task.date_created = timezone.now() - timedelta(days=95) | ||
old_task.save(update_fields=['date_created']) | ||
|
||
new_task = ImportTask.objects.create(user=self.user, data='{}') | ||
|
||
remove_old_import_tasks() | ||
|
||
assert ImportTask.objects.filter(id=new_task.id).exists() | ||
assert not ImportTask.objects.filter(id=old_task.id).exists() |
This file contains hidden or 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,8 @@ | ||
from django.db.models import QuerySet | ||
|
||
|
||
def chunked_delete(queryset: QuerySet): | ||
while True: | ||
count, _ = queryset.filter(pk__in=queryset[:1000]).delete() | ||
if not count: | ||
break |
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.
Uh oh!
There was an error while loading. Please reload this page.