-
Notifications
You must be signed in to change notification settings - Fork 9
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
Split this project into two #27
Comments
@cisaacstern As requested, just referencing our recent experiences trying to incorporate arbitrary third party libs (https://github.com/nsidc/earthdata) while creating recipes for NASA datasets which require Earth Data Login (EDL) authentication with sessions rather than simple basic authentication due to the endpoint http redirects which occur when running the recipe in This is a good example of some of the use cases discussed in pangeo-forge/pangeo-forge-orchestrator#115 (comment). |
Based on pangeo-forge/pangeo-forge-orchestrator#115 (comment), and pangeo-forge/pangeo-forge-orchestrator#115 (comment) I think we need to split this project into two.
Part 1
This should be responsible for:
Most importantly, there should be no arbitrary code execution here. So it can read
meta.yaml
(carefully hehe) but notexec
any.py
files. This is what the orchestrator will call.It will also not have any ties into the version of pangeo-forge-recipes needed for use by the appropriate feedstock.
Part 2
This should be responsible for actually executing arbitrary user code (in
recipe.py
file). This will be run in the environment created by part 1, and can be tied to a specific version of pangeo-forge-recipes. This part will be a separate python package, and should be installed in the environment created for it by part 1.Open questions
The text was updated successfully, but these errors were encountered: