You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
Agis Anastasopoulos edited this page May 3, 2018
·
16 revisions
This file contains common terms of mistry that are seen throughout the codebase or the documentation.
Job: The core unit of work. Represents something that needs to be executed
in order to produce the desired outcome.
Params: A Job may contain parameters that affect its execution.
Project: Each job belongs to a specific project.
The project contains all the information for preparing the environment in
which its jobs are to be executed.
Artifacts: The result of the execution of a job. Essentially the main output of mistry.
Server: The HTTP server is the entry point to the service. Users enqueue Jobs by issuing requests to the server. The server then executes the jobs and responds with the result.