-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Rule label/annotation storage to JsonField
When Promgen was written, there was not a default JsonField, so labels and annotations were implemented as a class. Now that JsonField has been in Django since 3.1, it's a good time to change the implementation. Previously, our audit log did *not* store change to labels/annotations (because they were separate objects), so one benefit of this migration is that those changes now show up in the edit log. We also expect some queries to be a bit faster now that we do not need to query the other table relations for labels/annotations.
- Loading branch information
Showing
12 changed files
with
159 additions
and
180 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Generated by Django 3.2.13 on 2023-07-11 03:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
def forward(apps, schema_editor): | ||
Rule = apps.get_model("promgen", "Rule") | ||
Label = apps.get_model("promgen", "RuleLabel") | ||
Annotation = apps.get_model("promgen", "RuleAnnotation") | ||
|
||
# For our forward migration, we want to loop through all the old Label and Annotation entries | ||
# and convert them to a dictionary property on our Rule model | ||
for rule in Rule.objects.all(): | ||
rule.labels = {l.name: l.value for l in Label.objects.filter(rule_id=rule.id)} | ||
rule.annotations = {l.name: l.value for l in Annotation.objects.filter(rule_id=rule.id)} | ||
rule.save() | ||
|
||
|
||
def reverse(apps, schema_editor): | ||
Rule = apps.get_model("promgen", "Rule") | ||
Label = apps.get_model("promgen", "RuleLabel") | ||
Annotation = apps.get_model("promgen", "RuleAnnotation") | ||
for rule in Rule.objects.all(): | ||
Label.objects.bulk_create( | ||
[Label(rule_id=rule.id, name=x, value=rule.labels[x]) for x in rule.labels] | ||
) | ||
Annotation.objects.bulk_create( | ||
[Annotation(rule_id=rule.id, name=x, value=rule.annotations[x]) for x in rule.annotations] | ||
) | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("promgen", "0021_shard_load"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="rule", | ||
name="annotations", | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.AddField( | ||
model_name="rule", | ||
name="labels", | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.RunPython(forward, reverse), | ||
migrations.DeleteModel( | ||
name="RuleAnnotation", | ||
), | ||
migrations.DeleteModel( | ||
name="RuleLabel", | ||
), | ||
] |
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
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
Oops, something went wrong.