Skip to main content

Guide to Deploy Collate Binaries in AWS

This guide will help you start using Collate Docker Images to run the Collate OpenMetadata Application in Kubernetes on Amazon EKS, connecting with Argo Workflows for running ingestion from the Collate OpenMetadata Application itself.

Architecture

Collate OpenMetadata requires four components:
  • Collate Server.
  • Database: Collate Server stores the metadata in a relational database. Collate supports MySQL or Postgres. Amazon RDS is recommended for production.
    • MySQL version 8.0.42 or greater.
    • Postgres version 17.6 or greater.
  • Search Engine: OpenSearch 3.4 (Amazon OpenSearch Service recommended). ElasticSearch is not supported in Collate BYOC because Collate AI relies on OpenSearch’s vector capabilities for Semantic and Hybrid Search.
  • Workflow Orchestration: Collate uses Argo Workflows as the orchestrator for ingestion pipelines.

Sizing Requirements

The following sections cover hardware, software, and per-component sizing recommendations for a production-ready deployment.

Hardware Requirements

A Kubernetes Cluster with at least 1 Master Node and 3 Worker Nodes is the required configuration. Each Worker Node should have at least:
  • 4 vCPUs.
  • 16 GiB Memory.
  • 128 GiB Storage capacity.

Software Requirements

  • Collate OpenMetadata supports Kubernetes Cluster version 1.24 or greater.
  • Collate Docker Images are available via private AWS Elastic Container Registry (ECR). The Collate Team will share credentials and steps to configure Kubernetes to pull Docker Images from AWS ECR.
  • For Argo Workflows, Collate OpenMetadata is currently compatible with application version 3.4+.

Database Sizing and Capacity

Collate recommends configuring Amazon RDS Postgres. For 100,000 Data Assets and 1,000 Users:
  • 8 vCPUs.
  • 64 GiB Memory.
  • 256 GiB Storage Capacity.
  • 3,500 IOPS storage.

Search Client Sizing and Capacity

For 100,000 Data Assets and 1,000 Users:
  • 8 vCPUs.
  • 64 GiB Memory.
  • 256 GiB Storage Capacity.
Use Amazon OpenSearch Service for production. Recommend multiple availability zones with a minimum of 2 nodes.

Argo Workflows Ingestion Runners

The recommended resources are 4 vCPUs and 16 GiB of Memory. Ingestion workloads can be scheduled on spot instances to reduce costs.

AWS Prerequisites

Complete the following AWS configuration steps before installing Argo Workflows and Collate.

Enable EKS OIDC Provider

EKS clusters use an OIDC provider to enable IAM Roles for Service Accounts (IRSA). Check if your cluster already has one:
If no output is returned, associate an OIDC provider:
Retrieve the OIDC issuer URL for use in subsequent steps:

Create an S3 Bucket for Argo Workflows Artifacts

Argo Workflows archives ingestion logs to S3:

Create IAM Roles for Service Accounts

Four IAM roles are required—one for each service account (Collate Server, Collate Ingestion, Argo Controller, Argo Server).

IAM Role for Argo Workflows Controller

Create the trust policy and IAM role for the Argo Workflows controller service account:

IAM Role for Argo Workflows Server

Create the trust policy and IAM role for the Argo Workflows server service account:

IAM Role for Collate Server Application

Create the trust policy and IAM role for the Collate Server application service account:

IAM Role for Collate Ingestion

Create the trust policy and IAM role for the Collate Ingestion service account:

Setup AWS ECR

Collate will provide the credentials to pull Docker Images from a private registry located in AWS ECR.

Install AWS CLI

Follow the AWS CLI installation guide to install AWS CLI on your machine.

Configure AWS Credentials

Configure the AWS CLI with the credentials for the ECR profile:
The command will prompt for credentials. The Collate team will securely share these via a 1Password link. Confirm the credentials are correctly set:

Kubernetes Docker Registry Secrets for AWS ECR

Create a Kubernetes secret so the cluster can pull images from the private ECR registry:
Note: Replace <<NAMESPACE_NAME>> with the namespace where you want to deploy Collate OpenMetadata Server. If the namespace does not exist yet, create it first with kubectl create namespace <<NAMESPACE_NAME>>.
ECR authentication tokens are short-lived, so plan to refresh them periodically.
Important: AWS ECR Token RefreshECR tokens expire after 12 hours. If a pod is rescheduled to another node after 12 hours, you will get an ImagePullBackOff error. Delete the secret and recreate it using the docker-registry secret creation command.

Install Argo Workflows

Install Argo Workflows using its Helm chart, then configure it to work with Collate ingestion.

Add Helm Repository

Add the community Argo Workflows Helm repository:

Create the Argo Namespace

Create a dedicated namespace for Argo Workflows:

Kubernetes Secret for Argo Workflows DB Credentials

Create a Kubernetes secret with the database credentials Argo Workflows will use:

Create Custom Helm Values for Argo Workflows

Create a file named argo-workflows.values.yml:
For further customisation, refer to the community Helm chart values.

Deploy Argo Workflows

Collate targets application version 3.7.1 using Helm chart version 0.45.23 (Artifact Hub):

Optional: Enable Prometheus Metrics

If you have a Prometheus Application running on your cluster, enable metrics using:
Refer to the official Argo Workflows documentation for further configuration.

Install Collate

With Argo Workflows in place, install the Collate OpenMetadata application into the cluster.

Create the Collate Namespace

Create a namespace to host the Collate deployment:

Kubernetes Service Account for Ingestion

Create a dedicated Kubernetes service account that Collate uses to trigger ingestion workflows:

Annotate Service Account with IRSA Role

Annotate the service account so it assumes the IAM role created earlier:

Create Long-Lived API Token for the ServiceAccount

Create a long-lived token secret for the service account:

Configure Kubernetes Roles for the Service Account

Create a file om-argo-role.yml:
Apply the role and create the role binding:

Install the Collate Helm Chart

Create Kubernetes Secrets for the database connection:
Add the Helm chart repository:
Note: If you plan to use the DeltaLake connector, the ARGO_INGESTION_IMAGE value should be: 118146679784.dkr.ecr.eu-west-1.amazonaws.com/collate-customers-ingestion-eu-west-1:om-1.13.0-cl-1.13.0
Create a file openmetadata.values.yml:
Install the Collate OpenMetadata Application:

Optional: Enable Prometheus Metrics

Collate Application exposes Prometheus metrics on port 8586. Enable the integration using:

Post Installation/Upgrade Steps

Complete the following step after installing or upgrading Collate.

Configure ReIndexing

After installation or upgrade, configure ReIndexing from the Collate UI. For detailed steps, refer to the Reindexing Search guide.

Environment Variables for Collate OpenMetadata Argo

Appendix: List of AWS ECR Public IPs

If your company policy blocks access to external resources, ensure the public IPs of AWS ECR are reachable from your cluster.

Using Terraform

Query the AWS IP ranges for the ECR region using Terraform:

Using curl and jq

Query the AWS IP ranges for the ECR region using curl and jq: