This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
imagerepo/app/celery_app.py
T
bvandeusen ce560d09a1 feat(integrity): structural verification + supersede-on-replace pipeline
Adds per-image integrity tracking so corrupt files are detected, excluded
from random/showcase/ML/suggestion paths, and recoverable by dropping a
fresh copy in /import — closing the gap that surfaced as the WD14
'6 bytes not processed' OSError.

Schema (migration l26042501)
- image_record.integrity_status: unknown | ok | truncated | unreadable | missing
- image_record.integrity_checked_at: timestamptz
- partial index on status <> 'ok' for cheap report/filter queries

Verifier
- app/services/integrity.py: verify_path() dispatches by extension
- PIL two-stage (verify + load with LOAD_TRUNCATED_IMAGES disabled)
- ffprobe for video, zipfile.testzip for archives
- Truncation-vs-unreadable distinction via PIL message hints

Pipeline
- verify_media_integrity Celery task: per-image, idempotent
- verify_unverified_images sweep: only_unknown by default, skips
  paths in active import tasks
- Hooked into the end of import_media_file (new + archive paths) and
  the supersede branch
- supersede_image() resets status to 'unknown' so the post-supersede
  verify writes a fresh truth
- Supersede-on-replace: a fresh /import/<artist>/<filename> matching
  a flagged-corrupt record routes through _supersede_existing,
  preserving tags/series/embeddings

Exclusions
- /, /api/random-images, tag_and_embed, ml.backfill enqueue, and
  get_suggestions all filter integrity_status IN ('ok', 'unknown') so
  flagged rows don't poison the gallery, ML, or suggestion math.
  'unknown' is treated as healthy so post-migration data stays visible
  until the sweep runs.

UI / report
- Settings -> Maintenance: 'Verify unknown' + 'Force re-verify all'
- GET /api/integrity/failed (paginated list of flagged rows)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-26 00:16:06 -04:00

154 lines
5.5 KiB
Python

# app/celery_app.py
"""
Celery application factory and configuration.
Provides task queue functionality for the ImageRepo import pipeline.
"""
import os
from celery import Celery
# Default broker/backend URLs
DEFAULT_BROKER = 'redis://redis:6379/0'
DEFAULT_BACKEND = 'redis://redis:6379/0'
def make_celery(app=None):
"""
Create Celery instance with Flask app context support.
Args:
app: Flask application instance (optional)
Returns:
Configured Celery instance
"""
# Get broker/backend from app config or environment
if app:
broker = app.config.get('CELERY_BROKER_URL', DEFAULT_BROKER)
backend = app.config.get('CELERY_RESULT_BACKEND', DEFAULT_BACKEND)
else:
broker = os.environ.get('CELERY_BROKER_URL', DEFAULT_BROKER)
backend = os.environ.get('CELERY_RESULT_BACKEND', DEFAULT_BACKEND)
celery = Celery(
'imagerepo',
broker=broker,
backend=backend,
include=[
'app.tasks.scan',
'app.tasks.import_file',
'app.tasks.thumbnail',
'app.tasks.sidecar',
'app.tasks.ml',
'app.tasks.maintenance',
]
)
# Worker concurrency from environment
concurrency = int(os.environ.get('CELERY_WORKER_CONCURRENCY', '2'))
celery.conf.update(
# Serialization
task_serializer='json',
accept_content=['json'],
result_serializer='json',
timezone='UTC',
enable_utc=True,
# Concurrency - intentionally low for steady background processing
worker_concurrency=concurrency,
worker_prefetch_multiplier=1, # One task at a time per worker process
# Task routing - separate queues for different task types
# Scheduler handles: maintenance (periodic tasks) + scan (directory scans)
# Worker handles: import, thumbnail, sidecar, default
task_routes={
# Scan tasks - handled by scheduler
'app.tasks.scan.scan_directory': {'queue': 'scan'},
'app.tasks.scan.deep_scan_directory': {'queue': 'scan'},
# Maintenance tasks - handled by scheduler (periodic/lightweight)
'app.tasks.scan.recover_interrupted_tasks': {'queue': 'maintenance'},
'app.tasks.scan.cleanup_old_tasks': {'queue': 'maintenance'},
'app.tasks.scan.update_system_stats': {'queue': 'maintenance'},
'app.tasks.scan.update_batch_stats': {'queue': 'maintenance'},
'app.tasks.maintenance.sweep_blocklisted_tag_from_images': {'queue': 'maintenance'},
'app.tasks.maintenance.sync_character_fandoms_to_images': {'queue': 'maintenance'},
'app.tasks.maintenance.verify_media_integrity': {'queue': 'maintenance'},
'app.tasks.maintenance.verify_unverified_images': {'queue': 'maintenance'},
# Import tasks - handled by worker (heavy processing)
'app.tasks.import_file.*': {'queue': 'import'},
'app.tasks.thumbnail.*': {'queue': 'thumbnail'},
'app.tasks.sidecar.*': {'queue': 'sidecar'},
# ML inference tasks - handled by ml-worker
'app.tasks.ml.*': {'queue': 'ml'},
},
# Task default queue for unrouted tasks
task_default_queue='default',
# Result backend settings
result_expires=86400, # 24 hours
# Task execution settings for resume capability
task_acks_late=True, # Acknowledge after task completes
task_reject_on_worker_lost=True, # Requeue if worker dies
# Time limits (video transcoding may need longer)
task_soft_time_limit=600, # 10 minutes soft limit
task_time_limit=900, # 15 minutes hard limit
# Periodic task schedule (Celery Beat)
beat_schedule={
'periodic-import-scan': {
'task': 'app.tasks.scan.scan_directory',
'schedule': int(os.environ.get('IMPORT_EVERY_SECONDS', '28800')), # 8 hours default
'args': ('/import', '/images'),
},
'recover-interrupted-tasks': {
'task': 'app.tasks.scan.recover_interrupted_tasks',
'schedule': 300, # Every 5 minutes
},
'cleanup-old-tasks': {
'task': 'app.tasks.scan.cleanup_old_tasks',
'schedule': 86400, # Once per day
'args': (7,), # Keep tasks for 7 days
},
'update-system-stats': {
'task': 'app.tasks.scan.update_system_stats',
'schedule': 21600, # Every 6 hours
},
},
)
if app:
# Don't pass Flask config directly to Celery - it contains old-style keys
# that conflict with Celery's new lowercase format.
# The broker/backend are already set above from app.config.
# Create a task base class that runs within Flask app context
class ContextTask(celery.Task):
def __call__(self, *args, **kwargs):
with app.app_context():
return self.run(*args, **kwargs)
celery.Task = ContextTask
return celery
def create_celery_with_app():
"""
Create Celery instance with Flask app context for standalone workers.
This is used when running `celery -A app.celery_app:celery worker`.
"""
from app import create_app
flask_app = create_app()
return make_celery(flask_app)
# Create celery instance with Flask app context
# This ensures workers have access to the database and Flask extensions
celery = create_celery_with_app()