Hi,
I've come across Dapr while searching for a ApiGateway-like solution where I can define some resiliency features such as circuit breaker, timeout, retry etc.
We have a system where we define and update timeout durations and retry configs for specific services. Is it possible to retrieve that data somehow and feed Dappr with this? For example, looking at https://docs.dapr.io/operations/resiliency/policies/#timeouts:
spec:
policies:
# Timeouts are simple named durations.
timeouts:
general: 5s
important: 60s
largeResponse: 10s
Is there a way to update largeResponse value to something else on runtime by an API call, or define that as a variable so I can populate that variable time to time?
Thank you,
Gokcen