> ## Documentation Index
> Fetch the complete documentation index at: https://developer.upsun.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Data Register

> A comprehensive register of data categories across the Upsun platform, including export methods and Data Act classifications.

This page provides a comprehensive overview of all data categories managed across the Upsun platform,
including their classification under the EU Data Act, export availability, and relevant documentation.

<Note>
  This register is maintained to support compliance with the **EU Data Act** and to help you understand
  what data is stored, how it's classified, and how to export it.
</Note>

## Control Plane

Data managed through the Upsun management layer, including organization, project, and environment metadata.

<AccordionGroup>
  <Accordion title="Organization & Identity Metadata">
    | Property                    | Details                                                 |
    | --------------------------- | ------------------------------------------------------- |
    | **Data Category**           | Organization & Identity Metadata                        |
    | **Examples**                | Organizations, members, teams, roles, user associations |
    | **Data Act Classification** | Digital Asset                                           |
    | **Exportable Today**        | Yes                                                     |
    | **Export Method**           | Management API / CLI (API-backed)                       |
    | **Documentation**           | [Management API](https://api.upsun.com/docs/)           |
  </Accordion>

  <Accordion title="Project Metadata">
    | Property                    | Details                                                  |
    | --------------------------- | -------------------------------------------------------- |
    | **Data Category**           | Project Metadata                                         |
    | **Examples**                | Project IDs, titles, regions, plan/subscription metadata |
    | **Data Act Classification** | Digital Asset                                            |
    | **Exportable Today**        | Yes                                                      |
    | **Export Method**           | Management API / CLI                                     |
    | **Documentation**           | [Management API](https://api.upsun.com/docs/)            |
  </Accordion>

  <Accordion title="Environment Metadata">
    | Property                    | Details                                              |
    | --------------------------- | ---------------------------------------------------- |
    | **Data Category**           | Environment Metadata                                 |
    | **Examples**                | Environment IDs, names, parent relationships, status |
    | **Data Act Classification** | Digital Asset                                        |
    | **Exportable Today**        | Yes                                                  |
    | **Export Method**           | Management API / CLI                                 |
    | **Documentation**           | [Management API](https://api.upsun.com/docs/)        |
  </Accordion>

  <Accordion title="Deployment Configuration Metadata">
    | Property                    | Details                                                        |
    | --------------------------- | -------------------------------------------------------------- |
    | **Data Category**           | Deployment Configuration Metadata                              |
    | **Examples**                | Routes, services definitions, variables in deployment payloads |
    | **Data Act Classification** | Digital Asset                                                  |
    | **Exportable Today**        | Partial                                                        |
    | **Export Method**           | API / CLI / Git config export                                  |
    | **Documentation**           | [Management API](https://api.upsun.com/docs/)                  |
  </Accordion>
</AccordionGroup>

## Workload Plane

Data stored and managed within your application environments, including source code, databases, file storage, and service data.

### Application Data

<AccordionGroup>
  <Accordion title="Source Code Repository">
    | Property                    | Details                                                                                           |
    | --------------------------- | ------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Source Code Repository                                                                            |
    | **Examples**                | Git history, branches, tags                                                                       |
    | **Data Act Classification** | Exportable Data                                                                                   |
    | **Exportable Today**        | Yes                                                                                               |
    | **Export Method**           | Git clone / fetch                                                                                 |
    | **Documentation**           | [Download your app's code](/docs/core-concepts/common-tasks/exporting#1-download-your-app’s-code) |
  </Accordion>

  <Accordion title="Persistent File Mounts">
    | Property                    | Details                                                                                 |
    | --------------------------- | --------------------------------------------------------------------------------------- |
    | **Data Category**           | Persistent File Mounts                                                                  |
    | **Examples**                | User uploads, generated assets, stored files                                            |
    | **Data Act Classification** | Exportable Data                                                                         |
    | **Exportable Today**        | Yes                                                                                     |
    | **Export Method**           | CLI / SSH file transfer                                                                 |
    | **Documentation**           | [Download your files](/docs/core-concepts/common-tasks/exporting#2-download-your-files) |
  </Accordion>

  <Accordion title="Environment Variables">
    | Property                    | Details                                                                                             |
    | --------------------------- | --------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Environment Variables                                                                               |
    | **Examples**                | User-defined variables, PLATFORM\_VARIABLES payload                                                 |
    | **Data Act Classification** | Digital Asset                                                                                       |
    | **Exportable Today**        | Yes                                                                                                 |
    | **Export Method**           | CLI / SSH export (decode variables)                                                                 |
    | **Documentation**           | [Get environment variables](/docs/core-concepts/common-tasks/exporting#4-get-environment-variables) |
  </Accordion>
</AccordionGroup>

### Databases

<AccordionGroup>
  <Accordion title="MariaDB/MySQL">
    | Property                    | Details                                                                                                                                       |
    | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Database Data                                                                                                                                 |
    | **Examples**                | Schemas, tables, records                                                                                                                      |
    | **Data Act Classification** | Exportable Data                                                                                                                               |
    | **Exportable Today**        | Yes                                                                                                                                           |
    | **Export Method**           | `upsun db:dump`                                                                                                                               |
    | **Documentation**           | [MariaDB/MySQL](/docs/add-services/mysql#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#relational-databases) |
  </Accordion>

  <Accordion title="PostgreSQL">
    | Property                    | Details                                                                                                                                         |
    | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Database Data                                                                                                                                   |
    | **Examples**                | Schemas, tables, records                                                                                                                        |
    | **Data Act Classification** | Exportable Data                                                                                                                                 |
    | **Exportable Today**        | Yes                                                                                                                                             |
    | **Export Method**           | `upsun db:dump` / `pg_dump` via tunnel                                                                                                          |
    | **Documentation**           | [PostgreSQL](/docs/add-services/postgresql#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#relational-databases) |
  </Accordion>

  <Accordion title="MongoDB">
    | Property                    | Details                                                                                                                                                 |
    | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Database Data                                                                                                                                           |
    | **Examples**                | Collections, documents                                                                                                                                  |
    | **Data Act Classification** | Exportable Data                                                                                                                                         |
    | **Exportable Today**        | Yes                                                                                                                                                     |
    | **Export Method**           | `upsun tunnel:open` + `mongodump`                                                                                                                       |
    | **Documentation**           | [MongoDB](/docs/add-services/mongodb#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#document-and-time-series-databases) |
  </Accordion>

  <Accordion title="InfluxDB">
    | Property                    | Details                                                                                                                                                |
    | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
    | **Data Category**           | Time-series Data                                                                                                                                       |
    | **Examples**                | Buckets, measurements                                                                                                                                  |
    | **Data Act Classification** | Exportable Data                                                                                                                                        |
    | **Exportable Today**        | Yes                                                                                                                                                    |
    | **Export Method**           | `upsun tunnel:single` + `influx backup`                                                                                                                |
    | **Documentation**           | [InfluxDB](/docs/add-services/influxdb#export-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#document-and-time-series-databases) |
  </Accordion>

  <Accordion title="ClickHouse">
    | Property                    | Details                                                                                                                                                       |
    | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Analytical Database Data                                                                                                                                      |
    | **Examples**                | Tables, datasets                                                                                                                                              |
    | **Data Act Classification** | Exportable Data                                                                                                                                               |
    | **Exportable Today**        | Yes                                                                                                                                                           |
    | **Export Method**           | Service-native tooling over tunnel                                                                                                                            |
    | **Documentation**           | [ClickHouse](/docs/add-services/clickhouse#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#document-and-time-series-databases) |
  </Accordion>
</AccordionGroup>

### Search Engines

<AccordionGroup>
  <Accordion title="OpenSearch">
    | Property                    | Details                                                                                                                                   |
    | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Search Index Data                                                                                                                         |
    | **Examples**                | Indexes, mappings                                                                                                                         |
    | **Data Act Classification** | Exportable Data                                                                                                                           |
    | **Exportable Today**        | Yes                                                                                                                                       |
    | **Export Method**           | Service snapshot APIs                                                                                                                     |
    | **Documentation**           | [OpenSearch](/docs/add-services/opensearch#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#search-engines) |
  </Accordion>

  <Accordion title="Elasticsearch">
    | Property                    | Details                                                                                                                                         |
    | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Search Index Data                                                                                                                               |
    | **Examples**                | Indexes, mappings                                                                                                                               |
    | **Data Act Classification** | Exportable Data                                                                                                                                 |
    | **Exportable Today**        | Yes                                                                                                                                             |
    | **Export Method**           | Snapshot APIs                                                                                                                                   |
    | **Documentation**           | [Elasticsearch](/docs/add-services/elasticsearch#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#search-engines) |
  </Accordion>

  <Accordion title="Solr">
    | Property                    | Details                             |
    | --------------------------- | ----------------------------------- |
    | **Data Category**           | Search Index Data                   |
    | **Examples**                | Indexes, configsets                 |
    | **Data Act Classification** | Exportable Data (often rebuildable) |
    | **Exportable Today**        | No (rebuildable)                    |
    | **Export Method**           | Rebuild from primary data store     |
    | **Documentation**           | [Solr](/docs/add-services/solr)     |

    <Info>Solr indexes are generally rebuildable from the primary data store. Export is not typically necessary.</Info>
  </Accordion>
</AccordionGroup>

### Caching & Data Stores

<AccordionGroup>
  <Accordion title="Redis">
    | Property                    | Details                                                                                                                                                 |
    | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Cache Data                                                                                                                                              |
    | **Examples**                | Key-value cache entries                                                                                                                                 |
    | **Data Act Classification** | Exportable Data (if persistent)                                                                                                                         |
    | **Exportable Today**        | Yes (persistent)                                                                                                                                        |
    | **Export Method**           | RDB/AOF backup                                                                                                                                          |
    | **Documentation**           | [Redis](/docs/add-services/redis#exporting-data-persistent) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#key-value-stores-persistent) |

    <Info>Ephemeral Redis stores data only in memory and does not need to be exported. Persistent Redis data can be exported.</Info>
  </Accordion>

  <Accordion title="Valkey">
    | Property                    | Details                                                                                                                                                   |
    | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Cache/Data Store                                                                                                                                          |
    | **Examples**                | Key-value data                                                                                                                                            |
    | **Data Act Classification** | Exportable Data (if persistent)                                                                                                                           |
    | **Exportable Today**        | Yes (persistent)                                                                                                                                          |
    | **Export Method**           | Service-native backup                                                                                                                                     |
    | **Documentation**           | [Valkey](/docs/add-services/valkey#exporting-data-persistent) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#key-value-stores-persistent) |

    <Info>Ephemeral Valkey stores data only in memory and does not need to be exported. Persistent Valkey data can be exported.</Info>
  </Accordion>

  <Accordion title="Memcached">
    | Property                    | Details                                   |
    | --------------------------- | ----------------------------------------- |
    | **Data Category**           | Cache                                     |
    | **Examples**                | Ephemeral cache entries                   |
    | **Data Act Classification** | Exportable Data (not durable-of-record)   |
    | **Exportable Today**        | No                                        |
    | **Export Method**           | Not applicable (ephemeral)                |
    | **Documentation**           | [Memcached](/docs/add-services/memcached) |

    <Info>Memcached is ephemeral by nature. No export is required.</Info>
  </Accordion>

  <Accordion title="Varnish">
    | Property                    | Details                                 |
    | --------------------------- | --------------------------------------- |
    | **Data Category**           | HTTP Cache                              |
    | **Examples**                | Cached HTTP responses                   |
    | **Data Act Classification** | Exportable Data (not durable-of-record) |
    | **Exportable Today**        | No                                      |
    | **Export Method**           | Not applicable (cache)                  |
    | **Documentation**           | [Varnish](/docs/add-services/varnish)   |

    <Info>Varnish is a cache layer. No export is required.</Info>
  </Accordion>
</AccordionGroup>

### Message Queues & Event Streams

<AccordionGroup>
  <Accordion title="RabbitMQ">
    | Property                    | Details                                                                                                                                |
    | --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Message Queue Data                                                                                                                     |
    | **Examples**                | Queues, exchanges, messages                                                                                                            |
    | **Data Act Classification** | Exportable Data (context dependent)                                                                                                    |
    | **Exportable Today**        | Yes                                                                                                                                    |
    | **Export Method**           | Broker export tools                                                                                                                    |
    | **Documentation**           | [RabbitMQ](/docs/add-services/rabbitmq#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#message-brokers) |
  </Accordion>

  <Accordion title="Kafka">
    | Property                    | Details                                                                                                                          |
    | --------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Event Streams                                                                                                                    |
    | **Examples**                | Topics, partitions, messages                                                                                                     |
    | **Data Act Classification** | Exportable Data (context dependent)                                                                                              |
    | **Exportable Today**        | Yes                                                                                                                              |
    | **Export Method**           | Consumer-based export                                                                                                            |
    | **Documentation**           | [Kafka](/docs/add-services/kafka#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#message-brokers) |
  </Accordion>
</AccordionGroup>

### Vector Databases

<AccordionGroup>
  <Accordion title="Qdrant">
    | Property                    | Details                                                                                                                                 |
    | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Vector Database Data                                                                                                                    |
    | **Examples**                | Vector collections, points, payloads                                                                                                    |
    | **Data Act Classification** | Exportable Data                                                                                                                         |
    | **Exportable Today**        | Yes                                                                                                                                     |
    | **Export Method**           | Qdrant Snapshot API                                                                                                                     |
    | **Documentation**           | [Qdrant](/tutorials/self-hosted/qdrant#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#vector-databases) |
  </Accordion>

  <Accordion title="Chroma">
    | Property                    | Details                                                                                                                                 |
    | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
    | **Data Category**           | Vector Database Data                                                                                                                    |
    | **Examples**                | Vector collections, embeddings, metadata                                                                                                |
    | **Data Act Classification** | Exportable Data                                                                                                                         |
    | **Exportable Today**        | Yes                                                                                                                                     |
    | **Export Method**           | CLI / rsync (SQLite files)                                                                                                              |
    | **Documentation**           | [Chroma](/tutorials/self-hosted/chroma#exporting-data) \| [Exporting data](/docs/core-concepts/common-tasks/exporting#vector-databases) |
  </Accordion>
</AccordionGroup>

### Stateless Processing Services

<AccordionGroup>
  <Accordion title="Gotenberg">
    | Property                    | Details                                                                                    |
    | --------------------------- | ------------------------------------------------------------------------------------------ |
    | **Data Category**           | Stateless Processing                                                                       |
    | **Examples**                | Generated PDFs (stored elsewhere)                                                          |
    | **Data Act Classification** | Exportable Data (if stored)                                                                |
    | **Exportable Today**        | Yes                                                                                        |
    | **Export Method**           | [Export via file mounts](/docs/core-concepts/common-tasks/exporting#2-download-your-files) |
    | **Documentation**           | [Gotenberg](/docs/add-services/gotenberg)                                                  |

    <Info>Gotenberg is stateless. Any generated output is stored in your file mounts.</Info>
  </Accordion>

  <Accordion title="Headless Chrome">
    | Property                    | Details                                                                                    |
    | --------------------------- | ------------------------------------------------------------------------------------------ |
    | **Data Category**           | Stateless Processing                                                                       |
    | **Examples**                | Generated artifacts (if stored)                                                            |
    | **Data Act Classification** | Exportable Data (if stored)                                                                |
    | **Exportable Today**        | Yes                                                                                        |
    | **Export Method**           | [Export via file mounts](/docs/core-concepts/common-tasks/exporting#2-download-your-files) |
    | **Documentation**           | [Headless Chrome](/docs/add-services/headless-chrome)                                      |

    <Info>Headless Chrome is stateless. Any generated output is stored in your file mounts.</Info>
  </Accordion>
</AccordionGroup>

## Security Services

<AccordionGroup>
  <Accordion title="Vault KMS">
    | Property                    | Details                               |
    | --------------------------- | ------------------------------------- |
    | **Data Category**           | Keys & Policies                       |
    | **Examples**                | Transit keys, policies, configuration |
    | **Data Act Classification** | Digital Asset                         |
    | **Exportable Today**        | Partial                               |
    | **Export Method**           | Vault API                             |
    | **Documentation**           | [Vault](/docs/add-services/vault)     |

    <Warning>Key export stance and procedures need clarification.</Warning>
  </Accordion>
</AccordionGroup>

## Non-Exportable Data

The following categories of data are internal to the Upsun platform and are **not exportable**.
These are not customer-specific and fall outside the scope of the EU Data Act's data portability requirements.

| Data Category               | Examples                                        | Reason                                             |
| --------------------------- | ----------------------------------------------- | -------------------------------------------------- |
| Provider Internal Telemetry | Infrastructure metrics, internal abuse signals  | Provider internal operational data (trade secrets) |
| Internal Security Artifacts | Internal security monitoring, platform controls | Security-sensitive provider IP                     |
| Multi-tenant Derived Data   | Aggregated analytics across customers           | Not customer-specific data                         |
