Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
b43dfb99
Commit
b43dfb99
authored
6 months ago
by
Martin Schroschk
Browse files
Options
Downloads
Patches
Plain Diff
Move beegfs page to archive
parent
d3b27358
No related branches found
Branches containing commit
No related tags found
2 merge requests
!1133
Automated merge from preview to main
,
!1118
Remove beegfs from documentation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/archive/beegfs.md
+73
-0
73 additions, 0 deletions
doc.zih.tu-dresden.de/docs/archive/beegfs.md
with
73 additions
and
0 deletions
doc.zih.tu-dresden.de/docs/archive/beegfs.md
0 → 100644
+
73
−
0
View file @
b43dfb99
# BeeGFS
Commands to work with the BeeGFS filesystem.
## Capacity and Filesystem Health
View storage and inode capacity and utilization for metadata and storage targets.
```
console
marie@login$
beegfs-df
-p
/beegfs/global0
```
The
`-p`
parameter needs to be the mountpoint of the filesystem and is mandatory.
List storage and inode capacity, reachability and consistency information of each storage target.
```
console
marie@login$
beegfs-ctl
--listtargets
--nodetype
=
storage
--spaceinfo
--longnodes
--state
--mount
=
/beegfs/global0
```
To check the capacity of the metadata server, just toggle the
`--nodetype`
argument.
```
console
marie@login$
beegfs-ctl
--listtargets
--nodetype
=
meta
--spaceinfo
--longnodes
--state
--mount
=
/beegfs/global0
```
## Striping
Show the stripe information of a given file on the filesystem and on which storage target the
file is stored.
```
console
marie@login$
beegfs-ctl
--getentryinfo
/beegfs/global0/my-workspace/myfile
--mount
=
/beegfs/global0
```
Set the stripe pattern for a directory. In BeeGFS, the stripe pattern will be inherited from a
directory to its children.
```
console
marie@login$
beegfs-ctl
--setpattern
--chunksize
=
1m
--numtargets
=
16 /beegfs/global0/my-workspace/
--mount
=
/beegfs/global0
```
This will set the stripe pattern for
`/beegfs/global0/path/to/mydir/`
to a chunk size of 1 MiB
distributed over 16 storage targets.
Find files located on certain server or targets. The following command searches all files that are
stored on the storage targets with id 4 or 30 and my-workspace directory.
```
console
marie@login$
beegfs-ctl
--find
/beegfs/global0/my-workspace/
--targetid
=
4
--targetid
=
30
--mount
=
/beegfs/global0
```
## Network
View the network addresses of the filesystem servers.
```
console
marie@login$
beegfs-ctl
--listnodes
--nodetype
=
meta
--nicdetails
--mount
=
/beegfs/global0
marie@login$
beegfs-ctl
--listnodes
--nodetype
=
storage
--nicdetails
--mount
=
/beegfs/global0
marie@login$
beegfs-ctl
--listnodes
--nodetype
=
client
--nicdetails
--mount
=
/beegfs/global0
```
Display connections the client is actually using
```
console
marie@login$
beegfs-net
```
Display possible connectivity of the services
```
console
marie@login$
beegfs-check-servers
-p
/beegfs/global0
```
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