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

# Upgrade Collate | Official Documentation

> Upgrade the platform version with step-by-step instructions on migration, compatibility, and new feature adoption.

# Upgrade OpenMetadata

In this guide, you will find all the necessary information to safely upgrade your OpenMetadata instance.

## Prerequisites

Everytime that you plan on upgrading OpenMetadata to a newer version, make sure to go over all these steps:

### Backup your Metadata

Before upgrading your OpenMetadata version we strongly recommend backing up the metadata.

The source of truth is stored in the underlying database (MySQL and Postgres supported). During each version upgrade there
is a database migration process that needs to run. It will directly attack your database and update the shape of the
data to the newest OpenMetadata release.

It is important that we backup the data because if we face any unexpected issues during the upgrade process,
you will be able to get back to the previous version without any loss.

<Tip>
  You can learn more about how the migration process works [here](/deployment/upgrade/how-does-it-work).

  **During the upgrade, please note that the backup is only for safety and should not be used to restore data to a higher version**.
</Tip>

Since version 1.4.0, **OpenMetadata encourages using the builtin-tools for creating logical backups of the metadata**:

* [mysqldump](https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html) for MySQL
* [pg\_dump](https://www.postgresql.org/docs/current/app-pgdump.html) for Postgres

For PROD deployment we recommend users to rely on cloud services for their databases, be it [AWS RDS](https://docs.aws.amazon.com/rds/),
[Azure SQL](https://azure.microsoft.com/en-in/products/azure-sql/database) or [GCP Cloud SQL](https://cloud.google.com/sql/).

If you're a user of these services, you can leverage their backup capabilities directly:

* [Creating a DB snapshot in AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CreateSnapshot.html)
* [Backup and restore in Azure MySQL](https://learn.microsoft.com/en-us/azure/mysql/single-server/concepts-backup)
* [About GCP Cloud SQL backup](https://cloud.google.com/sql/docs/mysql/backup-recovery/backups)

You can refer to the following guide to get more details about the backup and restore:

<CardGroup cols={1}>
  <Card title="Backup Metadata" href="/deployment/backup-restore-metadata">
    Learn how to back up MySQL or Postgres data.
  </Card>
</CardGroup>

### Understanding the "Running" State in OpenMetadata

In OpenMetadata, the **"Running"** state indicates that the Collate server has received a response from Airflow confirming that a workflow is in progress. However, if Airflow unexpectedly stops or crashes before it can send a failure status update through the **Failure Callback**, OpenMetadata remains unaware of the workflow’s actual state. As a result, the workflow may appear to be stuck in **"Running"** even though it is no longer executing.

This situation can also occur during an OpenMetadata upgrade. If an ingestion pipeline was running at the time of the upgrade and the process caused Airflow to shut down, OpenMetadata would not receive any further updates from Airflow. Consequently, the pipeline status remains **"Running"** indefinitely.

<img src="https://mintcdn.com/collatedocs/wwtXdk45pV9o-D6V/public/images/deployment/upgrade/running-state-in-openmetadata.png?fit=max&auto=format&n=wwtXdk45pV9o-D6V&q=85&s=7a2665d61139f9023f674f6426471512" alt="Running State in OpenMetadata" width="2943" height="1413" data-path="public/images/deployment/upgrade/running-state-in-openmetadata.png" />

### Expected Steps to Resolve

To resolve this issue:

* Ensure that Airflow is restarted properly after an unexpected shutdown.
* Manually update the pipeline status if necessary.
* Check Airflow logs to verify if the DAG execution was interrupted.

#### Update `sort_buffer_size` (MySQL) or `work_mem` (Postgres)

Before running the migrations, it is important to update these parameters to ensure there are no runtime errors.
A safe value would be setting them to 20MB.

**If using MySQL**

You can update it via SQL (note that it will reset after the server restarts):

```sql theme={null}
SET GLOBAL sort_buffer_size = 20971520
```

To make the configuration persistent, you'd need to navigate to your MySQL Server install directory and update the
`my.ini` or `my.cnf` [files](https://dev.mysql.com/doc/refman/8.0/en/option-files.html) with `sort_buffer_size = 20971520`.

If using RDS, you will need to update your instance's [Parameter Group](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html)
to include the above change.

**If using Postgres**

You can update it via SQL (not that it will reset after the server restarts):

```sql theme={null}
SET work_mem = '20MB';
```

To make the configuration persistent, you'll need to update the `postgresql.conf` [file](https://www.postgresql.org/docs/9.3/config-setting.html)
with `work_mem = 20MB`.

If using RDS, you will need to update your instance's [Parameter Group](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html)
to include the above change.

Note that this value would depend on the size of your `query_entity` table. If you still see `Out of Sort Memory Error`s
during the migration after bumping this value, you can increase them further.

After the migration is finished, you can revert this changes.

## Backward Incompatible Changes

### 2.0.0

#### Great Expectations requires version 1.3 or later

The validation action now requires **Great Expectations 1.3 or later**. Collate 2.0 drops support for the 0.18 line, and
`openmetadata-ingestion[great-expectations]` now installs `great-expectations~=1.3`. The separate `great-expectations-1xx`
extra no longer exists.

If you adopted the interim GX 1.x module, rename it in your checkpoint. `metadata.great_expectations.action1xx` and
`OpenMetadataValidationAction1xx` have been removed:

```python theme={null}
# Before
from metadata.great_expectations.action1xx import OpenMetadataValidationAction1xx

# After
from metadata.great_expectations.action import OpenMetadataValidationAction
```

Checkpoints that already reference `metadata.great_expectations.action` and `OpenMetadataValidationAction` keep those
names. The surrounding checkpoint definition still has to move to the GX 1.x API. Pass actions as objects to
`Checkpoint(actions=[...])` rather than as an `action_list` of dictionaries, and call `checkpoint.run()` instead of
`great_expectations checkpoint run`. See the [Great Expectations](/connectors/ingestion/great-expectations) guide for
the updated configuration.

#### Great Expectations test results report counts instead of percentages

Test case results now report row counts only — `unexpected_count`, `missing_count`, `element_count`, and
`observed_value`. The percentage values (`unexpected_percent`, `unexpected_percent_total`, `missing_percent`, and
`success_rate`) are no longer sent, because Collate charts every result value of a test case on a single axis and
percentages plotted next to row counts were flattened into the baseline. Percentages remain derivable as
`unexpected_count / element_count`.

Existing test cases keep their historical percentage series until those data points age out of the chart window.

### 1.9.0

#### Strong validation of test case parameters

`parameterValues` name of a testCase will be strongly validated against the name of the `parameterDefinition` in the testDefinition.
If both parameter names do not match an error will be thrown on testCase creation

#### Multi-domain Support

**All entities now support multi-domains**. Their `domain` field is now renamed to `domains` and modelled as a list of domains instead of a single domain.

If you're using the API or the SDK, you will need to update your code to use the new `domains` field instead of `domain`.
We have also updated the `patch_domain` implementation, which now has a new signature to support the new `domains` field.

<Tip>
  While the schema and APIs are all updated, the Multi-domain support is not enabled by default.

  If you want to allow your assets to belong to multiple domains, you need to go to Settings > Preferences > Data Asset Rules and disable the `Multiple Domains are not allowed` rule.
</Tip>

## Upgrade your installation

Once your metadata is safe, follow the required upgrade instructions based on your environment:

<CardGroup cols={3}>
  <Card title="Upgrade a Kubernetes Deployment" href="/deployment/upgrade/kubernetes#upgrade-process">
    Upgrade your Kubernetes installation
  </Card>

  <Card title="Upgrade a Docker Deployment" href="/deployment/upgrade/docker#upgrade-process">
    Upgrade your Docker installation
  </Card>

  <Card title="Upgrade a Bare Metal Deployment" href="/deployment/upgrade/bare-metal#upgrade-process">
    Upgrade your Bare Metal installation
  </Card>
</CardGroup>

## Post-Upgrade Steps

### Reindex

#### With UI

Go to `Settings` -> `Applications` -> `Search Indexing`

<img src="https://mintcdn.com/collatedocs/wwtXdk45pV9o-D6V/public/images/deployment/upgrade/search-index-app.png?fit=max&auto=format&n=wwtXdk45pV9o-D6V&q=85&s=d9715e3197dbde7324f31f357227632c" alt="search-index-app" width="1417" height="393" data-path="public/images/deployment/upgrade/search-index-app.png" />

Before initiating the process by clicking `Run Now`, ensure that the `Recreate Indexes` option is enabled to allow rebuilding the indexes as needed.

In the configuration section, you can select the entities you want to reindex.

<img src="https://mintcdn.com/collatedocs/wwtXdk45pV9o-D6V/public/images/deployment/upgrade/reindex-ES.png?fit=max&auto=format&n=wwtXdk45pV9o-D6V&q=85&s=26b1ed98549ba2a19882787c9d51faa2" alt="create-project" width="3252" height="1500" data-path="public/images/deployment/upgrade/reindex-ES.png" />

Since this is required after the upgrade, we want to reindex `All` the entities.

### (Optional) Update your OpenMetadata Ingestion Client

If you are running the ingestion workflows **externally** or using a custom Airflow installation, you need to make sure that the Python Client you use is aligned
with the Collate server version.

For example, if you are upgrading the server to the version `x.y.z`, you will need to update your client with

```bash theme={null}
pip install openmetadata-ingestion[<plugin>]==x.y.z
```

#### With Kubernetes

Follow these steps to reindex using the CLI:

1. List the CronJobs
   Use the following command to check the available CronJobs:

```bash theme={null}
kubectl get cronjobs
```

Upon running this command you should see output similar to the following.

```CommandLine theme={null}
kubectl get cronjobs
NAME                    SCHEDULE      TIMEZONE   SUSPEND   ACTIVE   LAST SCHEDULE   AGE
cron-reindex            0/5 * * * *   <none>     True      0        <none>          31m
```

2. Create a Job from a CronJob
   Create a one-time job from an existing CronJob using the following command:

```bash theme={null}
kubectl create job --from=cronjob/cron-reindex <job_name>
```

<Tip> Replace `<job_name>` with the actual name of the job.</Tip>

Upon running this command you should see output similar to the following.

```CommandLine theme={null}
kubectl create job --from=cronjob/cron-reindex cron-reindex-one
job.batch/cron-reindex-one created
```

3. Check the Job Status
   Verify the status of the created job with:

```bash theme={null}
kubectl get jobs
```

Upon running this command you should see output similar to the following.

```CommandLine theme={null}
kubectl get jobs
NAME                       STATUS     COMPLETIONS   DURATION   AGE
cron-reindex-one           Complete   1/1           20s        109s
```

4. View logs
   To view the logs use the below command.

```bash theme={null}
kubectl logs job/<job_name>
```

<Tip> Replace `<job_name>` with the actual job name.</Tip>

The `plugin` parameter is a list of the sources that we want to ingest. An example would look like this `openmetadata-ingestion[mysql,snowflake,s3]~=1.13.1.0`.
You will find specific instructions for each connector [here](/connectors).

Moreover, if working with your own Airflow deployment - not the `openmetadata-ingestion` image - you will need to upgrade
as well the `openmetadata-managed-apis` version:

```bash theme={null}
pip install openmetadata-managed-apis==x.y.z
```

### Re Deploy Ingestion Pipelines

#### With UI

Go to `Settings` -> `{Services}` -> `{Databases}` -> `Pipelines`

<img src="https://mintcdn.com/collatedocs/wwtXdk45pV9o-D6V/public/images/deployment/upgrade/redeploy.png?fit=max&auto=format&n=wwtXdk45pV9o-D6V&q=85&s=c4310e1ec9ea38156740124e05f942ad" alt="redeploy" width="3200" height="1500" data-path="public/images/deployment/upgrade/redeploy.png" />

Select the pipelines you want to Re Deploy click `Re Deploy`.

#### With Kubernetes

Follow these steps to deploy pipelines using the CLI:

1. List the CronJobs
   Use the following command to check the available CronJobs:

```bash theme={null}
kubectl get cronjobs
```

Upon running this command you should see output similar to the following.

```commandline theme={null}
kubectl get cronjobs
NAME                    SCHEDULE      TIMEZONE   SUSPEND   ACTIVE   LAST SCHEDULE   AGE
cron-deploy-pipelines   0/5 * * * *   <none>     True      0        <none>          4m7s
```

2. Create a Job from a CronJob
   Create a one-time job from an existing CronJob using the following command:

```bash theme={null}
kubectl create job --from=cronjob/cron-reindex <job_name>
```

<Tip>
  Replace `<job_name>` with the actual name of the job.
</Tip>

Upon running this command you should see output similar to the following.

```commandline theme={null}
kubectl create job --from=cronjob/cron-deploy-pipelines cron-deploy-pipeline-one
job.batch/cron-deploy-pipeline-one created
```

3. Check the Job Status
   Verify the status of the created job with:

```bash theme={null}
kubectl get jobs
```

Upon running this command you should see output similar to the following.

```CommandLine theme={null}
kubectl get jobs
NAME                       STATUS     COMPLETIONS   DURATION   AGE
cron-deploy-pipeline-one   Complete   1/1           13s        3m35s
```

4. view logs
   To view the logs use the below command.

```bash theme={null}
kubectl logs job/<job_name>
```

<Tip> Replace `<job_name>` with the actual job name.</Tip>

If you are seeing broken DAGs, select all pipelines from all services and redeploy them.

## OpenMetadata Ops Script

### Overview

The `openmetadata-ops` script is designed to manage and migrate databases and search indexes, reindex existing data into Elastic Search or OpenSearch, and redeploy service pipelines.

### Usage

```bash theme={null}
sh openmetadata-ops.sh [-dhV] [COMMAND]
```

#### Commands

* analyze-tables

Migrates secrets from the database to the configured Secrets Manager. Note that this command does not support migrating between external Secrets Managers.

* changelog

Prints the change log of database migration.

* check-connection

Checks if a connection can be successfully obtained for the target database.

* deploy-pipelines

Deploys all the service pipelines.

* drop-create

Deletes any tables in the configured database and creates new tables based on the current version of OpenMetadata. This command also re-creates the search indexes.

* info

Shows the list of migrations applied and the pending migrations waiting to be applied on the target database.

* migrate

Migrates the OpenMetadata database schema and search index mappings.

* migrate-secrets

Migrates secrets from the database to the configured Secrets Manager. Note that this command does not support migrating between external Secrets Managers.

* reindex

Reindexes data into the search engine from the command line.

* repair

Repairs the DATABASE\_CHANGE\_LOG table, which is used to track all the migrations on the target database. This involves removing entries for the failed migrations and updating the checksum of migrations already applied on the target database.

* validate

Checks if all the migrations have been applied on the target database.

### Examples

Display Help To display the help message:

```bash theme={null}
sh openmetadata-ops.sh --help
```

### Migrate Database Schema

To migrate the database schema and search index mappings:

```bash theme={null}
sh openmetadata-ops.sh migrate
```

### Reindex Data

To reindex data into the search engine:

```bash theme={null}
sh openmetadata-ops.sh reindex
```
