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

# Feature Availability

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

Some features are made available in phases prior to being launched in general availability (GA). This page defines the different levels of product feature availability.

This page outlines *feature availability*, which is separate from Cockroach Labs' <InternalLink version="releases" path="release-support-policy">Release Support Policy</InternalLink> or <InternalLink version="stable" path="api-support-policy">API Support Policy</InternalLink>.

## Feature availability phases

| Phase                     | Definition                                                                                                                                                                                     | Accessibility                                          |
| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ |
| Private preview           | Feature is available to select customers and may not be publicly documented.                                                                                                                   | Invite-only                                            |
| Limited access            | Feature is publicly documented but not yet available widely. This feature may have limitations and/or capabilities that may change or be added based on feedback, before being promoted to GA. | Opt-in <br />Contact your Cockroach Labs account team. |
| Preview                   | Feature is publicly available and documented. This feature may have limitations and/or capabilities that may change or be added based on feedback, before being promoted to GA.                | Public                                                 |
| General availability (GA) | Feature is publicly available and documented.                                                                                                                                                  | Public                                                 |

Any feature made available in a phase prior to GA is provided without any warranties of any kind. Such features are not subject to any technical support or uptime availability commitments unless Cockroach Labs explicitly states otherwise in writing.

For the availability phase of each Continuum feature, refer to the [feature reference](/docs/continuum/feature-reference).
