Use a single worker
This commit is contained in:
parent
2d89f4ebbe
commit
cb18133dba
2 changed files with 5 additions and 1 deletions
4
.github/haiku.rag.yaml
vendored
4
.github/haiku.rag.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/build-rag-db.yml
vendored
2
.github/workflows/build-rag-db.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue