How to make all participant nodes synchronize data when uploading Dar files

When I used the command “participants.all.dars.upload()” to upload Dar files on participant1, participant2 did not upload synchronously. Is there a relevant command that allows all nodes to upload files at the same time

1 Like

Hi @skylorna :wave:

As far as I know this is still a manual process and you need to upload dar file per participant.

1 Like

thank you

There are convenience commands to make that easier though, in particular participants.all:

participants.all.foreach(_.dars.upload("my.dar"))

or

participants.local.dars.upload("my.dar")
2 Likes

thank you