Skip to content

Commit

Permalink
Add some minor grammar changes to README (#72)
Browse files Browse the repository at this point in the history
* Add some minor grammar changes

* Don't use emphasis
  • Loading branch information
Richard Protasov authored and Skarlso committed Aug 10, 2018
1 parent 52d975c commit 8b39c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -121,11 +121,11 @@ Here is an example:
}
}
Like you can see, pipelines are defined by jobs. Usually, a function represents a job. You can define as many jobs in your pipeline as you want.
As you can see, pipelines are defined by jobs, and functions usually represent jobs. You can define as many jobs in your pipeline as you want.

At the end, we define a jobs array that populates all jobs to gaia. We also add some information like a title, a description and the priority.

The priority is really important and should always be used. If, for example, job A has a higher priority (decimal number) as job B, job A will be executed **after** job B. Priority defines therefore the order of execution. If two or more jobs have the same priority, those will be executed simultanously. You can compare it with the `Unix nice level`_.
The priority is really important and should always be used. If, for example, job A has a higher priority (decimal number) than job B, A will be executed **after** B. Priority defines therefore the order of execution. If two or more jobs have the same priority, those will be executed simultanously. You can compare it with the `Unix nice level`_.

That's it! Put this code into a git repository and create a new pipeline via the gaia UI.
Gaia will compile it and add it to it's store for later execution.
Expand Down

0 comments on commit 8b39c4e

Please sign in to comment.