"""worker_capabilities + worker_heartbeats + worker_jobs 테이블 ORM. 1A scaffold (mig 270~274) + 1B 활성화 (mig 275~276). 1B = WorkerJob 신규 + 5 endpoint 실 구현. """ from datetime import datetime from sqlalchemy import BigInteger, DateTime, ForeignKey, SmallInteger, Text from sqlalchemy.dialects.postgresql import JSONB from sqlalchemy.orm import Mapped, mapped_column from core.database import Base class WorkerCapability(Base): __tablename__ = "worker_capabilities" worker_id: Mapped[str] = mapped_column(Text, primary_key=True) user_id: Mapped[int] = mapped_column( BigInteger, ForeignKey("users.id"), nullable=False ) device_label: Mapped[str] = mapped_column(Text, nullable=False) worker_class: Mapped[str] = mapped_column(Text, nullable=False) tier: Mapped[str] = mapped_column(Text, nullable=False) capabilities: Mapped[list] = mapped_column(JSONB, default=list, nullable=False) models_loaded: Mapped[list] = mapped_column(JSONB, default=list, nullable=False) endpoint: Mapped[str | None] = mapped_column(Text) created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now, nullable=False ) last_registered_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now, nullable=False ) class WorkerHeartbeat(Base): __tablename__ = "worker_heartbeats" id: Mapped[int] = mapped_column(BigInteger, primary_key=True) worker_id: Mapped[str] = mapped_column( Text, ForeignKey("worker_capabilities.worker_id"), nullable=False ) heartbeat_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now, nullable=False ) status: Mapped[str] = mapped_column(Text, nullable=False) current_job_id: Mapped[int | None] = mapped_column(BigInteger) battery: Mapped[str | None] = mapped_column(Text) thermal: Mapped[str | None] = mapped_column(Text) raw_payload: Mapped[dict] = mapped_column(JSONB, default=dict, nullable=False) class WorkerJob(Base): # user_id = job owner user_id (실 사용자). worker bot 아님. worker 인증은 worker_id+JWT 별도. # result = raw JSONB only (policy §B.2 invariant 3 — canonical promote = Notebook-Pilot-1). __tablename__ = "worker_jobs" id: Mapped[int] = mapped_column(BigInteger, primary_key=True) user_id: Mapped[int] = mapped_column( BigInteger, ForeignKey("users.id"), nullable=False ) job_type: Mapped[str] = mapped_column(Text, nullable=False) status: Mapped[str] = mapped_column(Text, nullable=False, default="pending") worker_id: Mapped[str | None] = mapped_column( Text, ForeignKey("worker_capabilities.worker_id") ) payload: Mapped[dict] = mapped_column(JSONB, default=dict, nullable=False) result: Mapped[dict | None] = mapped_column(JSONB) error_message: Mapped[str | None] = mapped_column(Text) attempts: Mapped[int] = mapped_column(SmallInteger, default=0, nullable=False) max_attempts: Mapped[int] = mapped_column(SmallInteger, default=3, nullable=False) created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now, nullable=False ) claimed_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True)) completed_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True))