Merge pull request #850 from cbcoutinho/feat/ingest-pending-documents-metric

feat: backend-agnostic vector-sync gauges (pending / documents / chunks)
This commit is contained in:
Chris Coutinho
2026-06-04 21:27:18 +02:00
committed by GitHub
11 changed files with 514 additions and 46 deletions
+27
View File
@@ -126,6 +126,7 @@ from nextcloud_mcp_server.server import (
)
from nextcloud_mcp_server.server.auth_tools import register_auth_tools
from nextcloud_mcp_server.server.oauth_tools import register_oauth_tools
from nextcloud_mcp_server.vector.metrics_publisher import vector_sync_metrics_task
from nextcloud_mcp_server.vector.oauth_sync import (
oauth_processor_task,
user_manager_task,
@@ -1782,6 +1783,18 @@ def get_app(transport: str = "streamable-http", enabled_apps: list[str] | None =
tg, spawn_worker, settings.vector_sync_processor_workers
)
# Publish outstanding-work + corpus gauges on a fixed cadence,
# independent of the consumer path and queue backend (fixes the
# gauge reading 0 on the multi-user path; see metrics_publisher).
# receive_stream is None in postgres mode — get_ingest_pending
# falls back to the procrastinate job counts there.
await tg.start(
vector_sync_metrics_task,
task_producer,
receive_stream,
shutdown_event,
)
# Expose this long-lived task group to request-path code that
# wants to spawn background work (e.g. ADR-019 verify-on-read
# eviction). Eviction coroutines have their own try/except, so
@@ -1989,6 +2002,20 @@ def get_app(transport: str = "streamable-http", enabled_apps: list[str] | None =
tg, spawn_worker, settings.vector_sync_processor_workers
)
# Publish outstanding-work + corpus gauges on a fixed
# cadence. Critical on this multi-user path: the consumer is
# oauth_processor_task, which never updated the queue gauge,
# so without this the gauge read 0 while the buffer held
# thousands of pending docs (see metrics_publisher).
# receive_stream is None in postgres mode — get_ingest_pending
# falls back to the procrastinate job counts there.
await tg.start(
vector_sync_metrics_task,
task_producer,
receive_stream,
shutdown_event,
)
# Expose this long-lived task group to request-path code
# that wants to spawn background work (e.g. ADR-019
# verify-on-read eviction). Eviction coroutines have their