Temporal Context Propagators

Passing Context with Temporal
Why do we need Context? Within a program, context is a mechanism to pass some data without a strict definition or needing to tie it to a piece of code. In addition, context is usually passed to the explicit attributes as the first attribute. Usually, context is constructed as a key/value store, where the key […]

Temporal Workflow and Microservices
This post explains what is Temporal, how its Temporal workflow model works in Go, and how to use Temporal to make microservices reliable through retries, backpressure, and durable state. You’ll see a real example of Temporal + Golang, learn how to start function execution from beginning in Golang safely, and understand what does Temporal do […]