-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: add required runtime-like section for execution engine #484
Comments
These are intended to be put in hints section. Please note that the changes are not proposed, they are approved and merged into the development spec. |
It might help if you give a concrete example. What types of cloud- or executor-specific attributes need to be requirements rather than hints? |
@jdidion I understand the hints section has been approved and merged and I want to apologize that my example wanted to put this in the runtime, that was not my intention From the spec's it seems as though this section definition I am looking across all cloud- or executor- attributes to see what is required and will add to this thread. |
I think that the nested cloud/execution engine specs runs better. On aws they use 'disks' to specify the storage, however, we use 'disk' in the standard WDL runtime to run on k8s. There should always be a 'disk' specification on different backends. |
Disk is a TES specific backend, while GCP, AWS use Disks for MiniWDL and Cromwell. |
the |
@patmagee I still see 'disks' however cromwell/TES expects 'disk' |
@jdidion and @patmagee I would like to restart this conversation. Below are some examples that required or expected in some form per task in the wdl. AWS uses Some have been taken out as default runtime environments like Cromwell, but that doesn't offer task level support. Whats the best way that we can support these options and extensions without having to constantly changing wdl for these task specifc execution engine runtime attributes? |
I think our policy is to try to standardize things which are fairly common, at least conceptually, and letting the execution engine interpret them as it wants. For example, we have the reserved As another example, we've added a For things that are specific to a particular implementation engine or backend, @vsmalladi if you'd like to propose additional changes I think WDL 1.2 is a good opportunity to do so. I'd recommend opening issues with more specific requests. |
Great will put in some specifics. |
In the new spec there is a proposal to make a stricter
runtime
section and provide an optionalhints
section that can be the execution engine but won't hinder the execution of workflow. However, I feel like this fails to navigate the more common senario where there are cloud/execution engine specs that must be present to be run.My proposal is to extend the runtime section with nested cloud/execution engine specs which would be required for running on their system. This will allow at least minimum requirements are meet to run.
The execution engine can have a command line input a runtime combination names to read and validate the options, and if not given will skip all of them and use the default runtime options to run spec. An example of for some are below:
Cromwell
java -jar /path/to/cromwell.jar run --runtime cromwell,gcp.
miniWDL
miniwdl run --runtime-configuration miniwdl,azure
The text was updated successfully, but these errors were encountered: