Spaces:
Running
Running
File size: 11,359 Bytes
b861f87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | # PHASE 7 β Data Freshness and Capacity
**Status:** Planning Β· **Created:** 2026-07-30
**Prerequisite for:** Phase 8 (reranker retrain), Phase 9 (exploration / CF)
Every figure below was measured against the live deployment on 2026-07-29/30,
not estimated. Where something is inferred rather than measured it says so.
---
## 1. The one-paragraph version
The corpus is a static Kaggle snapshot whose newest paper was published
**2025-05**. It is now **2026-07**. Live arXiv holds **290,672** papers in our
43 configured categories that we do not have β for cs.AI alone, arXiv has
published nearly half again as many papers in that window as our entire index
contains. Separately, **90.0%** of stored abstracts are truncated at 500
characters, and that truncated text is what the cross-encoder reranks on. No
amount of ranking work fixes either. This phase closes both.
The blocker is disk on the Qdrant free tier, and there is an unresolved
measurement discrepancy that must be settled before anything is deleted
(Β§4.2).
---
## 2. Measured current state
### 2.1 Corpus
| Property | Value |
|---|---|
| Papers (Turso, sidecar) | 1,597,097 |
| Qdrant points | 1,596,587 (510 fewer; 0.03%) |
| Qdrant indexed into HNSW | 1,595,264 (1,323 pending) |
| `update_date` range | 2007-05-23 β 2025-05-30 |
| Newest *publication* (from arXiv id) | 2025-05 |
| Zilliz sparse | LoadStateLoaded |
Field completeness is perfect: zero rows missing title, authors, categories or
date. 16.7% (265,928) have zero citations.
Store alignment is **not** a problem. A 400-id sample resolved 400/400 in
Qdrant. The 510-row gap needs no action.
### 2.2 Qdrant configuration
Binary quantization **is** enabled (`quantization_config.binary.always_ram =
true`). An earlier reading of `config.params.quantization_config` returned
null and was wrong β the setting lives at `config.quantization_config`.
```
vectors float16, 1024-dim, on_disk = true
hnsw m=32, ef_construct=128, on_disk = true
payload on_disk = true
segments 35, max_segment_size = 100,000
```
### 2.3 Per-point cost (measured, not estimated)
From segment telemetry: segment 0 holds 1,323 points with
`vectors_size_bytes = 2,709,504` and `payloads_size_bytes = 169,344`.
| Component | Bytes/point | Γ 1,596,587 |
|---|---|---|
| Vector (float16 Γ 1024) | 2,048 | 3.27 GB |
| Payload | 128 | 204 MB |
| Binary quantization | 128 | 204 MB |
| HNSW graph (mβ=64 Γ u32, inferred) | ~270 | ~431 MB |
| **Total** | **~2,574** | **β 4.1 GB** |
Only the graph row is inferred. `vectors_size_bytes` is a *logical* figure
(exactly `count Γ 1024 Γ 2`), and segment `disk_usage_bytes` reports 0, so
Qdrant does not expose true on-disk bytes through the collection API.
---
## 3. The gaps
### 3.1 Staleness β the primary product limit
Union queries against live arXiv, papers submitted 2025-06-01 β 2026-07-30:
| Scope | Unique papers |
|---|---|
| 8 core CS/ML categories | 170,668 |
| **All 43 configured categories** | **290,672** |
Summing categories individually gives 242,427 for the 8-category set β that
counts a paper once per tag. The overlap factor is 1.42Γ, so always use union
counts for capacity planning.
Per-category, since 2025-06:
| Category | New on arXiv | Entire corpus |
|---|---|---|
| cs.AI | 62,438 | 128,356 |
| cs.LG | 58,747 | 219,516 |
| cs.CV | 43,269 | 156,798 |
| cs.CL | 29,295 | 85,314 |
| quant-ph | 21,026 | 162,381 |
### 3.2 Abstract truncation
`abstract_preview` is capped at 500 chars and **1,437,656 rows (90.0%)** sit at
that cap. Sampling 200 live arXiv abstracts: mean **1,244** chars, median 1,221,
min 601 β every one exceeds the cap, so roughly **60% of each abstract is
discarded**.
Two consequences:
1. The cross-encoder β the stage whose entire purpose is precision β reranks on
roughly one or two sentences. Since `SEARCH_RERANK_TOP_N` is now 50, it does
this for 50 candidates per query.
2. The original embeddings were built from `abstract[:1024]`, i.e. **twice** the
text the reranker sees. The precision stage has strictly less information
than the retrieval stage it is supposed to refine.
### 3.3 Dependency risk found while validating
`requirements.txt` allowed `FlagEmbedding>=1.2.9` with
`transformers>=4.44,<5.0`. A fresh resolve picks FlagEmbedding 1.3.x and a
recent transformers, and BGE-M3 encoding dies inside `tokenizer.pad()` with
`AttributeError: 'list' object has no attribute 'keys'`.
This is silent in production: `main.py` catches the load error, logs "BGE-M3 not
loaded", and search degrades to the arXiv keyword API with nothing surfaced to
the user. Pinned to `1.2.10` + `4.44.2` (verified loading) in commit `4b88183`.
---
## 4. Capacity
### 4.1 What the ingest costs
At ~2,574 bytes/point:
| Scope | Papers | Qdrant disk | BQ RAM |
|---|---|---|---|
| All 43 categories | 290,672 | **+0.75 GB** | +37 MB |
| 8 core CS/ML | 170,668 | +0.44 GB | +22 MB |
Other stores: Turso ~465 MB and 290k row writes (free tier is 9 GB / 25M
writes/month β comfortable). Zilliz ~400β450 MB sparse, and its serverless
free-tier cap is **not verifiable through the API** β this is the least
characterised constraint.
### 4.2 Decision gate: the disk reading must be settled first
Two irreconcilable figures:
* This document's arithmetic: **β 4.1 GB** used, against a 4 GB free-tier disk.
* The Qdrant Cloud console, as reported: **400β500 MB**.
400β500 MB cannot be the on-disk total. Raw float16 vectors are not compressed,
so 1,596,587 Γ 2,048 bytes = 3.27 GB is a floor for the vector data alone. The
reported figure does, however, match `memory_resident_bytes = 529,870,848`
(530 MB) almost exactly, which suggests the panel is reporting **RAM, not
disk** β consistent with a 1 GB RAM tier at ~53% utilisation.
**Nothing may be deleted until this is resolved.** The two branches lead to
opposite actions:
| If the true disk usage is⦠| Then |
|---|---|
| ~500 MB (β3.5 GB free) | Ingest all 290,672. **Delete nothing.** |
| ~4.1 GB (β0 GB free) | Ingest cannot proceed as-is; see Β§5 |
How to resolve: in the Qdrant Cloud console, find the panel labelled *disk* or
*storage* rather than memory. Failing that, upsert 5,000 test points and observe
whether reported usage moves by ~13 MB (RAM) or ~13 MB of disk β then delete
them.
### 4.3 Eviction analysis β dropping pre-2010
Requested on 2026-07-30. Measured consequences:
| | |
|---|---|
| Papers removed | **180,197** (11.3% of corpus) |
| Disk freed | **0.46 GB** |
| Ingest still needs | 0.75 GB |
| **Net after both** | **+0.28 GB β still grows** |
| Of those removed, with >0 citations | 155,312 (**86%**) |
| Of those removed, with β₯100 citations | **17,776** |
Most affected categories:
```
quant-ph 35,763 hep-th 8,477
astro-ph 30,329 math-ph 8,178
cond-mat.stat-mech 10,639 math.MP 8,178
math.CO 9,525 math.PR 8,754
```
**Recommendation: do not do this.** Three reasons:
1. **It does not solve the problem.** 0.46 GB freed against 0.75 GB needed still
leaves +0.28 GB of growth. If disk is genuinely full, this buys a delay, not
a fix.
2. **The cost is high and irreversible.** 17,776 removed papers have 100+
citations. Restoring any of them means re-fetching and re-encoding on a GPU
we do not currently have working (Β§6.1).
3. **It lands on the wrong fields.** The damage concentrates in quant-ph,
astro-ph, hep-th and mathematics β disciplines whose literature ages slowly.
A 2008 hep-th paper is often still current in a way a 2008 cs.CV paper is
not. Our onboarding taxonomy offers all four as first-class choices, so those
users would lose the foundations of their fields while ML users lose nothing.
Cheaper alternatives, in preference order:
| Option | Frees / saves | Cost |
|---|---|---|
| Resolve Β§4.2 first; likely no action needed | up to 3.5 GB of headroom | none |
| Narrow ingest to 8 core CS/ML categories | needs 0.44 GB not 0.75 GB | no physics/maths freshness |
| Drop pre-2010 papers with **zero** citations only | 0.06 GB (24,885 papers) | negligible |
| Lower HNSW `m` 32 β 16 | ~215 MB | full re-index; small recall cost |
---
## 5. Plan
### Phase 7.0 β Resolve capacity (blocking, minutes)
Settle Β§4.2. Everything downstream branches on it.
### Phase 7.1 β Get a working GPU (blocking for ingest)
Kaggle assigned a **P100 (sm_60)**; its own `torch 2.10.0+cu128` dropped Pascal
support, so encoding aborts. `"accelerator": "nvidiaTeslaT4"` in
`kernel-metadata.json` is silently ignored β GPU *type* is not settable via the
API. Requires switching the notebook to **GPU T4 x2** in the Kaggle UI.
Why it matters: the arXiv rate limit (~3.5s per 200 papers) floors the job at
~85 minutes. On T4 encoding hides inside that window. On CPU it is ~13.5 hours,
over Kaggle's 12-hour session cap.
### Phase 7.2 β Ingest (scope set by 7.0)
`scripts/ingest_arxiv.py`, checkpointed per batch and idempotent. Run in slices,
checking collection status between them. Validated already: arXiv fetch, parse,
pagination, `totalResults`, and the Qdrant id-collision guard (highest live id
1,596,586 β new points continue above it).
### Phase 7.3 β Abstract backfill
New rows arrive with full abstracts automatically. The existing 1,437,656
truncated rows need re-fetching: ~7,200 requests at the arXiv rate limit β **7
hours**, no GPU required. Turso and the sidecar only; vectors untouched.
### Phase 7.4 β Sidecar rebuild
`scripts/build_metadata_sidecar.py`, then re-upload to
`siddhm11/researchit-metadata`. Not urgent: `local_meta` falls back to Turso on
a miss, so newly ingested papers work immediately without it.
### Phase 7.5 β Re-embed on full abstracts (optional, later)
Only worth doing once 7.3 lands. Would improve retrieval but requires
re-encoding 1.6M papers and doubles peak Qdrant disk during the swap. Defer.
---
## 6. Risks
| Risk | Mitigation |
|---|---|
| Disk exhaustion mid-ingest | Run in slices; script is checkpointed and idempotent, so a failed write loses nothing |
| Zilliz free-tier cap unknown | Watch after the first slice; it is the least characterised store |
| Segment merges spike disk transiently | `max_segment_size=100,000` β ~3 new segments; merges write before dropping, so peak exceeds steady state |
| New vectors inconsistent with old | Embedding text and `max_length` match the original ingest exactly; verified in `ingest_backends.py` |
| Point-id collision overwriting papers | Upserter binary-searches for the highest live id and continues above it |
| Rollback | New points occupy a contiguous id range above 1,596,586 and are deletable by `arxiv_id`; no existing point is modified |
---
## 7. Open questions
1. **True Qdrant disk usage** (Β§4.2) β blocks everything.
2. **Zilliz free-tier storage cap** β not queryable via API.
3. **Ingest cadence after backfill** β GitHub Actions (a keepalive cron already
exists) or HF Jobs. ~500 papers/day steady state.
4. **Citation counts for new papers** β ingested as 0. Both the reranker and the
citation boost lean on this, so new papers are systematically disadvantaged
until a Semantic Scholar enrichment pass runs. `S2_API_KEY` already exists
for offline scripts.
|