Docs and operating-model requests 504: content hydration crawls 2,179 GitHub blobs serially inside a 30s Lambda
Nobody has claimed this yet.
Assessment
- Difficulty
- 5/5
- Estimated time
- Over a week
- Newbie friendliness
- 35/100
- Issue type
- Bug
- Clarity
- Mostly clear
- Activity status
- Active
- Tech stack
- aws, github, typescript
- Domain
- backend, cloud, observability, performance
Research direction
Start with backend/src/docs/githubStore.ts and trace how ContentsApiGithubStore.sync() is called by operatingModel/loader.ts. Reproduce the direct docs endpoint timeout, then choose and scope a hydration approach that completes within the Lambda budget and makes GitHub requests fail fast. Also inspect seedRuntimeUsers for the existing-user role backfill; done means docs and operating-model endpoints recover, hangs return promptly, and missing roles cannot recur.
Written by the indexing model from the issue text.
Description
Symptom
The portal Today page shows "Process documents are unavailable — HTTP 504", an empty action queue, and My Plan / operating-model data missing. Work API calls were also failing (fixed separately, see below).
Diagnosis (verified against production 2026-09-26)
GET /docs/process-qualityinvoked directly on the backend Lambda returnsSandbox.Timedoutafter 30.00s;/healthon the same container returns 200 in ~2s. CloudFront surfaces the timeout as 504.- Every docs/operating-model request calls
ContentsApiGithubStore.sync()(backend/src/docs/githubStore.ts), which on a cold container hydrates the wholecontent/tree one GitHub API call per blob, serially, with no fetch timeout. DataTalksClub/dataops-knowledgecontent/currently holds 2,179 blobs (443 md, 1,516 jpg, 220 png). At ~0.3–0.5s per blobs call that is ~10–15 minutes of work inside a 30s Lambda, so hydration never completes in one invocation. Each new container restarts the crawl (progress persists only in per-container /tmp), so no container ever becomes warm.- Blast radius:
/docs/*,/search,/api/operating-model,/api/my-plan, and the Today page's process-quality call (operatingModel/loader.tscalls the samestore.sync()). - Side damage: each doomed crawl burns up to ~2,200 GitHub requests; the knowledge token's rate limit already showed 1,301/5,000 used within one hour.
Work API 403s (fixed in data on 2026-09-26, needs a repo-level guard)
- The #164 role gate denies users without a supported
role. The three live user items predate the role attribute (created 2026-06-28, norole), andseedRuntimeUsersskips existing users as "unchanged", so the role was never backfilled. Every team read/work mutation returned 403 ("Team access requires an active admin or operator role"). - Applied the declared seed state (
role: 'admin'for grace/valeriia/alexey) directly todataops-v1-usersvia UpdateItem;/api/cardsand/api/tasksverified 200 after. - Follow-up needed: make
seedRuntimeUsersupdate missing attributes on existing users (or migrate in place), so this cannot recur. Data migration was done by hand this time only because the gate shipped without it.
Fix directions (for grooming)
- Stop eager per-blob hydration. Candidates: hydrate only
.mdeagerly and fetch images lazily viaensureFile; or download a single tarball and extractcontent/; or sync the knowledge repo to S3 from CI and hydrate from S3 in one/few calls. - Add an explicit timeout (
AbortSignal.timeout) torequest()/fetchImplingithubStore.tsso a GitHub hang fails fast with 502 instead of eating the whole Lambda budget. - Consider a startup/deploy-time hydration step (offline snapshot in the artifact) instead of on-demand crawling.
Related observability gap
Backend Lambda log streams stop on 2026-08-11 even though the function is actively invoked (CloudWatch metrics show hundreds of invocations/day; direct invokes today produced no streams). The execution role still has AWSLambdaBasicExecutionRole attached. Root cause unknown — needs its own investigation; until fixed, production debugging is blind (this diagnosis had to be reproduced by direct invokes).
- Dominant language
- TypeScript
- Stars
- 2
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Getting set up
- Ships a Dockerfile or Docker Compose file
- No pull request template
- No contributing guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from DataTalksClub/dataops
-
backend bug needs grooming
Difficulty 3/5 1-2 days Newbie friendliness 75/100
DataTalksClub/dataops#227 · 1 comment ·
-
bug needs grooming process-docs testing
Difficulty 4/5 3-5 days Newbie friendliness 48/100
DataTalksClub/dataops#225 · 1 comment ·
-
design enhancement frontend P1 portal testing
Difficulty 5/5 Over a week Newbie friendliness 25/100
DataTalksClub/dataops#219 · 13 comments ·
-
design enhancement frontend P1 portal testing
Difficulty 5/5 Over a week Newbie friendliness 15/100
DataTalksClub/dataops#221 · 17 comments ·
-
design docs enhancement frontend P1 portal testing
Difficulty 5/5 Over a week Newbie friendliness 18/100
DataTalksClub/dataops#220 · 25 comments ·
All issues in DataTalksClub/dataops
Similar issues
-
check:passed streams:add
Difficulty 2/5 1-3 hours Newbie friendliness 72/100
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
Fission-AI/OpenSpec#1986 ·
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
nestjs/docs.nestjs.com#3554 ·
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
publicodes/publicodes#868 ·
-
namespace operations
Difficulty 1/5 Under an hour Newbie friendliness 78/100
EclipseFdn/open-vsx.org#13488 ·
Maintainers usually reply within 2 days