Skip to content

Latest commit

 

History

History
120 lines (93 loc) · 7.23 KB

File metadata and controls

120 lines (93 loc) · 7.23 KB

Core SDK Architecture

If you're newer to SDKs in general, first check out the SDKs Intro!

High-level description

The below diagram depicts how Core-based SDKs are split into two parts. The sdk-core common code, which is written in Rust, and a sdk-lang package specific to the language the user is writing their workflow/activity in. For example a user writing workflows in Rust would be pulling in (at least) two crates - temporal-sdk-core and temporal-sdk-rust.

Arch Diagram

Core communicates with the Temporal service in the same way that existing SDKs today do, via gRPC. It's responsible for polling for tasks (Workflow, Activity, and Nexus), processing those tasks and updating internal state as necessary, and then delivering them to the lang-layer which is polling for them (and handling the responses).

The sdk-lang side communicates with sdk-core via C bindings. Many languages already have nice support for calling into Rust code - generally speaking these implementations are using C bindings under the hood. For example, we use neon to support the TS/JS SDK, and we use PyO3 for Python. Languages using libraries like that layer another crate on top of core which brings in these language-specific helpers to expose core to that language in an ergonomic manner.

Other SDKs (ex: .NET) directly use C bindings available in this repo at core-c-bridge.

Glossary of terms

There are many concepts involved in the chain of communication from server->core->lang that all roughly mean "Do something". Unfortunately this leads to quite a lot of overloaded terminology in the code. This list should help to disambiguate:

  • HistoryEvent (often referred to simply as an Event): These events come from the server and represent the history of the workflow. They are defined in the protobuf definitions for the Temporal service itself.
  • Command: These are the commands defined in the temporal service protobufs that are returned by workers upon completing a WorkflowTask. For example, starting a timer or an activity.
  • WorkflowTask: These are how the server represents the need to run user workflow code, and the results of that execution. See the HistoryEvent proto definition for more.
  • WorkflowActivation: These are produced by the Core SDK when the lang sdk needs to "activate" the user's workflow code, either running it from the beginning or resuming a cached workflow.
  • WorkflowActivationJob (shorthand: Jobs): These are included in WorkflowActivations and represent the actual things that have happened since the last time the workflow was activated (if ever). EX: Firing a timer, proceeding with the result of an activity, etc. They are typically derived from HistoryEvents, but also include things like evicting a run from the cache.
  • WorkflowActivationCompletion: Provided by the lang side when completing an activation. The ( successful) completion contains one or more WorkflowCommands, which are often translated into Commands as defined in the Temporal service protobufs, but also include things like query responses.

Additional clarifications that are internal to Core:

  • StateMachines also handle events and produce commands, which often map directly to the above HistoryEvents and Commands, but are distinct types. The state machine library is Temporal agnostic - but all interactions with the machines pass through a TemporalStateMachine trait, which accepts HistoryEvents, and produces MachineResponses.
  • MachineResponse: These allow the state machines to trigger things to happen to the workflow. Including pushing new Activation Jobs, or otherwise advancing workflow state.

Core SDK Responsibilities

  • Communication with Temporal service using a generated gRPC client, which is wrapped with somewhat more ergonomic traits.
  • Provide interface for language-specific SDK to drive event loop and handle returned commands. The lang sdk will continuously call/poll the core SDK to receive new tasks, which either represent workflows being started or awoken (WorkflowActivation), activities to execute (ActivityTask), or Nexus Operations to invoke (NexusTask). It will then call its workflow/activity/nexus functions with the provided information as appropriate, and will then push completed tasks back into the core SDK.
  • Advance state machines and report back to the temporal server as appropriate when handling events and commands

Language Specific SDK Responsibilities

  • Periodically poll Core SDK for tasks
  • Call workflow, activity, and nexus functions as appropriate, using information in events it received from Core SDK
  • Return results of workflows/activities/nexus ops to Core SDK
  • Manage concurrency using language appropriate primitives. For example, it is up to the language side to decide how frequently to poll, and whether or not to execute worklows and activities in separate threads or coroutines, etc.

Example Sequence Diagrams

Here we consider what the sequence of API calls would look like for a simple workflow executing a happy path. The hello-world workflow & activity in Python is below.

@workflow.defn
class SayHello:
  @workflow.run
  async def run(self, name: str) -> str:
    return await workflow.execute_activity(
      say_hello, name, schedule_to_close_timeout=timedelta(seconds=5)
    )


@activity.defn
async def say_hello(name: str) -> str:
    return f"Hello, {name}!"

API Definition

We define the interface between the core and lang SDKs (mostly) in terms of gRPC service definitions. The actual implementations of this "service" are not generated by gRPC generators, but the messages themselves are, and make it easier to hit the ground running in new languages.

See the latest API definition here

Other topics