You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I’m using .NET 6 and Orleans 3.7.2 with KubernetesHosting: silo.ConfigureServices(services => services.UseKubernetesHosting());
We need to run a periodic single-silo task every 2 seconds. Since Orleans reminders have a minimum interval of 1 minute, we're simulating this with a long-running 1-year reminder and a while (shutdownCtk.IsCancelled == false) { doWork; sleep 2 seconds; } loop.
This approach works well after the initial deployment of the cluster. However, if Kubernetes evicts the pod running this reminder, the task doesn't resume on another pod until we manually restart one of the silos.
What might be causing this issue?
The text was updated successfully, but these errors were encountered:
It's hard to say what's causing this issue without code or logs - are you able to provide more details on your implementation? I assume "sleep 2 seconds" is a Task.Delay call?
Hi, I’m using .NET 6 and Orleans 3.7.2 with KubernetesHosting:
silo.ConfigureServices(services => services.UseKubernetesHosting());
We need to run a periodic single-silo task every 2 seconds. Since Orleans reminders have a minimum interval of 1 minute, we're simulating this with a long-running 1-year reminder and a while (shutdownCtk.IsCancelled == false) { doWork; sleep 2 seconds; } loop.
This approach works well after the initial deployment of the cluster. However, if Kubernetes evicts the pod running this reminder, the task doesn't resume on another pod until we manually restart one of the silos.
What might be causing this issue?
The text was updated successfully, but these errors were encountered: