Skip to main content

โ˜๏ธ Deployment

Alpha Status

Chroma Server is currently in Alpha. We are working hard to move Chroma from an in-memory single-process oriented library to a distributed production-grade DB!

  • Alpha <- Currently
  • Technical Preview - ~1 month away, powered by a completely new backend
  • Full production
  • GA - General Availability

โ˜๏ธ Deployment

You can also deploy Chroma on a long-running server, and connect to it remotely.

There are many possible configurations, but for convenience we have provided a very simple AWS CloudFormation template to experiment with deploying Chroma to EC2 on AWS.

Hosted Chromaโ€‹

We want to offer hosted Chroma, and we need your help.

Fill out the survey to jump the wait-list. Coming Q3 2023.

๐Ÿ“ 30 second survey

Dockerโ€‹

You can run a Chroma server in a Docker container.

You can get the Chroma Docker image from Docker Hub, or from the Chroma GitHub Container Registry

docker pull chromadb/chroma
docker run -p 8000:8000 chromadb/chroma

You can also build the Docker image yourself from the Dockerfile in the Chroma GitHub repository

git clone git@github.com:chroma-core/chroma.git
cd chroma
docker-compose up -d --build

The Chroma client can then be configured to connect to the server running in the Docker container.

import chromadb

chroma_client = chromadb.HttpClient(host='localhost', port=8000)

Authentication with Dockerโ€‹

By default, the Docker image will run with no authentication. Follow the Authentication section of the Usage Guide to configure authentication in the Docker container.

You can also create a .chroma_env file setting the required environment variables and pass it to the Docker container with the --env-file flag when running the container.

docker run --env-file ./.chroma_env -p 8000:8000 chromadb/chroma

Cloud Deploymentsโ€‹

Below are instructions for deploying Chroma with Terraform on the following public cloud providers:

Prerequisitesโ€‹

Generate a key:

ssh-keygen -t RSA -b 4096 -C "Chroma SSH Keypair" -N "" -f ./chroma_id_rsa && \
chmod 400 ./chroma_id_rsa

The key pair will allow you to connect to your Chroma instance via SSH (applicable only for AWS, GCP and DO deployments). In addition, the keypair is used for post provisioning steps such as formatting the Chroma data volume ( applicable only for AWS deployments).

AWSโ€‹

AWS Configuration variables

Parameter NameDescriptionDefault Value
chroma_releaseThe chroma release to deploy0.4.20
regionAWS Regionus-west-1
instance_typeAWS EC2 Instance Typet3.medium
public_accessEnable public ingress on port 8000true
enable_authEnable authenticationtrue
auth_typeAuthentication typetoken
import_keypairWhether to import the keypair in AWS. Set this to false if your keypair is already available in AWS.true
keypair_nameThe name of the keypair to importchroma_keypair
ssh_public_keySSH Public Key./chroma_id_rsa.pub
ssh_private_keySSH Private Key./chroma_id_rsa
chroma_instance_volume_sizeThe size of the instance volume - the root volume30
chroma_data_volume_sizeEBS Volume Size of the attached data volume where your chroma data is stored20
chroma_data_volume_snapshot_before_destroyTake a snapshot of the chroma data volume before destroying itfalse
chroma_data_restore_from_snapshot_idRestore the chroma data volume from a snapshotnull
chroma_portThe port that chroma listens on8000
source_rangesList of CIDR ranges to allow through the firewall["0.0.0.0/0"]
mgmt_source_rangesList of CIDR ranges to allow for management of the Chroma instance. This is used for SSH incoming traffic filtering["0.0.0.0/0"]

Note: All of the above variables can be exported via environment variables (TF_<variable_name>=<var_value>) or set in a .tfvars file.

Set up your Terraform variables and deploy your instance:

export TF_VAR_AWS_ACCESS_KEY=<AWS_ACCESS_KEY>
export TF_VAR_AWS_SECRET_ACCESS_KEY=<AWS_SECRET_ACCESS_KEY>
export TF_ssh_public_key="./chroma_id_rsa.pub"
export TF_ssh_private_key="./chroma_id_rsa"
export TF_VAR_chroma_release=0.4.20
export TF_VAR_region="us-west-1"
export TF_VAR_public_access="true"
export TF_VAR_enable_auth="true"
export TF_VAR_auth_type="token"
export TF_VAR_chroma_data_volume_snapshot_before_destroy="true"
terraform apply -auto-approve

Verify that your instance is up and running:

export instance_public_ip=$(terraform output instance_public_ip | sed 's/"//g')
curl -v http://$instance_public_ip:8000/api/v1/heartbeat

Note: Depending on your OS the sed command might not work. In that case, you can manually copy the public IP from the Terraform output.

To get the auth token generated during the setup:

terraform output chroma_auth_token

For more details check our Terraform AWS deployment blueprint

GCP (Google Cloud Platform)โ€‹

You will need to install gcloud CLI and authenticate with your GCP account:

gcloud auth application-default login

GCP Configuration parameters:

Parameter NameDescriptionDefault Value
project_idThe project id to deploy toN/A
chroma_releaseThe chroma release to deploy0.4.20
zoneN/Aus-central1-a
imageThe image to use for the instancedebian-cloud/debian-11
vm_userThe user to use for connecting to the instance. This is usually the default image userdebian
machine_typeN/Ae2-small
public_accessEnable public ingress on port 8000true
enable_authEnable authenticationtrue
auth_typeAuthentication typetoken
ssh_public_keySSH Public Key./chroma_id_rsa.pub
ssh_private_keySSH Private Key./chroma_id_rsa
chroma_instance_volume_sizeThe size of the instance volume - the root volume30
chroma_data_volume_sizeVolume Size of the attached data volume where your chroma data is stored20
chroma_data_volume_device_nameThe device name of the chroma data volumechroma-disk-0
prevent_chroma_data_volume_deletePrevent the chroma data volume from being deleted when the instance is terminatedfalse
disk_typeThe type of disk to use for the instance. Can be either pd-standard or pd-ssdpd-ssd
labelsLabels to apply to all resources in this example{environment: 'dev'}
chroma_portThe port that chroma listens on8000
source_rangesList of CIDR ranges to allow through the firewall["0.0.0.0/0"]

Note: All of the above variables can be exported via environment variables (TF_<variable_name>=<var_value>) or set in a .tfvars file.

Set up your Terraform variables and deploy your instance:

export TF_VAR_project_id=<your_project_id>
export TF_ssh_public_key="./chroma_id_rsa.pub"
export TF_ssh_private_key="./chroma_id_rsa"
export TF_VAR_chroma_release="0.4.20"
export TF_VAR_zone="us-central1-a"
export TF_VAR_public_access="true"
export TF_VAR_enable_auth="true"
export TF_VAR_auth_type="token"
terraform apply -auto-approve

Verify that your instance is up and running:

export instance_public_ip=$(terraform output instance_public_ip | sed 's/"//g')
curl -v http://$instance_public_ip:8000/api/v1/heartbeat

Note: Depending on your OS the sed command might not work. In that case, you can manually copy the public IP from the Terraform output.

To get the auth token generated during the setup:

terraform output chroma_auth_token

For more details check our Terraform GCP deployment blueprint

Digital Oceanโ€‹

Digital Ocean Configuration parameters:

Parameter NameDescriptionDefault Value
instance_imageThe image to use for the instanceubuntu-22-04-x64
chroma_releaseThe chroma release to deploy0.4.20
regionDO Regionnyc2
instance_typeDroplet sizes-2vcpu-4gb
public_accessEnable public ingress on port 8000true
enable_authEnable authenticationtrue
auth_typeAuthentication typetoken
ssh_public_keySSH Public Key./chroma-do.pub
ssh_private_keySSH Private Key./chroma-do
chroma_data_volume_sizeEBS Volume Size of the attached data volume where your chroma data is stored20
chroma_portThe port that chroma listens on8000
source_rangesList of CIDR ranges to allow through the firewall["0.0.0.0/0", "::/0"]
mgmt_source_rangesList of CIDR ranges to allow for management of the Chroma instance. This is used for SSH incoming traffic filtering["0.0.0.0/0", "::/0"]

Note: All of the above variables can be exported via environment variables (TF_<variable_name>=<var_value>) or set in a .tfvars file.

Set up your Terraform variables and deploy your instance:

export TF_VAR_do_token=<DIGITALOCEAN_TOKEN>
export TF_ssh_public_key="./chroma_id_rsa.pub"
export TF_ssh_private_key="./chroma_id_rsa"
export TF_VAR_chroma_release="0.4.20"
export TF_VAR_region="ams2"
export TF_VAR_public_access="true"
export TF_VAR_enable_auth="true"
export TF_VAR_auth_type="token"
terraform apply -auto-approve

Verify that your instance is up and running:

export instance_public_ip=$(terraform output instance_public_ip | sed 's/"//g')
curl -v http://$instance_public_ip:8000/api/v1/heartbeat

Note: Depending on your OS the sed command might not work. In that case, you can manually copy the public IP from the Terraform output.

To get the auth token generated during the setup:

terraform output chroma_auth_token

For more details check our Terraform Digital Ocean deployment blueprint

Need help or have questions?โ€‹

Reach out to us on Discord