> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-home-button.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Various pipe statuses and their meanings

# Lifecycle of a MySQL ClickPipe

This is a document on the various phases of a MySQL ClickPipe, the different statuses it can have, and what they mean. Note that this applies to MariaDB as well.

<h2 id="provisioning">
  Provisioning
</h2>

When you click on the Create ClickPipe button, the ClickPipe is created in a `Provisioning` state. The provisioning process is where we spin up the underlying infrastructure to run ClickPipes for the service, along with registering some initial metadata for the pipe. Since compute for ClickPipes within a service is shared, your second ClickPipe will be created much faster than the first one -- as the infrastructure is already in place.

<h2 id="setup">
  Setup
</h2>

After a pipe is provisioned, it enters the `Setup` state. This state is where we create the destination ClickHouse tables. We also obtain and record the table definitions of your source tables here.

<h2 id="snapshot">
  Snapshot
</h2>

Once setup is complete, we enter the `Snapshot` state (unless it's a CDC-only pipe, which would transition to `Running`). `Snapshot`, `Initial Snapshot` and `Initial Load` (more common) are interchangeable terms. In this state, we take a snapshot of the source MySQL tables and load them into ClickHouse. Retention setting for binary logs should account for initial load time. For more information on initial load, see the [parallel initial load documentation](/integrations/clickpipes/mysql/parallel-initial-load). The pipe will also enter the `Snapshot` state when a resync is triggered or when new tables are added to an existing pipe.

<h2 id="running">
  Running
</h2>

Once the initial load is complete, the pipe enters the `Running` state (unless it's a snapshot-only pipe, which would transition to `Completed`). This is where the pipe begins `Change-Data Capture`. In this state, we start reading binary logs from the source database and sync the data to ClickHouse in batches. For information on controlling CDC, see [the doc on controlling CDC](/integrations/clickpipes/mysql/controlling-sync).

<h2 id="paused">
  Paused
</h2>

Once the pipe is in the `Running` state, you can pause it. This will stop the CDC process and the pipe will enter the `Paused` state. In this state, no new data is pulled from the source database, but the existing data in ClickHouse remains intact. You can resume the pipe from this state.

<h2 id="pausing">
  Pausing
</h2>

<Note>
  This state is coming soon. If you're using our [OpenAPI](/products/cloud/features/admin-features/api/openapi), consider adding support for it now to ensure your integration continues working when it's released.
</Note>

When you click on the Pause button, the pipe enters the `Pausing` state. This is a transient state where we're in the process of stopping the CDC process. Once the CDC process is fully stopped, the pipe will enter the `Paused` state.

<h2 id="modifying">
  Modifying
</h2>

<Note>
  This state is coming soon. If you're using our [OpenAPI](/products/cloud/features/admin-features/api/openapi), consider adding support for it now to ensure your integration continues working when it's released.
</Note>

Currently, this indicates the pipe is in the process of removing tables.

<h2 id="resync">
  Resync
</h2>

<Note>
  This state is coming soon. If you're using our [OpenAPI](/products/cloud/features/admin-features/api/openapi), consider adding support for it now to ensure your integration continues working when it's released.
</Note>

This state indicates the pipe is in the phase of resync where it is performing an atomic swap of the \_resync tables with the original tables. More information on resync can be found in the [resync documentation](/integrations/clickpipes/mysql/resync).

<h2 id="completed">
  Completed
</h2>

This state applies to snapshot-only pipes and indicates that the snapshot has been completed and there's no more work to do.

<h2 id="failed">
  Failed
</h2>

If there is an irrecoverable error in the pipe, it will enter the `Failed` state. You can reach out to support or [resync](/integrations/clickpipes/mysql/resync) your pipe to recover from this state.
