[BUG] Configuration subscription stops permanently after the daprd sidecar restarts
I maintainer di solito rispondono entro 1 giorno
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Idoneità per principianti
- 68/100
Direzione di ricerca
Start in dapr/clients/grpc/_response.py with ConfigurationWatcher, then trace subscribe_configuration() in both dapr.clients.DaprClient and dapr.aio.clients.DaprClient. Reproduce the stream failure by restarting daprd, and verify that both subscription paths recover and deliver later updates without restarting the application.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Expected Behavior
DaprClient.subscribe_configuration() keeps delivering configuration updates for the lifetime of the client.
If the daprd sidecar process exits and comes back (for example an OOM kill of the sidecar container while the application container keeps running), the SDK should re-establish SubscribeConfigurationAlpha1 against the new sidecar and continue calling the handler. Updates that happened while the sidecar was down should be visible on the new subscription, or the application should at least be able to observe that the previous stream ended.
Unary calls such as get_configuration() already work again once the new sidecar is listening. The long-lived configuration subscription should recover the same way.
Actual Behavior
The subscription works after a fresh application start. After daprd restarts, the handler is never called again. The application process stays healthy, so a Kubernetes pod is not recreated, and dynamic config updates are silently lost until the application process itself restarts.
ConfigurationWatcher in dapr/clients/grpc/_response.py reads SubscribeConfigurationAlpha1 on a daemon thread. When the stream raises, the thread prints to stdout and returns:
except Exception:
print(f'{self.store_name} configuration watcher for keys {self.keys} stopped.')
pass
There is no retry. subscribe_configuration() does not retain the ConfigurationWatcher, so nothing is left to start a new stream. The failure is not reported through the Python logger, and the returned subscription id belongs to the dead sidecar.
Seen with dapr Python SDK 1.18.3. Both dapr.clients.DaprClient.subscribe_configuration and dapr.aio.clients.DaprClient.subscribe_configuration use this watcher.
Steps to Reproduce the Problem
- Run an app with a
configuration.rediscomponent and the Python SDK 1.18.3. - Subscribe once at startup:
from dapr.clients import DaprClient
def handler(subscription_id, response):
print("update", subscription_id, {k: v.value for k, v in response.items.items()})
with DaprClient() as client:
subscription_id = client.subscribe_configuration(
store_name="configstore",
keys=["my-key"],
handler=handler,
)
print("subscribed", subscription_id)
# keep the process alive
- Confirm a config change invokes
handler. - Restart only daprd. In Kubernetes this is a sidecar OOM (
OOMKilled) while the app container keeps the same process. Locally, stop and start thedaprdprocess without restarting the app. - Change
my-keyagain after daprd is healthy.
handleris not called. Stdout may contain{store} configuration watcher for keys [...] stopped.Recreating the app process makes updates work again until the next sidecar restart.
Release Note
RELEASE NOTE: FIX Reconnect configuration subscriptions after the Dapr sidecar stream drops.
- Lingua principale
- Python
- Stelle
- 272
- Fork
- 152
- Merge medio
- 2g 22h
- PR unite (30g)
- 7
Preparare l'ambiente
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 dapr/python-sdk
-
dapr-ext-workflow good first issue kind/enhancement P2
Difficoltà 2/5 1-2 giorni Idoneità per principianti 72/100
dapr/python-sdk#853 · 4 commenti ·
I maintainer di solito rispondono entro 1 giorno
-
kind/bug
Difficoltà 4/5 3-5 giorni Idoneità per principianti 65/100
dapr/python-sdk#1233 ·
I maintainer di solito rispondono entro 1 giorno
-
kind/bug
Difficoltà 4/5 3-5 giorni Idoneità per principianti 45/100
dapr/python-sdk#1230 ·
I maintainer di solito rispondono entro 1 giorno
-
dapr-ext-workflow kind/enhancement
Difficoltà 3/5 1-2 giorni Idoneità per principianti 78/100
dapr/python-sdk#1213 ·
I maintainer di solito rispondono entro 1 giorno
-
Difficoltà 3/5 1-2 giorni Idoneità per principianti 76/100
dapr/python-sdk#1200 ·
I maintainer di solito rispondono entro 1 giorno
Tutte le issue di dapr/python-sdk
Issue simili
-
correction metadata
Difficoltà 2/5 1-3 ore Idoneità per principianti 68/100
acl-org/acl-anthology#10104 · 1 commento ·
I maintainer di solito rispondono entro 1 giorno
-
bug status/needs-triage
Difficoltà 2/5 1-3 ore Idoneità per principianti 86/100
prowler-cloud/prowler#12885 · 1 commento ·
I maintainer di solito rispondono entro 1 giorno
-
Bug in GaussianTailProbabilityCalibrator: running_statistics=False still uses a windowed varianceApertabug good first issue
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100
selimfirat/pysad#107 ·
I maintainer di solito rispondono entro 1 giorno
-
bug ci-failure high priority
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 88/100
vllm-project/vllm-omni#8194 · 1 commento ·
I maintainer di solito rispondono entro 1 giorno
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100
I maintainer di solito rispondono entro 1 giorno