Temporal Overview Temporal is a durable execution platform for building reliable distributed systems. Workflows survive crashes, retries are automatic, and long-running processes (days, months) just work. Used by Netflix, Snap, and Stripe for mission-critical workflows. Instructions Step 1: Setup Step 2: Define Workflow Step 3: Define Activities Step 4: Start Workflow Guidelines - Temporal guarantees exactly-once execution of workflow steps — even through crashes and deployments. - Use for anything that spans multiple services or takes more than a few seconds. - Activities are the only way to…