# Persistent storage

Workspace storage that survives between interactive sessions. Files saved elsewhere in a session are lost when it ends.

Source: https://university.eugo.io/glossary/persistent-storage

---

The rule to remember is which paths survive. Files in workspace storage persist between sessions; session-local paths such as /tmp do not, and neither is readable from a compute node by default.

## Related terms

- [Workspace](https://university.eugo.io/glossary/workspace) — An isolated compute environment with its own persistent storage, preinstalled libraries, and resource allocation. Where your sessions and clusters run.
- [Interactive session](https://university.eugo.io/glossary/interactive-session) — A running EugoIDE instance attached to your workspace. It is where you write code; a cluster is what runs it at scale.
- [Object storage](https://university.eugo.io/glossary/object-storage) — Storage reachable by every node in a cluster. Inputs must live here, or in workspace storage, rather than on one machine’s local disk.

