[BUG] Configuration subscription stops permanently after the daprd sidecar restarts
Los mantenedores suelen responder en 1 día
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Aptitud para principiantes
- 68/100
Línea de trabajo
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.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
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.
- Lenguaje dominante
- Python
- Estrellas
- 272
- Forks
- 152
- Merge medio
- 2 d 22 h
- PR fusionados (30 d)
- 7
Preparar el entorno
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de dapr/python-sdk
-
dapr-ext-workflow good first issue kind/enhancement P2
Dificultad 2/5 1-2 días Aptitud para principiantes 72/100
dapr/python-sdk#853 · 4 comentarios ·
Los mantenedores suelen responder en 1 día
-
kind/bug
Dificultad 4/5 3-5 días Aptitud para principiantes 65/100
dapr/python-sdk#1233 ·
Los mantenedores suelen responder en 1 día
-
kind/bug
Dificultad 4/5 3-5 días Aptitud para principiantes 45/100
dapr/python-sdk#1230 ·
Los mantenedores suelen responder en 1 día
-
dapr-ext-workflow kind/enhancement
Dificultad 3/5 1-2 días Aptitud para principiantes 78/100
dapr/python-sdk#1213 ·
Los mantenedores suelen responder en 1 día
-
Dificultad 3/5 1-2 días Aptitud para principiantes 76/100
dapr/python-sdk#1200 ·
Los mantenedores suelen responder en 1 día
Todos los issues de dapr/python-sdk
Issues similares
-
needs triage
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
Los mantenedores suelen responder en 2 días
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 82/100
openvinotoolkit/openvino_notebooks#3665 ·
Los mantenedores suelen responder en 1 día
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 86/100
Los mantenedores suelen responder en 1 día
-
docs
Dificultad 2/5 1-3 horas Aptitud para principiantes 88/100
Los mantenedores suelen responder en 1 día
-
benchmark-gap
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
Los mantenedores suelen responder en 1 día