forked from Github/frigate
Optimization of Sync Records: Implementing Pagination and Temporary Table (#6585)
* Update pull_request.yml * Add temporary table for deletion and use pagination to process recordings in chunks for deletion of recordings with missing files * move RecordingsToDelete class to models.py * recording cleanup: bugfixes * Update cleanup.py * improve log message in cleanup.py Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
This commit is contained in:
committed by
GitHub
parent
7459a1cdde
commit
5c27cb7e9b
@@ -65,3 +65,11 @@ class Recordings(Model): # type: ignore[misc]
|
||||
motion = IntegerField(null=True)
|
||||
objects = IntegerField(null=True)
|
||||
segment_size = FloatField(default=0) # this should be stored as MB
|
||||
|
||||
|
||||
# Used for temporary table in record/cleanup.py
|
||||
class RecordingsToDelete(Model): # type: ignore[misc]
|
||||
id = CharField(null=False, primary_key=False, max_length=30)
|
||||
|
||||
class Meta:
|
||||
temporary = True
|
||||
|
||||
Reference in New Issue
Block a user