Skip to content

Commit

Permalink
docs(engine): Add short section on stores
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Mar 4, 2024
1 parent c6d3ca1 commit 74b845e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tracecat/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
- An action is a node in the graph.
- A run is an instance of an action.
Stores
------
- We need to store the state of the workflow run.
- The current implementation uses in-memory kv stores to manage execution state.
- We can use distributed kv stores / databases to manage state across multiple runners to scale the backend.
- Note that ActionRuns need to be identified across workflow runs - we use a combination of the workflow id and the action id to do this.
"""

from __future__ import annotations
Expand Down

0 comments on commit 74b845e

Please sign in to comment.