Replies: 1 comment
-
This is an interesting use case. The However, our plan to tackle use cases similar to yours is to improve the support for S3-compatible object storage on the premise. This would require:
Could this work for you? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
We have a cluster and storage configuration that I don't think works with the
Nextflow
publishdir()
. Allegedly this configuration is becoming more common out in the wild (according to our cluster administrators), so I'm wondering if there's already a solution we're missing, or if I should submit a feature request.In short, we purchased private storage that is hosted by our campus computing center, but the storage is NOT directly mounted to the cluster. i.e., we can't access it using a standard Unix path. We have to transfer between the cluster and our private storage as though it's a remote server (e.g,.
scp
,rclone
, etc.).We wondered whether
publishdir()
might accept the following format (allowingssh
keys to handle authentication), butNextflow
rejects the@
symbol:<username>@<remote_server>:/destination/path/
.Error
Ultimate questions:
publishdir()
via compute node: Any suggestions on how to specify a remote server as thepublishdir()
?publishdir()
via the cluster's data-transfer node: Our cluster admins have emphasized that we'll have much faster transfer speeds if we can transfer between the cluster and our private storage using the cluster's data-transfer node. This would obviously require some advanced options forpublishdir()
.If neither of these are possible, there are obviously other ways to do this via command line as part of our jobs, but would be nice and tidy if we could do it with
publishdir()
.Really appreciate any suggestions.
Beta Was this translation helpful? Give feedback.
All reactions