-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18f7602
commit a81257d
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# Throubleshooting | ||
|
||
This page describes some known throubleshooting scenarios when operating Restate. | ||
|
||
## Sleep/Delayed call and other Timers operations are triggered too early/too late | ||
|
||
Make sure the system clock of the runtime is synchronized with the clock of the service endpoint and they use the same time zone. | ||
|
||
When you do timer-based actions with the SDK (e.g. sleep, delayed calls), their execution time gets calculated based on the system clock of the service endpoint. But subsequently, the runtime registers these timer on its own system clock. So if these two clocks are out-of-sync, you get unwanted behavior. |