docs.rs failed to build gradatum-worker-0.3.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
gradatum-worker-0.0.0
gradatum-worker
Async queue consumer — processes curator and embedding jobs from the SQLite Apalis queue.
Status: Alpha (v0.3.x) — public, Apache-2.0. API not yet stable before v1.0. Part of gradatum — memory backbone for AI agents. · github · gradatum.org
Overview
gradatum-worker is the async background processor that drains the job queue populated
by gradatum-server. It uses Apalis as the job dispatch framework backed by SQLite.
Job types processed in v0.3.x:
| Job type | Description |
|---|---|
curate_note |
Runs the CuratorPipeline on a queued note (section routing, tags, wikilinks, dedup) |
embed_note |
Computes and stores embeddings for a note via the configured Embedder backend |
drift_check |
Periodic Phase A drift scan (size → prefix-4KB → full SHA-256) |
index_rebuild |
Full index rebuild for a vault |
purge_expired_revocations |
Cleans up expired JWT revocation records |
The worker uses BEGIN IMMEDIATE transactions for atomic job dequeue — preventing the
read-then-write deadlock that occurs under concurrency with BEGIN DEFERRED.
Usage
Configuration (TOML, shared with gradatum-server)
[]
= 4
= 300000
License
Apache-2.0