---
title: "Timers, Timeouts, and the Art of Waiting in Temporal"
url: https://daily.dev/posts/timers-timeouts-and-the-art-of-waiting-in-temporal-mbkyfy7m3
source_url: https://temporal.io/blog/timers-timeouts-and-the-art-of-waiting-in-temporal
type: article
source: "Temporal"
published: 2026-08-06T10:37:27.797Z
updated: 2026-08-06T10:41:00.864Z
tags: ["distributed-systems", "workflow-orchestration"]
reading_time: 16
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Timers, Timeouts, and the Art of Waiting in Temporal

**[Temporal](https://daily.dev/sources/temporal)** · 16 min read · 0 upvotes · 0 comments

## Summary

Timers and timeouts in Temporal serve fundamentally different purposes: timers implement business logic (wait, then act), while timeouts detect failures. The post walks through Temporal's four Activity timeout types — Start-To-Close, Schedule-To-Close, Schedule-To-Start, and Heartbeat — explaining when and why to use each. It warns against using Workflow-level timeouts for business logic, since they terminate Workflows server-side with no chance for cleanup code to run. Key practical advice includes always setting Start-To-Close or Schedule-To-Close on Activities, using heartbeating for long-running Activities to avoid zombie Workers, and replacing Workflow timeouts with in-Workflow timers whenever the application needs to react to a time limit. A decision cheat sheet maps common scenarios to the correct tool.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://temporal.io/blog/timers-timeouts-and-the-art-of-waiting-in-temporal>

## Similar posts on daily.dev

- [Timeouts and Deadlines in Distributed Systems](https://daily.dev/posts/timeouts-and-deadlines-in-distributed-systems-nhzdf0eiq) · gitconnected · 0 upvotes · 0 comments

---

Tags: [#distributed-systems](https://daily.dev/tags/distributed-systems), [#workflow-orchestration](https://daily.dev/tags/workflow-orchestration)

[View this post on daily.dev](https://daily.dev/posts/timers-timeouts-and-the-art-of-waiting-in-temporal-mbkyfy7m3)
