Proposal for File Transfer #687
Replies: 6 comments 8 replies
-
@AlejandroEsquivel great ! can you also outline the same for "all files" in current directory and other batch process ? like all files in another directory etc.. ? |
Beta Was this translation helpful? Give feedback.
-
Hi @AlejandroEsquivel, how do these dependencies interact with the electron deps? Which ones are to be handled first? |
Beta Was this translation helpful? Give feedback.
-
Converted to general discussion around implementation of File Transfer, will post here if there are key decisions around how file transfers will create associations in transport graph |
Beta Was this translation helpful? Give feedback.
-
Currently an electron may be invoked several times in a workflow with different arguments. Do we expect the file deps to remain the same for each invocation? |
Beta Was this translation helpful? Give feedback.
-
One important use case example that adds external implicit dependency while constructing graphs def create_file():
with open("my_file",'wb') as b:
pass
def add(a,i):
bash(mpirun -np 32 very costly program)
def collect():
b=0
for i in range(10):
with open(f"my_file_{i}",'rb') as b:
...
return b
#workflow
create_file()
futures=[]
for i in range(10):
future.append(add(a=i**2,i))
collect()#.dependes(futures)
add() |
Beta Was this translation helpful? Give feedback.
-
Updoot for the new Ux ! |
Beta Was this translation helpful? Give feedback.
-
The initial UX proposal for file transfer is specified below:
Beta Was this translation helpful? Give feedback.
All reactions