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

# Disaster Recovery Overview

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

<Note>
  **Physical Cluster Replication in Cockroach Continuum is in <InternalLink path="cockroachdb-feature-availability">limited access</InternalLink>** and only available to enrolled organizations. To enroll your organization, contact your Cockroach Labs account team.
</Note>

Cockroach Continuum clusters replicate data across nodes for availability, and managed backups provide recovery points for every cluster. Mission Critical clusters can additionally replicate to a standby cluster with physical cluster replication, enabled by the <InternalLink path="editions-and-add-ons#add-ons">Data Replication add-on</InternalLink>.

Pages in this section:

* <InternalLink version="cockroachcloud" path="managed-backups">Managed Backups</InternalLink>
* <InternalLink version="cockroachcloud" path="physical-cluster-replication">Physical Cluster Replication</InternalLink>
