Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grk2450-fireworks-tutorial
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ivan Kondov
grk2450-fireworks-tutorial
Commits
c248c9e0
Commit
c248c9e0
authored
5 years ago
by
Ivan Kondov
Browse files
Options
Downloads
Patches
Plain Diff
fixed grammar and made more precise
parent
65e4cdd2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/basics.rst
+39
-34
39 additions, 34 deletions
docs/basics.rst
with
39 additions
and
34 deletions
docs/basics.rst
+
39
−
34
View file @
c248c9e0
...
...
@@ -41,36 +41,36 @@ specified. Further attributes are ``metadata`` and ``name``.
Every Firetask includes the Firetask name ``_fw_name`` and definitions of its
parameters. Firetask is *atomic* i.e. executed at once without further
subdivisions. The Firetasks of one Firework are executed strictly one after
another in the order of their specification. The Firetasks of one Firework
and
share
the same job working directory, that is called launch directory (launchdir)
and the files in it
.
another in the order of their specification. The Firetasks of one Firework
share
the same job working directory, that is called launch directory (launchdir)
. The
files in the launchdir can be reused by subsequent FireTasks
.
Here is a short example for a workflow demonstrating the usage of the
``PyTask``::
fws:
- fw_id: 1
name: Grind coffee
spec:
_tasks:
- _fw_name: PyTask
func: auxiliary.print_func
inputs: [coffee beans]
outputs: [coffee powder]
coffee beans: best selection
- fw_id: 2
name: Brew coffee
spec:
_tasks:
- _fw_name: PyTask
func: auxiliary.print_func
inputs: [coffee powder, water]
outputs: [pure coffee]
water: workflowing water
links:
'1': [2]
metadata: {}
name: Simple coffee workflow
fws:
- fw_id: 1
name: Grind coffee
spec:
_tasks:
- _fw_name: PyTask
func: auxiliary.print_func
inputs: [coffee beans]
outputs: [coffee powder]
coffee beans: best selection
- fw_id: 2
name: Brew coffee
spec:
_tasks:
- _fw_name: PyTask
func: auxiliary.print_func
inputs: [coffee powder, water]
outputs: [pure coffee]
water: workflowing water
links:
'1': [2]
metadata: {}
name: Simple coffee workflow
Open a text editor, such as ``vi``, ``nano``, ``gedit`` or ``emacs``, and save
the example above as **workflow.yaml**. To convert to JSON you can use the
...
...
@@ -83,20 +83,23 @@ Add Fireworks to LaunchPad
--------------------------
The LaunchPad is a database where the workflows are stored during their full
life cycle. It is hosted on a resource
nam
ed FireServer.
life cycle. It is hosted on a resource
call
ed FireServer.
**NOTE:** In tutorial settings the FireServer is sometimes on the same host on
which you are logged on.
When used productively the LaunchPad contains many workflows in different states.
To distinguish between different workflows, the query commands can specify e.g.
the Firework ID from the relevant workflow on the LaunchPad or perform
a
mongo-like
queries. To avoid the need to apply filters to the queries, we will
clean up the
LaunchPad from previous Fireworks at the beginning of each exercise
in this
tutorial with this command::
the Firework ID from the relevant workflow on the LaunchPad or perform
``pymongo``
queries. To avoid the need to apply filters to the queries, we will
clean up the
LaunchPad from previous Fireworks at the beginning of each exercise
in this
tutorial with this command::
lpad reset
**NOTE:** Productively the *reset* command is usually not used because it deletes
all workflows, fireworks and launches on the LaunchPad.
To add a workflow to the LaunchPad::
lpad add workflow.yaml
...
...
@@ -182,7 +185,7 @@ To query workflows available on the LaunchPad use the command
lpad get_wflows [[-i <firework ID>]|[-q <query>]] [[-d <more|all>]|[-t]]
The ID of any firework included in the workflow can be used to query a
specific workflow. Alternatively, workflows can be filtered using a pymongo
specific workflow. Alternatively, workflows can be filtered using a
``
pymongo
``
query after the *-q* flag.
To query individual Fireworks use the command::
...
...
@@ -190,8 +193,10 @@ To query individual Fireworks use the command::
lpad get_fws [-i <firework ID>] [-d <more|all>]
Adding the flag *-o yaml* after ``lpad`` will produce the output in YAML
instead of JSON. To obtain a more detailed help on a specifc lpad command you
can the online help::
instead of JSON.
To obtain a more detailed help on a specifc lpad command you
can use the online help::
lpad <lpad command> --help
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment