> ## 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.

# Get Started with Cockroach Continuum

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>;
};

Cockroach Continuum work follows four stages: onboard data and build an application, scale it in production, monitor and optimize it, and integrate it with the rest of your ecosystem. This page walks through the path from a new organization to a production deployment, and where to go at each stage.

## Before you begin

You need a Cockroach Continuum organization, a running cluster, and a verified connection. If you are starting fresh, work through the <InternalLink path="tutorial-quickstart">Quickstart with CockroachDB</InternalLink> tutorial, which walks you through creating a Continuum organization, creating a cluster, connecting to it, and running your first queries.

The rest of this page shows where to go at each stage of your Continuum work.

## Onboard data and build applications

Bring an existing database to CockroachDB with the <InternalLink path="migration-assistant-overview">Migration Assistant</InternalLink>, which guides you through schema conversion, data load, and verification. To build an application, refer to <InternalLink path="develop-and-connect-overview">Develop and Connect</InternalLink> for connections, transactions, and server-side logic.

## Scale production workloads

<InternalLink path="deploy-and-manage-overview">Deploy and manage</InternalLink> clusters across your environments. <InternalLink path="plenum-overview">Cockroach Plenum</InternalLink> sizes and scales storage with your workload. To build AI features, refer to <InternalLink path="build-ai-applications-overview">Build AI Applications</InternalLink>. For performance work, refer to <InternalLink path="tune-and-troubleshoot-overview">Tune and Troubleshoot</InternalLink>, and for backups and replication, refer to <InternalLink path="disaster-recovery-overview">Disaster Recovery</InternalLink>.

## Monitor and optimize performance

<InternalLink path="aegis-overview">Cockroach Aegis</InternalLink> monitors your clusters and records findings and recommendations for you to review. To isolate and prioritize workloads on shared capacity, refer to <InternalLink path="virtualization-overview">Manage Workloads</InternalLink>.

<Note>
  **This feature is in <InternalLink version="releases" path="cockroachdb-feature-availability">private preview</InternalLink>** and is only available to enrolled organizations. To enroll your organization, contact your Cockroach Labs account team. This feature is subject to change.
</Note>

## Integrate and govern your ecosystem

<InternalLink path="secure-and-govern-overview">Secure and govern</InternalLink> access to your organization and clusters. <InternalLink path="integrate-overview">Integrate</InternalLink> with your ecosystem through changefeeds and Terraform. To understand what you pay for, refer to <InternalLink path="editions-and-add-ons">Editions and Add-Ons</InternalLink>.

## Next steps

* Migrate an existing database with the <InternalLink path="migration-assistant-overview">Migration Assistant</InternalLink>.
* Review your first <InternalLink path="aegis-overview">Aegis</InternalLink> findings and recommendations.
* Explore what each edition includes in <InternalLink path="editions-and-add-ons">Editions and Add-Ons</InternalLink>.

## Demo video

For a demonstration of how to get started with Cockroach Continuum, watch the following video:

<iframe width="560" height="315" src="https://www.youtube.com/embed/12A5C6njBMI" title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
