Long videos blocked /playback for the entire encode duration. The fix is to populate the cache before the user clicks, not when they click. Changes: - Extract ffprobe + ffmpeg helpers to services/video.py so the request handler and the background task share one sync implementation. The endpoint wraps calls in asyncio.to_thread; celery just calls them. - New tasks/video.py with pretranscode_video. Idempotent: skips when the cache is already current and skips passthrough-safe sources (h264 in mp4/m4v/webm). 30-min task time limit so the long-tail files (3GP archive, multi-minute 1080p clips) still complete. - scan_folder now dispatches pretranscode_video alongside generate_thumbnails / extract_metadata for any new video row. - POST /library/maintenance/backfill-video-cache enqueues every active video so the existing library catches up. - libx264 preset bumped from fast to veryfast. ~2x throughput on this CPU-only box, output a few % larger but well within disk budget. - /playback simplifies to: cache check, passthrough if h264 in web-safe container, else sync transcode (still there as fallback for races against the queued task). Once the backfill task drains, /playback should be near-instant for every video. Any video added afterwards is pre-transcoded at scan time, so the user keeps that property going forward.
99 lines
3.7 KiB
Python
99 lines
3.7 KiB
Python
"""
|
|
Celery configuration and app initialization
|
|
"""
|
|
import logging
|
|
import os
|
|
|
|
from celery import Celery
|
|
from celery.signals import worker_process_init
|
|
from app.config import settings
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Create Celery app
|
|
celery_app = Celery(
|
|
'mulita',
|
|
broker=settings.celery_broker_url,
|
|
backend=settings.celery_result_backend,
|
|
include=[
|
|
'app.tasks.scan',
|
|
'app.tasks.thumbs',
|
|
'app.tasks.video',
|
|
'app.tasks.vision',
|
|
'app.services.metadata', # extract_metadata lives here
|
|
]
|
|
)
|
|
|
|
# Configure Celery
|
|
celery_app.conf.update(
|
|
task_serializer='json',
|
|
accept_content=['json'],
|
|
result_serializer='json',
|
|
timezone='UTC',
|
|
enable_utc=True,
|
|
# Robust acknowledgment: keep message in broker until task succeeds.
|
|
task_acks_late=True,
|
|
task_reject_on_worker_lost=True,
|
|
# Global time limits — individual tasks can override via decorator.
|
|
task_soft_time_limit=300, # 5 min — raises SoftTimeLimitExceeded
|
|
task_time_limit=600, # 10 min — SIGKILL
|
|
# Explicit routes for every task name. Wildcard patterns don't match
|
|
# short names produced by @shared_task(name='...').
|
|
task_routes={
|
|
# Vision queue — CPU-bound binary classification
|
|
'classify_content': {'queue': 'vision'},
|
|
'vision_fanout': {'queue': 'vision'},
|
|
# High-priority queue — thumbnails & duplicates
|
|
'generate_thumbnails': {'queue': 'high'},
|
|
'regenerate_all_thumbnails': {'queue': 'high'},
|
|
'backfill_phashes': {'queue': 'high'},
|
|
'regroup_duplicates': {'queue': 'high'},
|
|
'incremental_regroup_duplicates': {'queue': 'high'},
|
|
# Low-priority queue — scans
|
|
'scan_folder': {'queue': 'low'},
|
|
'scan_all_source_roots': {'queue': 'low'},
|
|
'backfill_gps': {'queue': 'low'},
|
|
# Pre-transcode HEVC videos in the background so /playback is a
|
|
# cache hit on first user click. CPU-heavy but tolerant of the
|
|
# low-priority queue (it doesn't block any user-facing flow).
|
|
'pretranscode_video': {'queue': 'low'},
|
|
# `watch_folders` is retired (file events come from NC webhooks)
|
|
# but the task definition still exists as a no-op shim for any
|
|
# in-flight apply_async. Route it to the default queue so the
|
|
# remaining worker actually drains it.
|
|
'watch_folders': {'queue': 'default'},
|
|
'discard_missing_photos_beat': {'queue': 'low'},
|
|
},
|
|
task_default_queue='default',
|
|
task_default_exchange='default',
|
|
task_default_exchange_type='direct',
|
|
task_default_routing_key='default',
|
|
broker_connection_retry_on_startup=True,
|
|
# Periodic catch-up so external file deletions in Nextcloud get
|
|
# reflected even when the real-time watcher missed the event
|
|
# (worker restart window, mount transient, etc).
|
|
beat_schedule={
|
|
'discard-missing-photos-every-30min': {
|
|
'task': 'discard_missing_photos_beat',
|
|
'schedule': 30 * 60,
|
|
},
|
|
},
|
|
)
|
|
|
|
|
|
@worker_process_init.connect
|
|
def _warmup_vision_models(**kwargs):
|
|
"""Pre-load vision models in the worker process so the first task
|
|
doesn't pay cold-start latency. Only runs on the vision queue."""
|
|
# The worker name contains the queue — only warm up vision workers.
|
|
worker_queues = os.environ.get("CELERY_QUEUES", "")
|
|
if "vision" not in worker_queues:
|
|
# Heuristic: check the celery command line for -Q vision
|
|
import sys
|
|
if "vision" not in " ".join(sys.argv):
|
|
return
|
|
try:
|
|
from app.services.vision.registry import registry
|
|
registry.warmup()
|
|
except Exception:
|
|
logger.exception("Vision model warmup failed") |