Skip to main content

Awakeables

Awakeables pause an invocation while waiting for another process to complete a task. You can use this pattern to let a handler execute a task somewhere else and retrieve the result. This pattern is also known as the callback (task token) pattern.

my_handler.ts

const awakeable = ctx.awakeable<string>();
const awakeableId = awakeable.id
await ctx.run(() => triggerTaskAndDeliverId(awakeableId));
const payload = await awakeable.promise;

  1. The handler creates an awakeable. This contains a String identifier and a Promise/Awaitable.
  2. The handler triggers a task/process and attaches the awakeable ID (e.g. over Kafka, via HTTP,...). For example, send an HTTP request to a service that executes the task, and attach the ID to the payload. You use ctx.run to avoid retriggering the task this on retries.
  3. The handler waits until the other process has executed the task.
  1. The external process completes the awakeable when the task is finished by:

    resolve_curl.sh
    reject_curl.sh
    external_process_resolve.ts
    external_proces_reject.ts

    curl localhost:8080/restate/awakeables/prom_1PePOqp/resolve -H 'content-type: application/json'
    -d '{"hello": "world"}'

    • Resolving the awakeable
      • Over HTTP with its ID and an optional payload
      • Via the SDK with its ID and an optional payload
    • Rejecting the awakeable. This throws a terminal error in the waiting handler.
      • Over HTTP with its ID and a failure reason
      • Via the SDK with its ID and a failure reason
  1. The handler receives the payload and resumes.
Payload serialization

You can return any payload that can be serialized as a Buffer with Buffer.from(JSON.stringify(yourObject)) and deserialized with JSON.parse(result.toString()) as T.

Cost savings on FaaS

When running on Function-as-a-Service platforms, such as AWS Lambda, Restate suspends the handler while waiting for the awakeable to be completed. Since you only pay for the time that the handler is actually running, your don't pay while waiting for the external process to return.

Awaiting awakeables in Virtual Objects

Virtual Objects only process a single invocation at a time, so the Virtual Object will be blocked while waiting on the awakeable to be resolved.