Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow Engine to Democratise Capabilities #8

Open
agardnerIT opened this issue Jul 31, 2021 · 1 comment
Open

Workflow Engine to Democratise Capabilities #8

agardnerIT opened this issue Jul 31, 2021 · 1 comment
Assignees

Comments

@agardnerIT
Copy link

agardnerIT commented Jul 31, 2021

Summary

Long read below so:

  1. The workflow engine described exists, is open source and ready now
  2. Hosting the control plane can be done from a single node kubernetes cluster (k3d, kind or minikube is fine) or use a commercial control plane hosting provider
  3. All that's required here is to start modelling workflows

image

Background

Ability to provide access to toolings and workflows to as many people as possible. These tools and capabilities must be "consumable" as easily as possible to ensure widespread use and adoption.

Problem Statements

  1. Installing and using tools often requires advanced technical knowledge and thus is not suitable for widespread adoption
  2. Tooling and "providers" (the how) can change often whereas the processes (or aims) rarely change.

Example of 1: Ability to use the instagram-location-search capability first requires that you know what Python is. Second, that you can install it, third that you are savvy enough to open dev tools and find your session ID. All of this adds an unneccessarily high barrier to entry.

Example of 2: Perform a phone number lookup (the aim or "what") will remain fairly static over time (the tooling or "how") is subject to potentially frequent change. If, tomorrow, I want to lookup a number not from instagram but from another provider, I need to write an entirely new program.

Solution

  1. Provision a workflow engine in front of these capabilities with an easy to understand, standardised and open source eventing mechanism.
  2. Provide the concept of sequences which can consist of one or more tasks. Optionally provide the ability to link sequences together in larger workflows.
  3. Provide a standardised "control plane" that a user (or app) can interact with to trigger sequences and workflows.
  4. Provide flexibility in where and how the "tooling" runs (alongside the control plane or remotely, in containers or "standard" processes).
  5. Ablility to write tooling in any language - the consumer shouldn't know or care about implementation
  6. Provide flexibility to adjust tooling without altering overall capability (eg. swap Instagram for Tool X without impacting a user)

Simple Sequence (Single Task)

Using the above example of a phone number lookup, we could model it like this (stages modelling the available environments - in this case, the development environment):

spec:
  stages:
    - name: dev
      sequences:
        - name: sequence-one
          tasks:
          - name: checknumber

If someone wants to check a phone number:

  1. They HTTP POST a dev.sequence-one.triggered event
  2. The workflow engine knows that it must now trigger a task called checknumber so the workflow engine triggers a checknumber.triggered event
  3. The "Phone number checker" service listens for checknumber.triggered events and knows that it must start working
  4. The "Phone number checker" service informs the engine that it has started by sending a checknumber.started event
  5. Optionally during execution, the "phone number checker" can send updates with the checknumber.status.changed event
  6. The "Phone number checker" has interacted with the Instagram APIs and done it's work. It sends a checknumber.finished event along with any result back as an event.
  7. The workflow engine knows that the checknumber task is done and that it is the only task in the sequence, therefore the sequence is done.
  8. The final result is returned to the user (or web app)

image

image

Complex Sequence (Multiple Tasks)

Take a more complex sequence which consists of multiple tasks. This one may model a process to judge a photo's authenticity:

spec:
  stages:
    - name: dev
      sequences:
        - name: sequence-two
          tasks:
          - name: extract-metadata
          - name: geolookup
          - name: author-search
          - name: evaluate

image

In this sequence, the engine won't start the geolookup task before it receives a .finished event from the extract-metadata task. The final task assumes that we have some metrics (perhaps from the previous steps) which we can use to judge the authenticity of an image. The evaluate task takes, as input, a set of metrics, their corresponding thresholds and ultimately produces a decision pass, warning or fail and a score which indicates the authenticity.

This evaluate logic is already available out-of-the-box with the engine so no additional implementation is required here. Just tell the engine:

  1. What are the metrics?
  2. Where are the metrics to be retrieved from?
  3. What are the thresholds?

The engine will do the evaluation and produce the report.

As I say, the engine and all eventing logic is ready. Reach out if you want to trial some sequence and task definitions.

@agardnerIT
Copy link
Author

@loganwilliams @osintalex any thoughts on this?

@GalenReich GalenReich self-assigned this Mar 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants