Ubuntu 20.04 LTS

Cloud-hosted on-premises (on-prem) deployments are the most common type of deployment performed by customers who want to leverage Deepgram within their own infrastructure. Specific configurations vary, but the Cloud Service Providers that are typically used include Amazon Web Services (AWS), Azure, and Google Cloud Platform (GCP). This guide details steps to set up a deployment to the cloud on an AWS instance running Ubuntu Linux.

Prerequisites

Before you begin, you will need to ensure you followed the steps to configure your private cloud. AWS

Configuring Your Cloud Environment

Once you have successfully logged in to your instance, you must remove incompatible kernel drivers and install all of the necessary utilities to run GPU-accelerated containers in Docker.

Log in to the AWS EC2 instance

First, you must connect to the private cloud instance that you launched. For example, on AWS yu would:

  1. Open the terminal application for your computer.

  2. Connect to your AWS instance:

    ssh -i private-key.pem [email protected]_HOSTNAME
    

🚧

Be sure to replace the AWS_HOSTNAME placeholder value with the hostname for your instance. Also check that the path to your private-key.pem file is correct.

📘

For AWS Ubuntu instances, the default username is ubuntu, not user as their documentation would suggest.

  1. If you receive a message that indicates that the authenticity of the host can’t be established, type yes, then press the Enter key on your keyboard.

Remove Nouveau Drivers

The Nouveau kernel driver is incompatible with NVIDIA drivers, so you will need to disable it before installing any NVIDIA drivers.

  1. In your terminal, create a new configuration file:

    sudo touch /etc/modprobe.d/blacklist-nouveau.conf
    
  2. Using sudo and the text editor of your choice, add the following lines to the /etc/modprobe.d/blacklist-nouveau.conf configuration file:

    blacklist nouveau
    options nouveau modeset=0
    
  3. Regenerate the kernel with the new conf file added:

    sudo update-initramfs -u
    
  4. Reboot the instance:

    sudo reboot
    
  5. Once the instance has finished rebooting, reconnect via SSH and verify that Nouveau has been removed:

    lsmod | grep nouveau
    

    If you see no output, Nouveau was successfully removed.

Update Ubuntu’s Aptitude Package Manager

Update your AWS instance’s operating system package manager to get information on updated versions of packages or their dependencies:

sudo apt update

Install GNU Toolchain Components

Install the GNU Compiler Collection (gcc) and GNU Make (make) tool:

sudo apt install -y gcc make

Install Docker Engine

For ease of use, Deepgram provides its products in Docker containers, so you must make sure that you have installed the latest version of Docker Engine on all hosts.

  1. Install the Docker Engine. To learn how, read Install Using the Repository in Docker’s Install Docker Engine on Ubuntu documentation.

  2. Ensure that your AWS instance user (ubuntu) has sufficient permissions to communicate with the Docker daemon service that runs on your host operating system. To learn how to run Docker commands without elevated privileges, read Manage Docker as a Non-Root User in Docker’s optional Post-installation steps for Linux documentation.

Cache Docker Credentials

Once you are satisfied that Docker is installed and configured correctly, cache your credentials locally by logging in to Docker Hub using your Docker credentials. Once your credentials are cached locally, you should not have to log in again (until after you log out (docker logout)).

⚠️

We recommend that you use an access token when logging in to Docker Hub. Access tokens are used like passwords, but limit administrative access to your account. To learn how to create and use access tokens with Docker, read Docker’s documentation on Access Tokens.

Install Docker-Compose

Ensure that Docker Compose is installed.

  1. Download Docker Compose, and send the output to your /usr/local/bin directory:

    sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
    
  2. Modify the permissions for the bin file to allow your user to execute it:

    sudo chmod +x /usr/local/bin/docker-compose
    
  3. Test the installation:

    docker-compose --version
    

    You should expect the command output to return version 1.29.2.

Install NVIDIA Drivers

Install the latest available NVIDIA drivers for the g4dn instance which has the Tesla T4 GPU:

  1. Identify the latest driver for the GPU you are using and retrieve its download URL:

    1. Go to NVIDIA Official Drivers.
    2. Select the correct product and a corresponding CUDA toolkit 11 or greater.
    3. Select Search and check that the correct driver is displayed, then select Download.
    4. Right-click Agree & Download, then copy the link to save the download URL to your clipboard.
  2. Download the latest driver for your GPU:

    # Example: wget  https://us.download.nvidia.com/tesla/510.47.03/NVIDIA-Linux-x86_64-510.47.03.run
    wget LINK_TO_LATEST_NVIDIA_GPU_DRIVER
    

    ⚠️

    Be sure to replace the LINK_TO_LATEST_NVIDIA_GPU_DRIVER placeholder value with the URL to the latest driver for the GPU you are using.

  3. Change the permissions on the downloaded file to allow your user to execute it:

    # Example: chmod +x NVIDIA-Linux-x86_64-510.47.03.run
    chmod DOWNLOADED_FILE_NAME
    
  4. Decompress and execute the driver file to install it:

    # Example: sudo ./NVIDIA-Linux-x86_64-510.47.03.run --silent
    sudo DOWNLOADED_FILE_NAME --silent
    

    With the --silent install, you will see warnings that are similar to the following (they can be ignored):

    WARNING: Ignoring CC version mismatch:
    
    The kernel was built with gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34, but the current compiler version is cc (Ubuntu 9.4.0-1ubuntu1~20.04) 9.4.0.
    
    WARNING: nvidia-installer was forced to guess the X library path '/usr/lib64' and X module path '/usr/lib64/xorg/modules'; these paths were not queryable from the system.  If X fails to find the NVIDIA X driver module, please install the `pkg-config` utility and the X.Org SDK/development package for your distribution and reinstall the driver.
    
  5. Test that the NVIDIA drivers are installed:

    nvidia-smi
    

Install the NVIDIA-Docker Runtime

CUDA is NVIDIA's library for interacting with its GPU. CUDA support is made available to Docker containers using nvidia-docker, NVIDIA's custom runtime for Docker.

  1. Retrieve the NVIDIA runtime GPG key:

    distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \
    && curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
    && curl -s -L https://nvidia.github.io/libnvidia-container/$distribution/libnvidia-container.list | \
    sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
    sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
    
  2. Update the Ubuntu’s package manager to get the latest NVIDIA Docker components:

    sudo apt update
    
  3. Install the NVIDIA Docker runtime:

    sudo apt install -y nvidia-docker2
    
  4. Restart the Docker service:

    sudo systemctl restart docker
    
  5. Download the nvidia-docker container image for Ubuntu 20.04 LTS:

    docker pull nvidia/cuda:11.6.0-base-ubuntu20.04
    
  6. Run a test of the NVIDIA Docker runtime:

    docker run --runtime=nvidia --rm --gpus all nvidia/cuda:11.6.0-base-ubuntu20.04 nvidia-smi
    

Setting up the Deepgram Engine and API Containers

Now that your environment is set up, you can download and set up your Deepgram products. For ease of use, Deepgram provides its products in Docker containers.

Get Deepgram Products

  1. Download the latest Deepgram Engine image from Docker:

    docker pull deepgram/onprem-engine:3.37.2
    
  2. Download the latest Deepgram API image from Docker:

    docker pull deepgram/onprem-api:1.70.0
    

Import Your Docker Compose, Container Configuration, and Model Files

Before you can run your on-prem deployment, you must configure the required components. To do this, you will need to customize your configuration files and create a directory to house models that have been encrypted for use in your requests.

For your deployment, we provide models and configuration files to you via Amazon S3 buckets, so you can download directly to your AWS Ubuntu instance. If you don’t have customized configuration files, you can create configuration files using the examples included in Customize Your Configuration.

  1. Replace the default docker-compose.yml file in your root directory with the customized docker-compose.yml file provided by Deepgram:

    wget LINK_TO_YAML_FILE_PROVIDED_BY_DEEPGRAM
    

    ⚠️

    Be sure to replace the LINK_TO_YAML_FILE_PROVIDED_BY_DEEPGRAM placeholder value with the URL to the docker-compose.yml file provided by your Deepgram Account Representative.

  2. To house your configuration files, in your root directory, create a directory named config:

    mkdir config
    

    ℹ️

    The following example includes the parameter model=nova, which tells the API to use Deepgram's You can name this directory whatever you like, as long as you update the docker-compose.yml file accordingly.

  3. In your new directory, download each TOML configuration file using the links provided by Deepgram:

    cd config
    wget LINK_TO_TOML_CONFIGURATION_FILE_PROVIDED_BY_DEEPGRAM
    

    ⚠️

    Be sure to replace each LINK_TO_TOML_CONFIGURATION_FILE_PROVIDED_BY_DEEPGRAM placeholder value with the URL to the TOML configuration file provided by your Deepgram Account Representative.

  4. To house models that have been encrypted for use in your requests, in your root directory, create a directory named models:

    mkdir models
    

    ℹ️

    You can name this directory whatever you like, as long as you update the docker-compose.yml and engine.toml files accordingly.

  5. In your new directory, download each model using the links provided by Deepgram:

    cd models
    wget LINK_TO_MODEL_PROVIDED_BY_DEEPGRAM
    

    ⚠️

    Be sure to replace each LINK_TO_MODEL_PROVIDED_BY_DEEPGRAM placeholder value with the URL to the model provided by your Deepgram Account Representative.

Customize Your Configuration

Once your configuration files have been created in your AWS instance, you can update your configuration to customize it for your use case.

Configuration Files

⚠️

Your Deepgram Account Representative should provide you with download links to customized configuration files. Unless further customized, the example files included in this section are basic and should be used only to spin up a standard proof of concept (POC) deployment or to test your system.

docker-compose.yml

The Docker-compose configuration file makes it possible to spin up the containers with Docker using a single command. This makes spinning up a standard POC deployment quick and easy.

version: "3.7"

services:

  # The Deepgram API service.
  api:
    image: deepgram/onprem-api:1.70.0

    # The API port to the host machine. The container port (right-hand side)
    # must match the port that the API service is listening on (this can be
    # found in its configuration file).
    ports:
      - "8080:8080"

    volumes:
      # The API configuration file needs to be accessible; this should point to
      # the file on the host machine.
      - "/path/to/api.toml:/api.toml:ro"

    # Invoke the API server, passing it the path (inside the container) to its
    # configuration file.
    command: -v serve /api.toml

  # The Deepgram Engine service.
  engine:
    image: deepgram/onprem-engine:3.37.2

    # Change the default runtime.
    runtime: nvidia

    # The Engine configuration file and models need to be accessible; these paths
    # should point to files/directories on the host machine.
    #
    # You can combine the configuration file and models into a single volume mount.
    volumes:
      # The Engine configuration file needs to be accessible.
      - "/path/to/engine.toml:/engine.toml:ro"

      # The models will also need to be available. The in-container paths must
      # match the paths specified in the Engine configuration file.
      - "/path/to/models:/models:ro"

    # Invoke the Engine service, passing it the path (inside the container) to
    # its configuration file.
    command: -v serve /engine.toml
api.toml

The API configuration file determines how the API container built from the Docker image will be run. It includes important settings for exposing API endpoints and for enabling features and post-processing plugins for requests.

# Keep in mind that all paths are in-container paths and do not need to exist
# on the host machine.

# Configure license validation.
[license]
  # Your license key.
  key = "LICENSE_KEY"

# Configure how the API will listen for your requests
[server]
  # The base URL (prefix) for requests to the API.
  base_url = "/v1"
  # The IP address to listen on. Since this is likely running in a Docker
  # container, you will probably want to listen on all interfaces.
  host = "0.0.0.0"
  # The port to listen on
  port = 8080

  # How long to wait for a connection to a callback URL (in seconds)
  callback_conn_timeout = 1
  # How long to wait for a response to a callback URL (in seconds)
  callback_timeout = 10

  # How long to wait for a connection to a fetch URL (in seconds)
  fetch_conn_timeout = 1
  # How long to wait for a response to a fetch URL (in seconds)
  fetch_timeout = 60

[features]
  endpointing_on_by_default = true

# Configure the DNS resolver, overriding the system default.
# Typically not needed, although we document it here for completeness.
# [resolver]
#   # List of nameservers to use to resolve DNS queries.
#   nameservers = ["127.0.0.11 53 udp"]
#   # Override the TTL in the DNS response (in seconds).
#   max_ttl = 10

# Configure the backend pool of speech engines (generically referred to as
# "drivers" here). There is only one pool type: "standard". The API will
# load-balance among drivers in the pool; if a driver fails, the next one
# will be tried.
#
# Each driver URL will have its hostname resolved to an IP address. If a domain
# name resolves to multiple IP addresses, the API will load-balance across each
# IP address.
#
# This behavior is provided for convenience, and in a production environment
# other tools can be used, such as HAProxy.

# A new Speech Engine ("driver") in the "standard" pool.
[[driver_pool.standard]]
  # Host to connect to.
  # If you are using Docker Swarm, then you should replace "engine" with
  # "tasks.engine", which is the Docker Swarm method for resolving the IP
  # addresses of all "engine" services. If you rename the "engine" service
  # in the Docker Compose  file, then change it accordingly here.
  # Additionally, the port and prefix should match those defined in the
  # Engine configuration file.
  # NOTE: This must be HTTPS.
  url = "https://engine:8080/v2"

  # How long to wait for a connection to be established (in seconds).
  conn_timeout = 5
  # Once a connection is established, how many seconds to wait for a response.
  timeout = 400
  # Factor to increase the timeout by for each additional retry (for
  # exponential backoff).
  timeout_backoff = 1.2

  # If you fail to get a valid response (timeout or unexpected error), then
  # how many attempts should be made in total, including the initial attempt?
  # This is applied *per IP address* that the domain name in the URL resolves
  # to. If your domain resolves to multiple IPs, then "1" may be enough.
  retries_per_ip = 1

  # Before attempting a retry, sleep for this long (in seconds)
  retry_sleep = 2
  # Factor to increase the retry sleep by for each additional retry (for
  # exponential backoff).
  retry_backoff = 1.6

  # Maximum response to deserialize from Driver (in bytes)
  max_response_size = 1073741824

# Additional speech engines ("drivers") can be defined here, either in the
# standard pool using [[driver_pool.standard]]
engine.toml

The Deepgram Engine configuration file determines how the Deepgram Engine container built from the Docker image will be run. It includes important file paths and settings related to models that you will be using.

# All paths are in-container paths and do not need to exist on the host machine.

# Configure license validation.
[license]
  # Your license key
  key = "LICENSE_KEY"

# Configure the server to listen for requests from the API.
[server]
  # The base URL (prefix) for requests from the API.
  base_url = "/v1"
  # The IP address to listen on. Because this is likely running in a Docker
  # container, you will probably want to listen on all interfaces.
  host = "0.0.0.0"
  # The port to listen on
  port = 8080

# Speech models. You can place these in one or multiple directories.
[model_manager]
 search_paths = ["/models"]

# Enable supporting models
# To disable any of these features, just remove to comment out the respective
# feature section.
[features]
 [features.g2p]
  path = "/models/g2p.tar"
 [[features.diarizer]]
  weights = "/models/diarizer.v5.tar"
  type = "v2"
  [features.diarizer.features]
    max_frequency = 4000
    type = "mfcc"

Starting and Using Your Container

To make sure your Deepgram on-prem deployment is properly configured and running, you will want to start Docker, run the container, and make a sample request to Deepgram.

Start Docker

Now that you have your configuration files set up and in the correct location to be used by the container, use Docker-Compose to run the container:

docker-compose up -d

Test Your Deepgram Setup with a Sample Request

Test your environment and container setup with a local file:

curl -X POST --data-binary @[FILE_PATH] http://localhost:8080/v1/listen

Finally, test that you can view the model that was automatically loaded by Deepgram Engine. To do this, download the American English Harvard Sentences file from the Open Speech Repository and run it through the model:

wget https://www.voiptroubleshooter.com/open_speech/american/OSR_us_000_0019_8k.wav

curl -X POST --data-binary @OSR_us_000_0019_8k.wav "http://localhost:8080/v1/listen?model=general-dQw4w9WgXcQ&version=2021-08-18"; echo

Adding the License Proxy Server

For customers deploying Deepgram’s on-premises solution in production, Deepgram recommends the License Proxy Server, which is a caching proxy that communicates with the Deepgram-hosted license server to ensure uptime and simplify network security.

⚠️

If you aren't certain which products your contract includes or if you are interested in adding the License Proxy Server to your on-premises deployment, please consult a Deepgram Account Representative. To reach one, contact us!

There are many benefits of using the License Proxy Server:

  • For production deployments, the License Proxy Server allows your deployed on-premises services to continue to run even if your deployment loses connectivity to the Deepgram license server.

  • If network security requirements dictate that traffic over the web is allowed from only certain hosts, the License Proxy Server can be deployed statically while ASR services scale elastically.

  • If your customers will deploy Deepgram software as part of your on-premises solution and their traffic must flow back to your environment, you may deploy the License Proxy Server to relay traffic on to the Deepgram license server.

To see an architecture overview or learn about monitoring the License Proxy Server, see License Proxy Server.

Installing

Deepgram makes all of its products available through Docker Hub.

  1. Log in to your Docker Hub account from one of your servers.

  2. Run the following command:

    $ docker pull deepgram/onprem-license-proxy
    

Deploying

Before you can run your on-prem deployment with the License Proxy Server, you must configure the License Proxy Server. To do this, you will need to update your Docker Compose and container configuration files, then restart Docker.

Update Your Docker Compose File

Replace the default docker-compose.yml file in your root directory with the following:

version: "3.7"

services:

  # The Deepgram API service.
  api:
    image: deepgram/onprem-api:1.70.0

    # The API port to the host machine. The container port (right-hand side)
    # must match the port that the API service is listening on (this can be
    # found in its configuration file).
    ports:
      - "8080:8080"

    depends_on:
      - "license-proxy"

    volumes:
      # The API configuration file needs to be accessible; this should point to
      # the file on the host machine.
      - "/path/to/api.toml:/api.toml:ro"

    # Invoke the API server, passing it the path (inside the container) to its
    # configuration file.
    command: -v serve /api.toml

  # The Deepgram Engine service.
  engine:
    image: deepgram/onprem-engine:3.37.2

    # Change the default runtime.
    runtime: nvidia

    depends_on:
      - "license-proxy"

    # The Engine configuration file and models need to be accessible; these paths
    # should point to files/directories on the host machine.
    #
    # You can combine the configuration file and models into a single volume mount.
    volumes:
      # The Engine configuration file needs to be accessible.
      - "/path/to/engine.toml:/engine.toml:ro"

      # The models will also need to be available. The in-container paths must
      # match the paths specified in the Engine configuration file.
      - "/path/to/models:/models:ro"

    # Invoke the Engine service, passing it the path (inside the container) to
    # its configuration file.
    command: -v serve /engine.toml

  license-proxy:
    image: deepgram/onprem-license-proxy:1.2.1

    ports:
      - "8443:8443"
      - "8089:8089"

    command: -v serve --license-key "YOUR_ONPREM_LICENSE_KEY" --host 0.0.0.0 --port 8443 --status-port 8089

Update Your Container Configuration Files

In your api.toml and engine.toml files, add a line that specifies the URL to your deployed proxy immediately below your license key configuration:

[license]
key = "YOUR_LICENSE_KEY"
server_url = "https://license-proxy:8443"

Restart Docker

Restart Docker to begin directing licensing requests through the proxy:

docker-compose up -d

After restarting, test that an ASR request is processed as expected.

Deploying with Kubernetes

You can deploy a local Kubernetes cluster using Deepgram, which will provide an instance of Deepgram's API and Engine services running locally.

Before You Begin

In addition to the information listed in the Prerequisites section of this document, you'll need a few relevant Kubernetes deployment files. To get these, please contact Support.

  • Kubectl is the command line tool for interacting with a cluster. It can be installed using steps from Kubernetes's Download Kubernetes documentation.
  • Minkube is a tool for quickly creating a Kubernetes cluster. It can be installed using steps from minikube's minikube start documentation.

Terminology

If you are not overly familiar with Kubernetes, you should be aware of three main concepts:

  • Node: A physical computer or virtual machine.
  • Pod: A single container running on a node. One node can have many pods.
  • Cluster: A group of nodes and their pods.

Creating a Cluster

  1. Use minkube to create a cluster and validate that it is running:

    minikube start
    kubectl cluster-info
    
  2. Your Deepgram Account Representative should provide you with download links to customized configuration files. Create a configuration map using the engine.toml and api.toml files:

    kubectl create configmap engine --from-file=/path/to/engine.toml
    kubectl create configmap api --from-file=/path/to/api.toml
    

⚠️

You'll have to delete, then recreate, configuration maps each time a change is made to a .toml file.

  1. Use the customized YAML files provided by your Deepgram Account Representative to deploy Engine and API pods:

    kubectl apply -f engine.yaml
    kubectl apply -f api.yaml
    
  2. Check the status of each deployment:

    kubectl get pods
    

The status will show Running if successful. If this is any other value, you can further diagnose the issue with the command kubectl describe pods <pod-name> or kubectl logs <pod-name>. Running the apply command again will apply the changes you made to the deployment files.

Getting Model Files

Your Deepgram Account Representative should provide you with download links to at least one pre-trained AutoML (TM) AI model for testing purposes. Once the API and Engine pods are up and running, copy the provided model files into the directory in which you decided to place the models:

kubectl cp model.dg <engine-pod-name>:/models

The newly-added models will appear within a minute or so. To validate that they were added, you can query the /v1/models endpoint.

ℹ️

Note that this method is primarily for proof-of-concept. In production, Kubernetes lets you obtain these files automatically by creating Volumes. For more information, see Kubernetes' Volumes documentation.

Querying the API

To send a query:

  1. Get the IP address of the API:

    kubectl get pods -o wide
    
  2. Use the IP address in your queries. For example, to query the /models endpoint:

    curl http://<api-pod-ip-address>:<api-pod-port>/v1/models
    

Additional Notes

  • In a production environment, Kubernetes services are typically used to expose public endpoints and create load balancers. To learn more, read Kubernetes' Service documentation.
  • GPU/CPU utilization isn't a reliable metric for load balancing and scaling. We generally recommend a least-connected strategy and scaling based off the number of active requests.
  • We recommend running a single pod per node i.e. one instance of the API per machine, and one instance of the Engine per machine

What’s Next

Once you've deployed your Deepgram On-premises system, it's time to take a look at maintaining your deployment or best practices related to autoscaling your system based on demand.