feat(cleanup): add stale chunked upload cleanup worker#208
Open
onkar0127 wants to merge 1 commit into
Open
Conversation
- Track upload status (PENDING / COMPLETED) in File model schema - Link UploadSession to File model using fileId - Pre-create PENDING file in initUpload and promote to COMPLETED in saveFileInfo - Exclude PENDING files from listings, folder retrieval, tag retrieval, and statistics - Add a background cron job scheduled daily at midnight to sweep stale PENDING uploads - Support disabling queues via environment variables to prevent test lockups
👷 Deploy request for file-sharingsystem pending review.Visit the deploys page to approve it
|
|
@onkar0127 is attempting to deploy a commit to the imanchalsingh Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
Author
|
@imanchalsingh can you please checkout My PR!! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
fixes #113
Feature: Automated Background Cleanup Worker for Abandoned Chunked Uploads
1. Description
Implements an automated cleanup system for incomplete/abandoned chunked file uploads to resolve local disk leaks and database clutter. It tracks file status, hides incomplete uploads from the dashboard, and runs a daily cron job at midnight to delete abandoned uploads older than 24 hours.
2. Key Changes
statusfield ('PENDING' | 'COMPLETED') toFileand afileIdreference toUploadSession.initUploadpre-creates theFiledocument inPENDINGstate;saveFileInfoupdates and promotes it toCOMPLETED.PENDINGfiles from stats, favorites, tag lookups, global search, and folder listings.0 0 * * *) to cascade-delete stale pending files, upload sessions, and local disk folders.nextparameter inuploadController.jsendpoints to resolve potential crash loops, and added queue bypasses for tests when running without Redis.