Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

skillz-blockchain/cadence-poc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cadence-poc


Architecture

Everything runs via docker-compose, using the template given by Uber. We expose 3 extra services:

  • The API, a dummy API used as an exemple to trigger workflows

  • The Preparer, a Cadence Worker which runs a workflow invoked by the API.

    • In theory, this workflow simply checks the data from the API is correct, upload it to vault & set a status in DB for the cronjob
  • The CronJob, another Cadence Worker which runs a workflow as a cronjob.

    • This workflow picks up the keys prepared by the preparer and create a PR on GitHub to deploy the validators
    • In theory, it is essentially the gitops manager
  • The cmd directory

    • Stores the mains of the 3 services
  • The cadence directory

    • Provides a wrapper around Cadence to easily build clients and workers
    • Exposes our workflows & their activities
      • Each workflow has its subdirectory with its function and activities
  • The api directory

    • Exposes the dummy API used to call the workflows

How To Run ?

docker-compose up --build should be sufficient


TODOs


Links


Use Cases (-> do we have a use case for it?)

In summary, Cadence fills a lot of use case and could help us scale up; however, at the moment it is simply too big / complex to be worth it.


  • activities: basic unit of work
    • User defined
    • State not recovered in case of failures (shouldn't matter as they should be atomic)
    • Invoked asynchronously through a task list (queue)
  • workflow: can execute activities
    • User defined
    • Controls activity exec options (timeout, retry policy, ..., see cadence/workflow.ActivityOptions)
    • Can react to events
    • Can return its internal state through queries
    • The state of the workflow code, including local variables and threads it creates, is immune to process and Cadence service failures.
    • It encapsulates state, processing threads, durable timers and event handlers.
    • How does it work internally ?
  • worker: service which hosts a workflow & activities
    • User defined
    • Polls Cadence service for tasks
    • Perform them
    • Report back

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published