Skip to content

Commit

Permalink
Storage Table Fixes (#703)
Browse files Browse the repository at this point in the history
* Storage Table Fixes
  • Loading branch information
HariPeri authored Sep 19, 2024
1 parent 35c52a6 commit 9d50908
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
9 changes: 6 additions & 3 deletions data/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,23 @@ service:
options:
- name: "Research Project"
security: "Standard"
cost: "$60/TB per year (<strong>effective July&nbsp;1, 2024</strong>: $70/TB)"
cost: "$70/TB per year"
quota: "1TB increments"
snapshots: "daily snapshots for 1 week"
snapshots: "Daily snapshots for 1 week"
replication: "No"
backup: "No"
access: "Rivanna, <a href=\"/userinfo/howtos/storage/drive-mapping/\">mountable on local workstation</a>"
highly-sens-ds-compliant: "No"
use_cases: "Ideal for long-term storage of data to be accessed from Rivanna. Research Project storage is ideal for sharing data within a research group and for running jobs with smaller files."
- name: "Research Standard"
security: "Standard"
cost: "$45/TB per year (<strong>effective July&nbsp;1, 2024</strong>: Each PI<sup>1</sup> with an RC account will be granted up to 10 TB of Research Standard Storage at no charge<sup>2</sup>)"
cost: "$45/TB per year (Each PI with an RC account will be granted up to 10 TB of Research Standard Storage at no charge<sup>1</sup>)"
quota: "1TB increments"
snapshots: "No"
replication: "No"
backup: "No"
access: "Rivanna, <a href=\"/userinfo/howtos/storage/drive-mapping/\">mountable on local workstation</a>"
highly-sens-ds-compliant: "No"
use_cases: "Budget solution for storing data that can be accessed by a personal computer or Rivanna. It is not recommended to run Slurm jobs against research standard storage unless absolutely necessary. File operations on Research Standard storage are slower than on Rivanna <code>/home</code>, <code>/scratch</code>, or <code>Research Project</code> storage."
- name: "Ivy Central Storage"
security: "High"
Expand All @@ -72,6 +74,7 @@ service:
replication: "No"
backup: "No"
access: "Ivy Virtual Machine"
highly-sens-ds-compliant: "Yes"
use_cases: "Ideal for long-term storage of highly sensitive data and is suitable for computation with smaller file sizes. Files stored in ICS are read-write only."
- name: "IvyVM"
label: "Virtual Machine"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- Determine index of Storage Entry -->
<!-- Determine index of Storage Entry located in /data/service.yaml -->
{{ $services := $.Site.Data.service.service }}
{{ $storage_index := -1 }}
{{ range $i, $service := $services }}
Expand Down Expand Up @@ -32,17 +32,17 @@
<td class="">{{ index $standard_storage "cost" | markdownify}}</td>
</tr>
<tr>
<td class="">Snapshots<sup>3</sup></td>
<td class="">Snapshots<sup>2</sup></td>
<td class=""> {{ index $project_storage "snapshots" }}</td>
<td class=""> {{ index $standard_storage "snapshots" }} </td>
</tr>
<tr>
<td class="">Replication<sup>4</sup></td>
<td class="">Replication<sup>3</sup></td>
<td class=""> {{ index $project_storage "replication" }}</td>
<td class=""> {{ index $standard_storage "replication" }} </td>
</tr>
<tr>
<td class="">Backup<sup>5</sup></td>
<td class="">Backup<sup>4</sup></td>
<td class=""> {{ index $project_storage "backup" }}</td>
<td class=""> {{ index $standard_storage "backup" }} </td>
</tr>
Expand All @@ -51,6 +51,11 @@
<td class=""> {{ index $project_storage "access" | markdownify}}</td>
<td class=""> {{ index $standard_storage "access" | markdownify}} </td>
</tr>
<tr>
<td class=""> Highly Sensitive Data Storage Compliant</td>
<td class=""> {{ index $project_storage "highly-sens-ds-compliant" | markdownify}}</td>
<td class=""> {{ index $standard_storage "highly-sens-ds-compliant" | markdownify}} </td>
</tr>
<tr>
<td class="">Use cases</td>
<td class=""> {{ index $project_storage "use_cases" | markdownify}}</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
<td class="">Access</td>
<td class="">{{ index $ivy_central_storage "access" }}</td>
</tr>
<tr></tr>
<td class="">Highly Sensitive Data Storage Compliant</td>
<td class="">{{ index $ivy_central_storage "highly-sens-ds-compliant" }}</td>
</tr>
<tr>
<td class="">Use cases</td>
<td class="">{{ index $ivy_central_storage "use_cases" }}</td>
Expand Down

0 comments on commit 9d50908

Please sign in to comment.