Use a single worker

This commit is contained in:
Yiorgis Gozadinos 2026-06-01 12:28:44 +03:00
parent 2d89f4ebbe
commit cb18133dba
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -13,6 +13,10 @@ processing:
ingester:
queue:
path: ingester.db
workers:
# One worker: the runner's single CPU-bound Ollama serialises embeds, so
# concurrent workers thrash rather than parallelise.
worker_count: 1
sources:
- type: fs
id: docs

View file

@ -7,7 +7,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4