-
Notifications
You must be signed in to change notification settings - Fork 91
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
Improve support for remote executors #1885
Open
cjao
wants to merge
2
commits into
develop
Choose a base branch
from
improve-file-transfer-selector
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #1885 +/- ##
===========================================
+ Coverage 84.60% 85.24% +0.63%
===========================================
Files 295 181 -114
Lines 14499 11328 -3171
Branches 195 0 -195
===========================================
- Hits 12267 9656 -2611
+ Misses 2098 1672 -426
+ Partials 134 0 -134
|
cjao
force-pushed
the
improve-file-transfer-selector
branch
from
December 13, 2023 21:52
72beaea
to
7fac492
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
3 times, most recently
from
January 23, 2024 12:27
678996e
to
c254d46
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
3 times, most recently
from
February 5, 2024 13:18
04fde96
to
1313c44
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
2 times, most recently
from
February 16, 2024 01:55
45bb7e2
to
c083aa9
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
from
February 29, 2024 13:24
c083aa9
to
3a0aa15
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
from
May 16, 2024 00:11
3a0aa15
to
7ec3c58
Compare
cjao
force-pushed
the
improve-file-transfer-selector
branch
12 times, most recently
from
May 27, 2024 18:48
139d21a
to
4aca466
Compare
Handle the following cases: - Local-Remote (except HTTP destination) - Remote-Local - Local-Local This will be needed for to port remote executors to the new runner-executor API.
`LocalDispatcher.prepare_manifest()` will attempt to copy the task artifacts to `COVALENT_STAGING_URI_PREFIX` if that environment variable is set.
cjao
force-pushed
the
improve-file-transfer-selector
branch
from
September 11, 2024 18:36
4aca466
to
40cfdb8
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The changes in this PR allow remote executors to use the new-style executor API.
(s3, file)
and(file, s3)
both map to the S3 transfer strategy.COVALENT_STAGING_URI_PREFIX
environment variable is set (for instance,COVALENT_STAGING_URI_PREFIX="s3://{bucket_name}/{dispatch_id}/sublattices"
, the executor will deposit the sublattice assets there for the orchestrator to retrieve after the_build_sublattice_graph
task completes (naturally Covalent should have read permissions for that URI prefix).