`createQuery`/`createQueries`: a `queryFn` that reads reactive state before its first `await` causes an infinite observer teardown/refetch loop
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Idoneità per principianti
- 78/100
- Tipo di issue
- Bug
- Chiarezza
- Specificata chiaramente
- Stato di attività
- Attiva
- Stack tecnologico
- typescript
- Ambito
- frontend, testing-qa
Direzione di ricerca
Inizia da packages/svelte-query/tests/createQuery/createQuery.svelte.test.ts e aggiungi o esegui il test di regressione fornito per createQuery. Leggi l’effetto di sottoscrizione di createBaseQuery e preserva la lettura tracciata dell’observer, impedendo al contempo il tracking reattivo di observer.subscribe. Il lavoro è completato quando si verifica un fetch, lo stato è riuscito, i dati vengono acquisiti e tutti i 217 test passano.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Describe the bug
A queryFn that reads any reactive state ($state) synchronously — before its first await — silently adds that state to the dependencies of the internal subscription $effect in createQuery/createQueries. Every subsequent write to that state re-runs the effect: the observer is torn down (cancelling any in-flight fetch) and re-subscribed. If the fetch takes longer than the interval between writes, the query never receives data, and since it stays dataless every re-subscription starts a new fetch via shouldFetchOnMount — an unbounded fetch loop.
The root cause: the subscription effect calls observer.subscribe(...). For a query without data, query-core executes queryFn synchronously inside that call (onSubscribe → shouldFetchOnMount → #executeFetch → Query.fetch → retryer → queryFn), i.e. inside the effect's tracking scope. Reactive reads performed in that window (everything before the queryFn's first await) are recorded as dependencies of the effect.
The full loop requires all of the following, each of which is ordinary app code:
- the
queryFnreads reactive state before its firstawait(auth-token store, config store, health store, …); - that state is written while a fetch is in flight (e.g. the fetch's own error/backoff handling marks the store). The resulting teardown cancels the in-flight fetch — this needs the
queryFnto consumectx.signal, which real transports do:Query.removeObserveronly performs a real cancel whenabortSignalConsumed, otherwise the fetch is allowed to finish and the loop self-heals; - the fetch is slower than the write cadence.
Context / impact
This affects createQuery, createInfiniteQuery (both via createBaseQuery) and createQueries. We hit this in a production app: a queryFn reading coordinator health stores before a signed RPC (~300 ms) drove a sustained loop of ~3.2 cancelled-and-retried signed requests per second, indefinitely — each cancellation having already burned the expensive work. Workaround for apps: wrap reactive reads inside queryFn in untrack() — but since the library executes queryFn inside its own effect, the library should shield that execution.
Your minimal, reproducible example
ts
Steps to reproduce
Self-contained regression test (also included in the companion PR), run against @tanstack/svelte-query@6.2.1 + svelte@5.57.0:
it(
'should not re-subscribe when queryFn reads reactive state before its first await',
withEffectRoot(async () => {
const key = queryKey()
const tick = ref(0)
const fetches: Array<number> = []
const query = createQuery<number, Error>(
() => ({
queryKey: key,
queryFn: async (ctx) => {
void ctx.signal // consume the abort signal, like real transports do
const startedAt = tick.value // reactive read before the first await
fetches.push(startedAt)
await sleep(150)
tick.value = startedAt + 1 // write mid-flight (e.g. a health mark)
await sleep(150)
return startedAt
},
}),
() => queryClient,
)
await vi.advanceTimersByTimeAsync(1000)
expect(fetches.length).toBe(1)
expect(query.data).toBe(0)
expect(query.status).toBe('success')
}),
)
Steps to reproduce
- Add the test above to
packages/svelte-query/tests/createQuery/createQuery.svelte.test.tsonmainand runpnpm test:lib. - Observed on current
main:fetches.lengthis 7 (and keeps growing with more simulated time),query.statusstayspending, data never lands.
Expected behavior
Exactly one fetch; the write to tick must not re-run the internal subscription effect — the queryFn's reactive reads should not become dependencies of the library's effect.
Suggested fix
Keep the observer read tracked, but run the subscription itself untracked:
$effect(() => {
const o = observer
const unsubscribe = isRestoring.current
? () => undefined
: untrack(() => o.subscribe(() => update(createResult())))
return unsubscribe
})
One subtlety worth noting: the naive untrack(() => observer.subscribe(...)) is wrong — it also untracks the observer read, so changing queries would no longer re-subscribe. The existing test "should track queries added to an initially empty array" catches this, which is why the const o = observer read must stay outside the untrack. With the corrected fix, all 217 tests pass (215 existing + the 2 regression tests from the PR).
Expected behavior
The internal subscription effect must not gain dependencies from the queryFn's execution. Reading reactive state inside a queryFn (before its first await) is ordinary usage and should not re-run the subscription effect — so a write to that state must not tear the observer down or cancel the in-flight fetch. The regression test above should observe exactly one queryFn invocation, query.status === 'success', and the fetched data landing.
How often does this bug happen?
Every time
Screenshots or Videos
No response
Platform
jsdom via vitest, and Chromium (real app)
Tanstack Query adapter
None
TanStack Query version
6.2.1 (latest at time of writing; also verified on 6.1.33)
TypeScript version
6.0.3
Additional context
No response
- Lingua principale
- TypeScript
- Stelle
- 50.3k
- Fork
- 4.2k
- Merge medio
- 21h 46m
- PR unite (30g)
- 205
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di TanStack/query
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 48/100
-
Difficoltà 5/5 Più di una settimana Idoneità per principianti 35/100
-
Difficoltà 3/5 1-2 giorni Idoneità per principianti 72/100
Tutte le issue di TanStack/query
Issue simili
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 65/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
bug v2
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
modelcontextprotocol/inspector#2458 · 1 commento ·
-
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 75/100
railmapgen/rmp-gallery#4068 ·
-
Mend: dependency security vulnerability status: needs triage 🕵️♀️
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
carbon-design-system/ibm-products#9907 ·