We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
job_spec example:
job_spec
{ "command":"/home/ops/ariamh/ariaml/extractFeatures.sh", "disk_usage":"1GB", "imported_worker_files": { "/home/ops/.netrc": "/home/ops/.netrc", "/home/ops/.aws": "/home/ops/.aws", "/home/ops/ariamh/conf/settings.conf": "/home/ops/ariamh/conf/settings.conf" }, "disable_pre_builtins": true, "params" : [ { "name": "uri", "destination": "positional" }, { "name": "uri", "destination": "localize" } ] }
hysds-io example:
hysds-io
{ "params" : [ { "name": "localize_product_trigger", "from": "dataset_jpath:urls.0" }, { "name": "scene_list", "from": "value", "value":"http://landsat-pds.s3.amazonaws.com/scene_list.gz" }, { "name": "id", "from": "dataset_jpath:objectid" }, { "name": "acq_time", "from": "dataset_jpath:metadata.acq_time" } ] }
as of right now HySDS only supports json formatting for hysds-ios and job_spec. however JSON has script formatting:
in the future it would be helpful to add YAML support, as YAML supports comments and such, ex:
--- command: "/home/ops/ariamh/ariaml/extractFeatures.sh" disk_usage: 1GB imported_worker_files: "/home/ops/.netrc": "/home/ops/.netrc" "/home/ops/.aws": "/home/ops/.aws" "/home/ops/ariamh/conf/settings.conf": "/home/ops/ariamh/conf/settings.conf" disable_pre_builtins: true params: - name: uri destination: positional - name: uri destination: localize
The text was updated successfully, but these errors were encountered:
DustinKLo
No branches or pull requests
job_spec
example:hysds-io
example:as of right now HySDS only supports json formatting for hysds-ios and job_spec. however JSON has script formatting:
in the future it would be helpful to add YAML support, as YAML supports comments and such, ex:
The text was updated successfully, but these errors were encountered: