harden document versions

This commit is contained in:
team 1
2026-02-16 08:48:35 +01:00
parent 93c4a53589
commit 6cc58c7d0d
4 changed files with 88 additions and 51 deletions

View File

@@ -5,15 +5,12 @@ namespace App\Service;
use App\Entity\Document;
use App\Entity\DocumentVersion;
use App\Entity\User;
use App\Ingest\IngestFlow;
use Doctrine\ORM\EntityManagerInterface;
class DocumentService
{
public function __construct(
private EntityManagerInterface $em,
private LockService $lockService,
private IngestFlow $ingestFlow,
) {}
/**
@@ -83,39 +80,21 @@ class DocumentService
*/
public function activateVersion(DocumentVersion $version): void
{
if (!$this->lockService->acquire()) {
throw new \RuntimeException('Another ingest job is already running.');
$document = $version->getDocument();
// Aktiv-Status in DB konsistent setzen (genau 1 aktive Version)
foreach ($document->getVersions() as $existingVersion) {
$existingVersion->setActive(false);
}
try {
$document = $version->getDocument();
$version->setActive(true);
$document->setCurrentVersion($version);
// 1) Aktiv-Status in DB konsistent setzen (genau 1 aktive Version)
foreach ($document->getVersions() as $existingVersion) {
$existingVersion->setActive(false);
}
// Wichtig: Aktivierung soll einen Job auslösen. Damit der Job NICHT an "INDEXED" scheitert,
// setzen wir hier bewusst auf PENDING.
$version->setIngestStatus(DocumentVersion::INGEST_PENDING);
$version->setActive(true);
$document->setCurrentVersion($version);
// 2) Ingest-Status (UI) wird im Fehlerfall auf FAILED gesetzt
$version->setIngestStatus(DocumentVersion::INGEST_RUNNING);
$this->em->flush();
// 3) Deterministischer Re-Ingest: alte Chunks raus, neue rein, FAISS rebuild
$this->ingestFlow->ingestDocumentVersion($version);
$version->setIngestStatus(DocumentVersion::INGEST_INDEXED);
$this->em->flush();
} catch (\Throwable $e) {
// Aktivierung bleibt in DB bestehen, aber Index ist ggf. nicht aktuell → Status markieren
$version->setIngestStatus(DocumentVersion::INGEST_FAILED);
$this->em->flush();
throw $e;
} finally {
$this->lockService->release();
}
$this->em->flush();
}
/**
@@ -152,4 +131,4 @@ class DocumentService
return $max + 1;
}
}
}