Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docs.it4i.cz
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
docs.it4i.cz
Commits
8420fe0f
Commit
8420fe0f
authored
1 year ago
by
Branislav Jansik
Browse files
Options
Downloads
Patches
Plain Diff
Update shell-and-data-access.md
parent
f5a4e889
No related branches found
No related tags found
1 merge request
!468
Master
Pipeline
#37797
failed
1 year ago
Stage: test
Stage: build
Stage: deploy
Stage: after_test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs.it4i/general/shell-and-data-access.md
+14
-2
14 additions, 2 deletions
docs.it4i/general/shell-and-data-access.md
with
14 additions
and
2 deletions
docs.it4i/general/shell-and-data-access.md
+
14
−
2
View file @
8420fe0f
...
@@ -108,6 +108,8 @@ After logging in, you will see the command prompt with the name of the cluster a
...
@@ -108,6 +108,8 @@ After logging in, you will see the command prompt with the name of the cluster a
## Data Transfer
## Data Transfer
### Serial Transfer
Data in and out of the system may be transferred by SCP and SFTP protocols.
Data in and out of the system may be transferred by SCP and SFTP protocols.
| Cluster | Port | Protocol |
| Cluster | Port | Protocol |
...
@@ -133,6 +135,14 @@ or
...
@@ -133,6 +135,14 @@ or
local $
sftp
-o
IdentityFile
=
/path/to/id_rsa username@cluster-name.it4i.cz
local $
sftp
-o
IdentityFile
=
/path/to/id_rsa username@cluster-name.it4i.cz
```
```
You may request the
**aes256-gcm@openssh.com cipher**
for more efficient ssh based transfer:
```
console
local $
scp
-c
aes256-gcm@openssh.com
-i
/path/to/id_rsa
-r
my-local-dir username@cluster-name.it4i.cz:directory
```
The -c argument may be used with ssh, scp and sftp, and is also applicable to sshfs and rsync below.
A very convenient way to transfer files in and out of the cluster is via the fuse filesystem
[
SSHFS
][
b
]
.
A very convenient way to transfer files in and out of the cluster is via the fuse filesystem
[
SSHFS
][
b
]
.
```
console
```
console
...
@@ -159,9 +169,11 @@ local $ rsync my-local-file
...
@@ -159,9 +169,11 @@ local $ rsync my-local-file
local $
rsync
-r
my-local-dir username@cluster-name.it4i.cz:directory
local $
rsync
-r
my-local-dir username@cluster-name.it4i.cz:directory
```
```
### Parallel Transfer
!!! note
!!! note
The data transfer speed is limited by the single-core ssh encryption speed to about
**
1
50 MB/s**
The data transfer speed is limited by the single-core ssh encryption speed to about
**
2
50 MB/s**
(750 MB/s in case of aes256-gcm@openssh.com cipher)
Run
**multiple
rsync
**
instances for unlimited transfers
Run
**multiple**
instances for unlimited transfers
Parallel execution of multiple rsync processes utilizes multiple cores to accelerate encryption and multiple tcp streams for enhanced bandwidth.
Parallel execution of multiple rsync processes utilizes multiple cores to accelerate encryption and multiple tcp streams for enhanced bandwidth.
First, set up ssh-agent single sign on:
First, set up ssh-agent single sign on:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment