Try Live Demo

In this blog post, we’re going to tell how to setup a Scalable Ant Media Server Cluster in Alibaba Cloud. This solution that really cut the costs for projects that need scalable Ultra-Low latency streaming. Let me explain how. Assume that your project needs scalable ultra low latency streaming. There are a few options to start.

  1. Implement your own ultra low latency solution.
  2. Use one of the Platform as a Service (PaaS) solutions.
  3. Use a scalable software solution that you can run on your own cloud. You’ll just use your own Infrastructure as a Service (IaaS) to create your streaming service.

Actually, first option is something like inventing the wheel again. It likely takes long time according to your expertise. Second option is ok if you have good amount of budget. The third option seems best in terms of low cost and full control. It just requires some experience in cloud.

Infrastructure as a Service is already rising

When you have your own scalable ultra low latency streaming service, then you can take advantage of several things. For instance, you likely have an agreement with your Infrastructure as a Service (IaaS) provider(Alibaba, AWS, Azure,…) about some discounts. So that you can use these discounts for your streaming service as well. Another option is that you will have the full control to scaling your streamers and viewers. In other words, Infrastructure as a Service is already rising. Let it rise for you.

Let’s get started how to start your own scalable ultra low latency streaming service on Alibaba Cloud.

Getting Started for Ultra Low Latency Streaming Service on Alibaba Cloud

Here is the system outline

ams cluster schema

Let’s start with brief definitions

  • MongoDB Database Server: Ant Media Server uses MongoDB in clustering. Streams information are saved to MongoDB so that edge instances can learn any stream’s origin node.
  • Load Balancer: LB is the entrance point for the publishers and players. Load Balancer accepts the requests from publishers or players and forwards the requests to the available node in the cluster.
  • Origin Auto-Scalable Group: Nodes(Instances) in the origin group accepts the publish requests and ingest the incoming WebRTC stream. When an origin instance accepts a WebRTC stream, it saves the related information to the MongoDB Database Server. There may be one node or multiple node in origin group. It may even be manually or auto scalable. In our deployment, it’s auto-scalable in Alibaba.
  • Edge Auto-Scalable Group: Node(Instances) in the edge group accepts the play requests. Then it learns from MongoDB which origin node has the related stream. After that it gets the stream from related origin node and sends the stream to the player.

Then continue with installing MongoDB Server

Step 1: Install MongoDB Server

The procedure below shows how to start an instance in Alibaba Elastic Compute Service as well. In other words, if you have no experience with Alibaba, you can even install MongoDB Server as follows. If you know how to start an instance in Alibaba, just skip to “Install MongoDB to Your Instance”

  • Signup to Alibaba Cloud if you don’t have an account yet. Login to Alibaba Cloud Console. Then click Elastic Compute Service as shown in the image below.

1_alibaba_cloud_home_console

  • Click Create Instance.

2 alibaba cloud create instance

  • Select Billing model and Instance type according to your use case.

3 alibaba cloud create instance step1

  • Choose Instance Type like Enhanced General Purpose Type g6e series.
    • You may optionally choose a bigger instance according to your streaming load.

Search for Ubuntu and Select Ubuntu 18.04 and Click Next button

4 alibaba cloud create instance step1

  • Create a VPC and security group

5 alibaba cloud create instance step2

You need to have VPC and security groups for creating MongoDB instance. If you already have VPC and Security Group options, you can skip Create VPC and Create Security Group parts.

Create VPC

  • Go to Elastic Compute Service / Network & Security / Virtual Private Cloud section and click Create VPC button.

6 alibaba cloud create instance vpc create step2

  • Fill Name and IPv4 CIDR Block parameters.

7 alibaba cloud create instance vpc create step2

  • You need to have 2 vSwitch for loadbalancing mechanism. Fill vSwitch Name, Zone and IPv4 CIDR Block parameters.

8 alibaba cloud create instance vpc create step2

Create Security Group

  • Go to Elastic Compute Service / Network & Security / Security Groups section and click Create Security Group button.

10 alibaba cloud create instance mongodb security group step2

  • Add 22 and 27017 TCP ports as follows in the image.

11 alibaba cloud create instance mongodb security group dashboard step2

  • Go back to creating instance steps.

12 alibaba cloud create instance mongodb system configuration step3

  • You need to create an SSH key. If you already created an SSH key, you can skip SSH key step.

13 alibaba cloud create instance create ssh step3

  • After creating the SSH key, just click “Create Instance” button

15 alibaba cloud create instance step5

  • Login your Instance according to Instance public IP address with a created SSH key.
  • Right now, you should connect to your instance. To Connect your instance, open a terminal and run a command something like. Please change {YOUR_KEY_FILE} and {INSTANCE_PUBLIC_IP} with your own credentials.

ssh -i {YOUR_KEY_FILE} root@{INSTANCE_PUBLIC_IP}

Install MongoDB to Your Instance

  • After you get connected, run the following commands in order to install MongoDB to your instance
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu `lsb_release -cs`/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list
sudo apt-get update
sudo apt-get install -y mongodb-org
  • Open /etc/mongod.conf file with an editor like nano and change bind_ip value to 0.0.0.0 to let MongoDB accept connections in all interfaces and save it.

sudo nano /etc/mongod.conf

16 alibaba cloud mongodb installation configurations

Press Ctrl + X to save the file.

Restart mongod and enable service.

sudo systemctl restart mongod
sudo systemctl enable mongod.service

MongoDB installation is complete, just save your MongoDB instance’s local address somewhere. We will use it in later.

Step 2: Install Scalable Origin Group

  • Click “Deployment & Elasticity > Auto Scaling” and Click “Create” button.

1 alibaba cloud create origin scaling group step1

You need to have a Launch template for creating Instances. If you already have the Launch template, you can skip Create a Launch Template parts.

Create a Launch Template

  • Click “Deployment & Elasticity > Launch Template” and Click “Create Template” button.

2 alibaba cloud create launch template step1

  • Select Ant Media Marketplace image, VPC network and click Assign Public IPv4 Address as follows.

3 alibaba cloud create launch template configurations step1

  • Select Ant Media Server Enterprise Edition as follows.

4 alibaba cloud create launch template select marketplace step1

  • Select/create Security Group as follows

5 alibaba cloud create launch template security group step1

  • Select VPC Network and click Next Advanced Configurations

6 alibaba cloud create launch template configurations step1

  • Add SSH key pair, Instance name and User Data details as follows. Right now, copy the text below, change the “{MongoIP}” field with the MongoDB IP Address in the script and paste it to the “User data”.
#!/bin/bash
cd /usr/local/antmedia
./change_server_mode.sh cluster {MongoIP}

After that Click “Confirm Complete Configuration”

7 alibaba cloud create launch template configurations step2

  • Take a look at Launch Template and click Confirm Template Configuration

8 alibaba cloud create launch template configurations step3

  • Go back to Create Scaling Group steps and use created Launch Template.

9 alibaba cloud create origin scaling group step1

  • Set Minimum Number of Instances, Maximum Number of Instances and Expected Number of Instances and Default Cooldown Time (Seconds) as follows

10 alibaba cloud create origin scaling group step1

  • Set VPC, Select vSwitch and Create Associated ALB Server Group

11 alibaba cloud create origin scaling group step1

  • Set Server Group Name and VPC fields as follows

12 alibaba cloud create origin scaling group step1

  • Go back to Create Scaling Group steps and select created Server Group as follows

13 alibaba cloud create origin scaling group step1

  • Click Enable the scaling group text as follows

14 alibaba cloud create origin scaling group step1

  • Enable Autoscaling as follows

15 alibaba cloud create origin scaling group

Step 3: Install Scalable Edge Group

Installing scalable edge group almost same as scalable origin group. Please go to Step 2: Install Scalable Origin Group and do the same things one more time. Just don’t forget to change some namings(for instance give group name as Edge Group) and configure scaling policy and instance type according to your needs. If you have any question or problem with this, please let us know through contact@antmedia.io

Step 4: Install Load Balancer

  • Click the “Server Load Balancer > ALB > Instances” on Alibaba Products and Services and Click the “Create ALB Instance” button as follows

16 alibaba cloud create load balancer

  • Fill the fields as follows

17 alibaba cloud create load balancer

  • You need to add listeners to load balancers as follows

18 alibaba cloud load balancer https listener step1

  • You need to have SSL. But no need to buy certificate. Just click Buy Certificate text.

19 alibaba cloud load balancer https listener step2

  • After click Buy Certificate button, just click Upload Certificate button and upload your custom certificate. You can get free let’s encrypt SSL with https://zerossl.com service.

22 alibaba cloud load balancer listener ssl setup

  • Just add created Server group

20 alibaba cloud load balancer https listener step3

  • Add listeners ports to origin/edge groups

21 alibaba cloud load balancer listeners setup

    • Right now Everything is ok. Just let me give a brief information about the difference between publish and play. In our load balancer configuration, we forward HTTP(80) and HTTPS(443) to Origin Group and we forward HTTP(5080) and HTTPS(5443) to Edge Group. It means that we should connect 80 or 443 ports to publish and connect 5080 or 5443 to play streams. Otherwise, play requests goes to origin group and publish request goes to edge group and it’s likely create some performance issues according to your configurations.

Logging to Web Panel

You can login to web panel via the https://your-domain-name/. After these steps, you just need to add your domain address CNAME to your Load Balancer URL.  You just need to register a first user!

Test Fly

  • For publishing please visit the https://your-domain-name/WebRTCAppEE/ and click “Start Publishing” button. The default stream id is “stream1”
  • For playing please visit the https://your-domain-name:5443/WebRTCAppEE/ and click “Start Playing” button. The default stream will be played
  • As you figure out, we connect default https port(443) for publishing and 5443 port for playing. Because we configure load balancer to forward default port(443) to origin group and 5443 to edge group.

It’s a little complex to make the installation. If you’re stuck in somewhere, please reach out to us to make the installation together.

If we receive requests from Alibaba users, we’re happy to provide some easy and quick methods to make the installation by using Resource Orchestration Service

 

Categories: Tutorial

Selim Emre Toy

Highly motivated full-stack developer with 6 years of experience especially in Java and Angular. Constantly learning, passionate about solving complex problems. Proficient in various programming languages and technologies. Enjoys finding creative solutions to challenges.

chatsimple