Skip to main content

Huldra

Huldra is a local arXiv metadata broker for one machine. Programs that need arXiv papers can ask Huldra for metadata instead of each calling arXiv directly. Huldra shares a SQLite cache, request queue, durable rate limiter, cooldown state, and upstream lease across those programs.

Huldra is an independent package and CLI. It is not a plugin for another project, and it does not depend on Recoleta.

Install

Install the published package:

pip install huldra-arxiv
huldra --help

For local development:

uv sync --dev
uv run huldra --help

The PyPI package name is huldra-arxiv. The Python package and CLI command are still named huldra.

The default database is:

~/.local/share/huldra/huldra.db

Override it per command with --db PATH or with HULDRA_DB_PATH.

Run Locally

Initialize a store:

uv run huldra store init --db ~/.local/share/huldra/huldra.db

Start the local HTTP API:

uv run huldra daemon --db ~/.local/share/huldra/huldra.db --host 127.0.0.1 --port 8765

Run a foreground worker in a separate terminal:

uv run huldra worker --db ~/.local/share/huldra/huldra.db --poll-interval-seconds 300 --json

Idle worker passes are silent by default. Worker --json output is compact JSON Lines (one non-idle pass per line), which is safe to stream to a supervisor or parser. Add --emit-idle only for short-lived debugging. The poll interval defaults to 300 seconds and cannot be set below 1 second.

Check status:

uv run huldra status --db ~/.local/share/huldra/huldra.db --json

Status includes queue depth, cache totals, separate durable HTTP 429 and OAI 503 + Retry-After totals, adaptive cooldown state, last-request timing, worker heartbeat, worker next wake, the last worker error, and row counts for events, queue history, sync jobs, and sync-job pages.

Preview retention cleanup without deleting anything:

uv run huldra store gc --db ~/.local/share/huldra/huldra.db --older-than-days 30 --json

The store must already exist and be initialized; a dry run does not create or migrate a database. After reviewing the preview, repeat it with --apply. Cleanup removes only old events and explicitly terminal queue and sync records. It preserves pending, delayed, claimed, running, and leased work, and does not delete cached papers or cache entries. See the local operations guide for deletion and SQLite file-size details.

The API binds to 127.0.0.1 by default. Do not expose it to a public network without a reverse proxy and authentication.

CLI Query

Submit a query without waiting for the worker:

uv run huldra query \
  --db ~/.local/share/huldra/huldra.db \
  --client-id demo \
  --search-query 'cat:cs.AI AND all:agent' \
  --max-results 50 \
  --json

Read a completed result:

uv run huldra result --db ~/.local/share/huldra/huldra.db --cache-key KEY --json

huldra result is a raw cache inspection command. It reports whether the stored cache entry is readable and returns cached papers when it can. It does not reinterpret the cache for a caller's analysis_ready policy.

Look up one cached paper:

uv run huldra paper --db ~/.local/share/huldra/huldra.db --arxiv-id 2401.00001 --json

Sync a submitted-date UTC day and optionally wait for the worker path inline. By default this completes one legacy search slice and reports coverage_status="slice" even when arXiv says more results exist:

uv run huldra sync \
  --db ~/.local/share/huldra/huldra.db \
  --search-query 'cat:cs.AI AND all:agent' \
  --date 2026-05-20 \
  --max-results 60 \
  --wait \
  --json

Fetch every legacy search page for a bounded window by opting into complete window mode. The request budget is persisted with queued work and counts actual upstream attempts, including retries:

uv run huldra sync \
  --db ~/.local/share/huldra/huldra.db \
  --search-query 'cat:cs.AI AND all:agent' \
  --date 2026-05-20 \
  --max-results 60 \
  --mode complete-window \
  --max-pages-per-window 100 \
  --max-requests-total 500 \
  --wait \
  --json

Backfill daily submitted-date windows:

uv run huldra backfill \
  --db ~/.local/share/huldra/huldra.db \
  --search-query 'cat:cs.AI' \
  --start-date 2026-05-01 \
  --end-date 2026-05-20 \
  --max-results 60 \
  --max-pages-per-window 100 \
  --max-requests-total 500 \
  --json

Run an OAI-PMH harvest for complete or category-scoped metadata sync:

uv run huldra harvest oai \
  --db ~/.local/share/huldra/huldra.db \
  --metadata-prefix arXiv \
  --set cs:cs:AI \
  --mode incremental \
  --max-pages 1000 \
  --max-requests 1000 \
  --runtime-budget-seconds 3600 \
  --json

Python Client

from huldra.client import HuldraClient

with HuldraClient(base_url="http://127.0.0.1:8765") as client:
    result = client.ensure_search(
        search_query="cat:cs.AI AND all:agent",
        max_results=50,
        wait=True,
    )
    print(result.status, result.papers_total)

For Recoleta-style pre-syncs, call the maintenance surface instead of shelling out to the CLI:

from datetime import UTC, datetime, timedelta

from huldra.client import HuldraClient
from huldra.models import ArxivRequest, CachePolicy, ReadinessMode

day = datetime(2026, 5, 20, tzinfo=UTC)
request = ArxivRequest(
    client_id="recoleta:embodied_ai",
    search_query="cat:cs.AI",
    submitted_start=day,
    submitted_end=day + timedelta(days=1),
    max_results=60,
    cache_policy=CachePolicy.CACHE_ONLY,
    readiness=ReadinessMode.ANALYSIS_READY,
)

with HuldraClient(base_url="http://127.0.0.1:8765") as client:
    summary = client.sync_windows([request], wait=True, wait_timeout_seconds=30)
    print(summary.completed_windows_total, summary.upstream_requests_total)

Maintenance completion means the raw cache is readable. The per-request serving_status still tells you whether the same cache is currently accepted by the request's readiness mode. For legacy search, check coverage_status, completed_slices_total, pages_total, and pages_completed_total before treating a window as complete.

Safe Readiness

Use readiness="analysis_ready" for ingestion paths that must not consume immature submitted-date windows. If a completed window is still inside the maturity lag, Huldra returns:

  • status="immature"
  • ready=false
  • analysis_ready=false
  • blocked_reason="immature_window"
  • an empty papers list
  • cached_papers_total with the number of suppressed cached papers

Use readiness="raw_completed" for exploratory reads that may inspect same-day metadata. Raw reads can return papers from an immature window, but they still report analysis_ready=false, mature=false, and blocked_reason="immature_window".

Set request-level maturity_lag_days=0 only when the caller explicitly wants to disable maturity blocking. This field changes readiness interpretation; it does not change the cache key.

Submitted-date bounds must be UTC minute-aligned. Huldra rejects bounds with seconds or microseconds instead of silently widening or narrowing the window.

HTTP API

curl http://127.0.0.1:8765/v1/status

curl -X POST http://127.0.0.1:8765/v1/requests \
  -H 'content-type: application/json' \
  -d '{"client_id":"demo","search_query":"cat:cs.AI","max_results":10}'

Rate Limits And 429 Cooldown

Huldra keeps all arXiv legacy API access behind one durable limiter. The default request interval is 5 seconds, which is more conservative than arXiv's 3 second minimum. Only one upstream fetch lease can be held at a time.

When arXiv returns HTTP 429, or the OAI endpoint returns 503 with Retry-After, Huldra persists cooldown_until in SQLite. Retry-After is a hard lower bound. Consecutive rate-limit responses multiply the configured cooldown by 2, up to 24 hours by default, and add only upward jitter of up to 60 seconds. A successful upstream request resets the consecutive counter. New requests can still be queued, but workers will not probe upstream again until the cooldown expires.

Tune the policy with HULDRA_COOLDOWN_SECONDS, HULDRA_RATE_LIMIT_BACKOFF_MULTIPLIER, HULDRA_RATE_LIMIT_MAX_COOLDOWN_SECONDS, and HULDRA_RATE_LIMIT_JITTER_SECONDS. The cap must remain at least as large as the cooldown and request-interval safety floor.

OAI-PMH Harvesting

The OAI-PMH surface uses https://oaipmh.arxiv.org/oai by default and stores harvest jobs, page state, watermarks, raw OAI records, deleted headers, and normalized paper metadata. Incremental harvests use the last successful server response date or datestamp watermark unless --from is provided explicitly. Watermarks advance only after all pages in the harvest succeed. Each page, next token, cumulative counter, request count, and deadline is checkpointed in the same SQLite transaction. If a process stops, rerun the same harvest and Huldra resumes the running job without refetching committed pages. Page, request, and runtime budgets stop the job before the next network request; repeated tokens, token cycles, and no-progress pages fail deterministically. Initial and incremental jobs that can write the same watermark share one lease, and watermark updates are monotonic. To continue from a specific token, pass --resumption-token.

Use legacy search for request-sized slices and complete-window maintenance. Use OAI-PMH for full mirrors, category-scoped mirrors, and datestamp-based incremental sync.

Metadata-Only Boundary

This package stores descriptive metadata from arXiv: IDs, titles, abstracts, authors, categories, publication dates, comments, journal references, DOIs, OAI identifiers, OAI datestamps, set specs, license fields, deleted-record state, and raw metadata needed for reprocessing. It does not cache or serve PDFs, source tarballs, generated full text, or paper HTML.

Non-Goals

  • No Recoleta dependency or runtime adapter.
  • No PDF, source, or full-text cache.
  • No multi-machine distributed limiter. For more than one machine, run one shared broker or add a future shared rate-state backend.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

huldra_arxiv-0.4.1.tar.gz (180.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

huldra_arxiv-0.4.1-py3-none-any.whl (76.8 kB view details)

Uploaded Python 3

File details

Details for the file huldra_arxiv-0.4.1.tar.gz.

File metadata

  • Download URL: huldra_arxiv-0.4.1.tar.gz
  • Upload date:
  • Size: 180.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for huldra_arxiv-0.4.1.tar.gz
Algorithm Hash digest
SHA256 ac02c138df5e4ddc8580c7b03122783b69598480cdfdda518c3e8e0dd6e9d5cd
MD5 a553f24187be88b7b7c0570cf31bcad0
BLAKE2b-256 1ce02e44a1def48d0f5c07d322961570c3ee4dad7f4ff2bc52457e62f715c9dc

See more details on using hashes here.

File details

Details for the file huldra_arxiv-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: huldra_arxiv-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for huldra_arxiv-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 002f2876d8f246eeacc449cf9ad2c750defca7d885c090c235729578df824006
MD5 43c9952f29aacb9d309b787b94122022
BLAKE2b-256 7d7b3cb38ee562132d3446143948ad9af0747a885bc5abbf669c506e120c7a0a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.4.2

2 files

This release

0.4.1 This release

2 files

0.4.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page