Skip to content
Snippets Groups Projects
Commit 19eab87a authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Merge branch 'merge-preview-in-main' into 'main'

Automated merge from preview to main

See merge request !817
parents 35c6ed99 76733cc2
No related branches found
No related tags found
2 merge requests!823Bin mal die ganze Seite durchgegangen...,!817Automated merge from preview to main
......@@ -283,7 +283,7 @@ It performs the following steps once per day and filesystem:
### Restoring Expired Workspaces
At expiration time your workspace will be moved to a special, hidden directory. For a month (in
warm_archive: 2 months), you can still restore your data into an existing workspace.
warm_archive: 2 months), you can still restore your data **into an existing workspace**.
!!! warning
......
# Datamover - Data Transfer Inside ZIH Systems
# Transfer Data Inside ZIH Systems with Datamover
With the **Datamover**, we provide a special data transfer machine for transferring data with best
transfer speed between the filesystems of ZIH systems. The Datamover machine is not accessible
......
# Export Nodes - Data Transfer to/from ZIH Systems
# Transfer Data to/from ZIH Systems via Export Nodes
To copy large data to/from ZIH systems, the so-called **export nodes** should be used. While it is
possible to transfer small files directly via the login nodes, they are not intended to be used that
......
......@@ -74,15 +74,21 @@ Submitting slurm 30 minutes job (this might take a while)...
```
This way, a job with a timelimit of 30 minutes and default resources is submitted. This might fit
your needs. If not, please feel free to request a customized job running VampirServer, e.g.
your needs. If not, please feel free to request a **customized job** running VampirServer, e.g.
```console
marie@login$ vampirserver start --ntasks=8 --time=01:00:00 --mem-per-cpu=3000M --partition=romeo
marie@login$ vampirserver start --ntasks=8 -- --time=01:00:00 -- --mem-per-cpu=3000M --partition=romeo
Launching VampirServer...
Submitting slurm 01:00:00 minutes job (this might take a while)...
```
Above automatically allocates its resources via the respective batch system. If you want to start
The above `vampirserver` command automatically allocates its resources via the respective batch
system (, i.e. [Slurm](../jobs_and_resources/slurm.md) on ZIH systems). As shown, you can customize
the resources requirements and time limit. This is especially useful, if you run into performance
issues handling very large trace files. Please refer to `vampirserver --help` for further options
and usage.
If you want to start
VampirServer without a batch allocation or from inside an interactive allocation, use
......
""" #!/usr/bin/env python
#!/usr/bin/env python
"""
Check for consistency between TOC and page headings.
Provide as an command line argument the path to the mkdocs.yml file.
Author: Michael Bommhardt-Richter
"""
......@@ -12,7 +12,7 @@ from pathlib import Path
# {path/filename.md: [toc_heading, file_heading], ... }
TOCData = dict()
whitelist = ["index.md"] # ["archive"]
whitelist = ["index.md","archive/"]
def get_heading_in_file(filename, docs_path):
......@@ -52,11 +52,13 @@ def main():
for key, value in TOCData.items():
if key in whitelist:
continue
if whitelist[1] in key:
continue
if value[0] == "Overview":
continue
if value[0] != value[1]:
cnt += 1
print(f"{key:<40}{value[0]:<30} != {value[1]}")
print(f"{key:<40}{value[0]:<50} != {value[1]}")
sys.exit(cnt)
else:
print("Error: Could not find mkdocs.yml file.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment