×
Community Blog Accelerating Access to Global Servers from China Using Global Accelerator

Accelerating Access to Global Servers from China Using Global Accelerator

In this article, we will show you how to use Alibaba Cloud Global Accelerator to speed up access to overseas servers from China.

By Victor Mak, Solutions Architect

In some cases, a customer may have some limitations to migrate all of their resources to a specific cloud provider. For example, if the customer has deployed a hybrid cloud environment, the customer may host certain core services on his or her on-premises data center. It could also be the case that customers may have subscribed services from multiple service providers, such as having a multi cloud environment hosted in Alibaba Cloud, AWS, and Azure.

If the connection is across different regions, network latency and interruptions may occur. In this case, Alibaba Cloud provides the Global Accelerator (GA) service and reverse proxy to help customers improve the stability and reliability of traffic flow between China and overseas.

What Is Global Accelerator?

Global Accelerator is a network acceleration product built based on Alibaba Cloud's network. Global Accelerator uses access points globally to speed up Internet access for users to services hosted in different regions. It reduces the impact of network issues like latency, jitters, and packet loss on service, and provides a superior experience for global service users. The benefits using GA are:

  1. Elastic Binding: You can bind a backend service to a Global Accelerator instance to accelerate the Internet access, and unbind that backend service whenever the Internet acceleration is no longer required.
  2. Configurable Network Capabilities: You can adjust the bandwidth of a Global Accelerator instances based on your business needs. Changes take effect in real time.

In this article, we will show you how to use Alibaba Cloud Global Accelerator to speed up access to overseas servers from China. We will be connecting a service hosted on an AWS server in Singapore to an Alibaba Cloud server in Shenzhen.

Solution Architecture and Resource Provisioning

image1

Referring to the above architecture diagram, this article will use the following resource configurations:

A simple date time function simulate SaaS services hosted in AWS (SG) with Lambda

  1. Lambda testing URL will return current date time

    image2


Alibaba Cloud Singapore region reserved proxy
  1. 1 x ECS with minimum requirement 1 vCPU and 1 GB Memories

Alibaba Cloud ShenZhen region Global Accelerator Instance

  1. Service Area: Singapore
  2. Acceleration Area: ShenZhen
  3. Bandwidth: 10Mbps

Alibaba Cloud ShenZhen region testing client

  1. 1 x ECS with minimum requirement 1 vCPU and 1 GB Memories

Configure Nginx Reverse Proxy

Let's assume that we have an Elastic Compute Service (ECS) instance ready at Singapore region with Nginx installed. If you are not sure how to do so, read the official guide here https://www.alibabacloud.com/help/doc-detail/50700.htm

image3

To configure Nginx reverse proxy, modify the yellow parts under Nginx server section:

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location /default/ {
          proxy_buffering         off;
          proxy_pass      https://hniust8de4.execute-api.ap-southeast-1.amazonaws.com/default/;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

Configure Global Accelerator

Subscribe to Global Accelerator Instance

Go to the Global Accelerator console under VPC section.

image4

Create an Instance with the below configuration:

  1. Bandwidth Type: Dedicated Bandwidth
  2. Acceleration Area: Mainland China
  3. Region: China (ShenZhen)
  4. Service Area: Asia Pacific
  5. Peak Bandwidth: 10 Mbit/s

image5

After purchasing the Global Accelerator instance, the instance will show in the Global Accelerator console:

image6

Bind GA to your ECS Instance located in Singapore:

image7

Bind the Backend Service IP Address to ECS sub interface:

image8

Log on to the ECS instance and run the following command to open the NIC configuration file:

sudo vi /etc/sysconfig/network-scripts/ifcfg-eth0:1

Add the following configurations to the configuration file:

DEVICE=eth0:1
IPADDR=192.168.0.214
NETMASK=255.255.255.255
ONBOOT=yes

Run the following command to enable the NIC sub interface:

ifup eth0:1

Set Up a Testing Client in SZ with curl Installed

Create an ECS instance in Shenzhen region with the following configurations. When deploying services within Mainland China, you will need to complete real name registration if you haven't done so already.

image9

Test Network Connectivity

Verify the end to end network connectivity by:

  1. Access AWS SaaS platform via Global Accelerator Instance IP
  2. Compare the speed between AWS endpoint and Alibaba GA

Accessing AWS SaaS Platform via Global Accelerator Instance IP

image10

Comparing the Speed between AWS Endpoint and Alibaba Cloud GA

image11

The result shows that the connection with Alibaba Cloud GA is 0.189ms while the direct connection to the AWS endpoint is 0.442ms. That means we have sped up the connection more than 2 times compared with direct access to the AWS endpoint.

To learn more about Alibaba Cloud Global Accelerator, visit https://www.alibabacloud.com/product/global-acceleration

0 0 0
Share on

Alibaba Clouder

2,605 posts | 747 followers

You may also like

Comments

Alibaba Clouder

2,605 posts | 747 followers

Related Products

  • Global Accelerator

    Provides network acceleration service for your Internet-facing application globally with guaranteed bandwidth and high reliability.

    Learn More
  • CDN(Alibaba Cloud CDN)

    A scalable and high-performance content delivery service for accelerated distribution of content to users across the globe

    Learn More
  • CEN

    A global network for rapidly building a distributed business system and hybrid cloud to help users create a network with enterprise level-scalability and the communication capabilities of a cloud network

    Learn More