

GitHub - cirocosta/cr: Runs your tasks at maximum concurrency
source link: https://github.com/cirocosta/cr
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

cr 
The concurrent runner
Overview
cr
is a job executor concerned with achieving the highest parallel execution possible.
Given a definition of jobs and their dependencies, it builds a graph that outlines the execution plan of these jobs.
For instance, consider the following plan:
Jobs:
- Id: 'SayFoo'
Run: 'echo foo'
- Id: 'SayBaz'
Run: 'echo baz'
DependsOn: [ 'SayFoo' ]
- Id: 'SayCaz'
Run: 'echo caz'
DependsOn: [ 'SayFoo' ]
This plan states that we have 3 jobs to be executed: SayFoo
, SayBaz
and SayCaz
but the last two jobs must only be executed after the first one and in case it succeeds.
To visualize the execution plan we can run it with --graph
, which validates the plan and prints out a dot digraph.
# Execute CR telling it where the execution
# plan is (execution.yaml) and that it should
# just print the graph and exit.
cr --file ./execution.yaml --graph
digraph {
compound = "true"
newrank = "true"
subgraph "root" {
"[root] SayFoo" -> "[root] SayBaz"
"[root] SayFoo" -> "[root] SayCaz"
"[root] _root" -> "[root] SayFoo"
}
}
# If we pipe this to `dot` and than take the output
# of `dot` we can see the visual representation of the
# digraph.
cr --file ./examples/hello-world.yaml --graph \
| dot -Tpng > ./assets/hello-world.graph.png
---
# Configurations that control the runtime environment.
# These are configurations that can be specified via
# the `cr` CLI (cli takes precedence).
Runtime:
LogDirectory: '/tmp' # base directory to use to store log files
Stdout: false # whether all logs should also go to stdout
Directory: './' # default directory to be used as CWD
# Map of environment variables to include in every job
# execution.
# This can be be overriden by job-specific environments
Env:
FOO: 'BAR'
# Jobs is a list of `Job` objects.
# Each job can have its properties templated
# using results of other jobs, even if they
# depend on the result of a job execution.
Jobs:
- Id: MyJob # name of the job being executed.
Run: 'echo test' # command to run
Directory: '/tmp' # directory to use as cwd in the execution
CaptureOutput: true # whether the output of the task should be stored in `.Output` variable
Env: # Variables to merge into the environment of the command
FOO: 'BAR'
DependsOn: # List of strings specifying jobs that should be executed before this
- 'AnotherJob' # job and that must exit succesfully.
LogFilepath: '/log' # Path to the file where the logs of this execution should be stored.
# By default they're stored under `/tmp/<NameOfTheJob>`.
Recommend
-
12
pizza-controller making kubernetes do what it was always meant to do: order pizza. https://gum.co/kubernetes-crds to get up to speed with custom resources and controll...
-
12
iWork 11 gives you maximum control of how your docs lookNews
-
7
How to Set Up Your Windows PC for Maximum Productivity By Lando Loic Published 1 day ago If you find yourself struggling to work on...
-
8
Getting the maximum of your C compiler, for security Introduction This guide is intended to help you determine which flags you should use to compile your C Code using GCC, Clang or MSVC, in order to: detect...
-
8
Optimizing Your Data Management Strategy for a Maximum ROI From Your Cloud Investment
-
5
The Best Digital Resources for When Your Pet Runs AwayFrom microchips to trackers, these tools can save you some heartache and help bring your fur babies back home.
-
3
Weekly RunsPlan your runs, week by week.The Weekly Runs app allows you to quickly create your running plan by cloning previous weeks and making distance adjustments. You can easil...
-
6
digital ethics When your voice runs away from home Cloning a voice can to...
-
4
ZipwireZipwire runs your staffing agencyFree OptionsZipwire makes it a snap to manage your contract and freelance workers. With AI and WhatsApp, i...
-
8
Abstract Azure App Service expanded its support to
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK