Aurora push technology principle: mobile wireless network persistent connection

Source: Internet
Author: User
Posted on November 16, 2012 by Tiger CommentMobile Internet Application Status

Because of the limitations of mobile phone platforms, power, and network traffic, the design of mobile Internet applications is very different from that of traditional PC applications. Based on the characteristics of mobile phones, save power and traffic as much as possible, and ensure that data can arrive at the client in a timely manner.

To solve the problem of data synchronization, there are two common methods on the mobile phone platform. One is to regularly query data on the server, also calledPolling, There is alsoA tcp persistent connection is maintained between the mobile phone and the server. When the server has data, Pushed to the client in real time, that is, what we saidPush.

In terms of the power consumption, traffic, and data delivery timeliness, push has obvious advantages, but the implementation and maintenance costs of push are relatively high. It is technically difficult to maintain persistent connections in mobile wireless networks. This article attempts to introduce how Aurora push maintains persistent connections on the Android platform.

Features of Mobile Wireless Networks

Because the IP address V4 has a limited number of IP addresses, the IP address assigned to the mobile terminal by the operator is the Intranet IP address of the carrier, and the mobile phone needs to connect to the Internet, you need to perform a Network Address Translation (NAT) through the carrier's gateway ). To put it simply, the carrier's gateway needs to maintain an Internet IP address, Port-to-Intranet IP address, and port correspondence to ensure that the Intranet mobile phone can communicate with the internet server.

Image Source: cisco.com.

The NAT Function is implemented by the ggsn module in the figure.

Most mobile wireless network operators will eliminate the corresponding items in the NAT table when there is no data communication over the link for a period of time, resulting in link interruption.

Implementation of persistent connections on the Android platform

In order not to invalidate the NAT table, we need to initiate a timed heartbeat to refresh the NAT table items to avoid elimination.

On Android, there are two commonly used methods for scheduled task running: timer and alarmmanager.

Timer

The timer class of android can be used to plan tasks that need to be executed cyclically. The problem with timer is that it needs to use wakelockKeep CPUWake up status, which will consume a lotMobile phoneAnd greatly reduce the standby time of the mobile phone. This method cannot meet our needs.

Alarmmanager

AlarmmanagerIt is a module encapsulated by the Android system for managing RTC. RTC (real time clock) is an independent hardware clock that can run normally during CPU sleep. When the preset time arrives, wake up the CPU by interrupting it.

This means that if we use alarmmanager to regularly execute tasks, the CPU can sleep normally, and only a short period of time can be woke up when the task needs to be run.The android SDK of Aurora push is implemented based on this technology.

Server Design

When a large number of mobile terminals need to maintain persistent connections with the server, the design of the server will be a great challenge.

Assume that one server maintains 0.1 million persistent connections.10 million usersUp to 100 servers are required to maintain the persistent connections of these users. This is not a backup server. This will be a huge cost issue. We need to increase the number of users connected to a single server as much as possible, that is, the c10k issue that has been discussed for a long time in the industry.

C2000k

To address this problem, we have set upProjectThe name is c2000k. As the name suggests, our goal is2 million persistent connections per server. In the end, we adopt a multi-message loop and asynchronous non-blocking model to maintain the peak value on a dual-core, 24 GB memory server.Over 3 million persistent connections.

Postscript

Stable maintenance of persistent connections is a foundation of the push platform. The Aurora push team will invest in this field for a long time to ensure that users can effectively save power and traffic while delivering data in real time.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.