|
|
|
# Mount pipeline data
|
|
|
|
|
|
|
|
Note: to be allowed to do this, your SSH public key must be added to the authorized keys of the `dbnomics-data` user on the server.
|
|
|
|
|
|
|
|
The fetcher pipelines (visible on the [dashboard](https://db.nomics.world/dashboard/)) produce data on `scylla` in `/data`.
|
|
|
|
|
|
|
|
To access that directory from a local development machine, for example in order to visualize huge data while working on a fetcher without filling the disk, use sftp or sshfs.
|
|
|
|
|
|
|
|
## SFTP
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sftp dbnomics-data@scylla.nomics.world
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also enter the URL `sftp://dbnomics-data@scylla.nomics.world` in your file manager.
|
|
|
|
|
|
|
|
## SSHFS
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# You can change "mnt" below by the directory of your choice
|
|
|
|
mkdir mnt
|
|
|
|
|
|
|
|
# To mount
|
|
|
|
sshfs dbnomics-data@scylla.nomics.world: mnt
|
|
|
|
ls mnt
|
|
|
|
|
|
|
|
# To unmount
|
|
|
|
fusermount -u mnt
|
|
|
|
``` |