×
Community Blog What Is the Next Stop for Big Data? Hybrid Serving/Analytical Processing (HSAP)

What Is the Next Stop for Big Data? Hybrid Serving/Analytical Processing (HSAP)

Jiang Xiaowei, an Alibaba Researcher, explains the benefits and value of the HSAP architecture.

By Jiang Xiaowei (Liangzai), Alibaba Researcher

Due to different emphases, traditional databases can be divided into the online transaction processing (OLTP) system and the online analytical processing (OLAP) system. With the development of the Internet, the data volume has increased exponentially, so standalone databases can no longer meet business needs. Especially in the analysis field, a single query may require the processing of a large part or full amount of data. It is urgent to relieve the pressure caused by massive data processing. This has contributed to the big data revolution based on Hadoop over the past decade, which solved the need for massive data analysis. Meanwhile, many distributed database products have emerged in the database field to cope with the increase in data volume in OLTP scenarios.

1

To analyze data in an OLTP system, we usually synchronize the data to an OLAP system on a regularly. This architecture ensures that analytical queries do not affect online transactions through two systems. However, regular synchronization leads to analysis results that are not based on the latest data, and such latency prevents us from making more timely business decisions. To solve this problem, the Hybrid Transactional/Analytical Processing (HTAP) architecture has emerged in recent years. It allows us to directly analyze the data in OLTP databases, thereby ensuring the timeliness of data analysis. Analysis is no longer unique to traditional OLAP systems or big data systems. Naturally, you may ask, "Now that HTAP can analyze data, will it replace the big data system? What is the next stop for big data?"

Background

To answer this question, we analyzed typical application scenarios of big data systems by taking a recommendation system as an example. When the recommendation system works, a shopping app can show you exactly what you want to buy and a short video app can play your favorite music. An advanced recommendation system aims to make recommendations according to your real-time behaviors. Every interaction between you and the system will immediately optimize the next experience. To support this system, the back-end big data technology stack has evolved into a fairly complex and diverse system. The following figure shows a big data technology stack that supports a real-time recommendation system.

2

To make high-quality personalized recommendations in real-time, the recommendation system relies heavily on real-time features and continuous model updates.

Real-time features can be classified into two categories:

  1. The system collects a large number of user behavior events (such as browsing and clicking) and transaction records (such as payment records synchronized from OLTP databases.) The data volume is huge (possibly tens of millions or hundreds of millions of records per second), and most of them do not come from the transaction system. For the convenience of future use, the data will be imported into the system ("a" in the figure) and associated with the data of various dimension tables to derive significant features ("1" in the figure.) These features will be updated to the recommendation system in real-time to optimize the user experience. To keep up with the newly generated data, the real-time association of dimension tables requires point queries featuring low-latency and high throughput.
  2. The system can also use sliding windows or other methods to calculate the features (such as 5-min item clicks, 7-day page views, and 30-day turnover) of various dimensions and time granularities. Depending on the granularity of the sliding windows, these aggregations may be completed through stream computing or batch processing.

The data is also used to generate samples for real-time and offline machine learning. The trained models are verified and continuously updated into the recommendation system.

The preceding part describes the core of an advanced recommendation system, but this is only a small part of the whole system. A complete recommendation system also requires real-time model monitoring, verification, analysis, and tuning. This means that you must use a real-time dashboard to view the results of A/B testing (3), use interactive analysis (4) to perform BI analysis, and refine and optimize the model. Moreover, the operational staff also calls various complex queries to gain insights into the business progress, and conduct targeted marketing through methods, such as tagging people or items.

This example shows a complex but typical big data scenario, from ingestion (a) to online aggregate (b), from serving (1), continuous aggregation (3), to interactive analysis (4), and batch aggregate (2). Such complex scenarios have diverse requirements for big data systems. During the process of building these systems, we have seen two new trends.

  1. Real-time: The business system must quickly gain business insight into the data that has just been collected. The written data needs to be visible in seconds or less. The lengthy offline ETL process is becoming intolerable. The volume of the collected data is much larger than the data synchronized from the OLTP system. The volume of the log data, such as user browsing or clicking, is several orders of magnitude larger. Our system needs to be able to provide low-latency query capabilities while writing large amounts of real-time data.
  2. Hybrid serving/analysis: Traditional OLAP systems often play a static role in businesses. We gain business insight (such as estimated views and models) by analyzing massive data and apply them to provide online data services through another system. The serving and analysis here are separate processes. However, an ideal business decision-making process is often an online process under continuous optimization. The process of serving will produce a large amount of new data. We must analyze the new data through complex steps. Insights generated by the analysis are fed back in real-time to the serving to create greater business values. Serving and analysis are forming a closed loop.

Existing solutions address the need for real-time hybrid serving/analysis processing through a portfolio of products. For example, after real-time online aggregation of data through Apache Flink, the aggregated data is stored in products that provide multi-dimensional analysis, such as Apache Druid, and data services are provided through Apache HBase. The stovepipe development model will inevitably produce data silos, which cause unnecessary data duplication. Complex data synchronization across products also makes data consistency and security a challenge. The complexity makes it difficult for application development to quickly respond to new requirements. This causes slower business iteration and brings a large additional cost of development and operation and maintenance (O&M).

3

We believe that real-time serving and analysis integration should be implemented through a unified HSAP system. With such a system, application development can be conducted without considering the problems and limitations of each product. In this way, we can greatly simplify the business architecture and improve development and O&M efficiency. Such a unified system can avoid unnecessary data duplication, thereby saving costs. Meanwhile, this architecture allows the system to respond in seconds or sub-seconds. In this way, business decisions can be made in real-time so data can exert greater business values.

Although a distributed HTAP system can analyze data in real-time, it cannot solve the problems of big data.

First, the data synchronized from transaction systems is only a small portion of the data that the real-time recommendation system needs to process. Most of the other data come from non-transaction systems, such as logs (users often have dozens or even hundreds of views before each purchase), and most of the analysis is performed on the non-transaction data. The HTAP system does not have this part of data and therefore does not analyze the non-transaction data.

Then, can we write the non-transaction data into the HTAP system for analysis? Let's analyze the differences between the data writing modes of the HTAP and HSAP systems. The cornerstone and advantage of the HTAP system is to support fine-grained distributed transactions. Transaction data is often written into the HTAP system in the form of many distributed small transactions. However, the data from systems, such as logs, does not have the semantics of fine-grained distributed transactions. Unnecessary overhead is required if the non-transaction data is imported into the HTAP system.

In contrast, the HSAP system requires no high-frequency distributed small transactions. Generally, you can write a huge amount of single data into an HSAP system in real-time or write distributed batch data into the system at a relatively low frequency. Therefore, the HSAP system can be optimized in design to be more cost-effective and to avoid the unnecessary overhead of importing non-transaction data to the HTAP system. Even if we do not care about this overhead, we assume that we can write all the data into the HTAP system at any cost. If this is the case, can we solve this problem? The answer is still "no."

Good support for OLTP scenarios is a prerequisite for HTAP systems. For this purpose, an HTAP system usually adopts row store for data. However, the analytical query of row-store data has quite a lower efficiency (order of magnitude) than column-store data. The ability to analyze data and the ability to analyze data efficiently are not the same thing. To achieve efficient analysis, an HTAP system must copy massive non-transaction data to column store, but this will inevitably cause a lot of costs. It is better to copy a small amount of transaction data to an HSAP system at a lower cost. This can better avoid affecting the OLTP system. So, we think that HTAP and HSAP will complement each other and lead the direction of the database and big data fields, respectively.

Challenges Faced by HSAP

As a brand-new architecture, HSAP has faced challenges different from the existing big data and traditional OLAP systems.

  1. Highly concurrent mixed workloads:The number of concurrent queries that an HSAP system needs to process far exceeds what a traditional OLAP system needs to process. In practice, the concurrent queries of data services go far beyond OLAP queries. For example, data services need to process tens of millions of queries per second, which are five orders of magnitude higher than the number of concurrent OLAP queries. Moreover, compared with OLAP queries, data service queries have more stringent requirements on latency. A greater challenge is that the system must process complex analytical queries while it provides data service queries. The mixed queries have different requirements for latency and throughput. It is a big challenge to efficiently use system resources to process these different queries and ensure the SLO for each query.
  2. High-throughput real-time data import: While the HSAP system processes concurrent queries, it also writes massive data in real-time. The amount of data written in real-time is far beyond the requirements of traditional OLAP systems. For example, in the preceding real-time recommendation scenario, tens of millions or hundreds of millions of events are continuously written every second. Another difference from the traditional OLAP system is that HSAP has high requirements for real-time data. Written data needs to be visible in seconds or sub-seconds. Only in this way can we ensure the timeliness of our service and analysis results.
  3. Elasticity and scalability: Data writing and queries may have sudden peaks. This places high requirements on the elasticity and scalability of the system. In practice, we have noticed that the peak of data writing can reach 2.5 times the average, and the peak of queries can reach 3 times the average. The peaks of data writing and queries may not occur at the same time, which also requires the system to quickly adjust accordingly.

System Design of HSAP

To address these challenges, we believe that a typical HSAP system can adopt architecture similar to that shown in the preceding figure.

4

  1. Separated storage and computing: All the data is stored in a distributed file system. We expand the system using data shards. Storage Manager manages the shards, and Resource Manager manages the computing resources of the system. This ensures that the system can process high-throughput data writes and queries. The architecture can quickly respond to the workload changes. When more computing resources are needed with the increase of query loads, the computing resources can be scaled. When the data volume increases quickly, the storage resources can be rapidly scaled. The architecture with storage and computing separation can quickly complete these operations without waiting for migrating or copying data. The architecture greatly simplifies O&M to guarantee system stability.
  2. Unified real-time storage: A unified real-time storage layer is crucial for supporting various query modes. Queries can be broadly divided into simple point queries of data services and complex analytical queries that scan large amounts of data. Of course, this is a continuous process and many queries are in between. The two query modes also have different requirements for data storage. Row store supports point queries more efficiently while column store has obvious advantages in queries that support a large number of scans. We can strike a balance between row store and column store in a way similar to PAX. The price we pay is that we may not be able to obtain the best performance in point queries and data scanning scenarios. We want to perform best in both scenarios, so the system supports both row store and column store. You can choose a storage method for each table based on the scenario. For tables with both query requirements, we allow you to select both storage types through index abstraction. The system ensures the consistency between the two through an index maintenance mechanism. In practice, we find that this efficient and flexible design supports businesses better.
  3. Isolated workloads: The system guarantees the SLO under mixed workloads through scheduling. Ideally, a large query should be able to use all resources. When multiple queries are running at the same time, these queries need to share resources fairly. Service-oriented queries are simple and require fewer resources. Therefore, this fair scheduling mechanism can ensure that the latency of service queries can be guaranteed in the case of complex analytical queries. As a distributed system, scheduling can be divided into two parts: distributed and in-process. The Coordinator divides a query into multiple tasks and distributes these tasks to different processes. If this is the case, the Coordinator must adopt certain policies to ensure fairness. Equally important, we also need to allow different tasks to share resources fairly within one process. The operating system does not understand the relationship between tasks. Therefore, we implement a user-mode scheduler in each process to more flexibly support workload isolation.
  4. System openness: Many businesses already use other storage platforms or computing engines. Therefore, the new system must be integrated with the existing systems. For queries with high requirements on timeliness, the integration of computing and storage can bring clear advantages. For offline computing that is not time-sensitive, the storage layer can provide a unified interface to open data. This openness allows other engines to pull the data out for processing to give the business greater flexibility. Another aspect of openness is the ability to process data stored in other systems, which can be implemented through federated queries.

Application of HSAP

Let's share the refined operation business of Alibaba's search recommendations. The following figure shows an example of the system architecture before we adopt HSAP.

5

We must run a series of storage and computing engines (such as HBase, Druid, Hive, Drill, and Redis) to meet business needs. In addition, data synchronization tasks are required to maintain approximate synchronization between multiple storage systems. This business architecture is complex and the development is time-consuming.

6

We upgraded this business by using the HSAP system during the Double 11 Global Shopping Festival in 2019, and the new architecture was greatly simplified. User, commodity, merchant attribute data, and massive user behavior data are cleansed in real-time and offline before they are imported into the HSAP system. The HSAP system undertakes query and analysis services such as real-time dashboard, real-time reporting, effect tracking, and real-time data applications. Real-time dashboard, real-time sales forecast, real-time inventory monitoring, and real-time BI reports monitor the business progress in real-time. This allows you to know the business growth and track algorithm results, thereby making efficient decisions. Data products such as real-time tagging, real-time profiling, competition analysis, people and product selection, and benefit delivery facilitate refined operation and decision-making. The real-time data interface service supports algorithm control, inventory monitoring, and early warning services. A complete HSAP system enables reuse and data sharing across all channels and links, addressing data analysis and query requirements from different business perspectives, including operation, products, algorithms, development, analysis, and decision-making.

Summary

With unified real-time storage, the HSAP architecture provides a wide range of data query and application services without data duplication, such as simple query, OLAP analysis, and online data services. In this way, the access requirements of data applications are met. This new architecture greatly reduces business complexity, allowing us to quickly respond to new business needs. Its real-time performance in seconds or sub-seconds enables more timely and efficient decision-making, allowing data to create greater business values.

Get More

More information,Please join the DingTalk Group of Hologres.
_

0 0 0
Share on

Hologres

10 posts | 2 followers

You may also like

Comments

Hologres

10 posts | 2 followers

Related Products