MySQL Applier for Hadoop

来源:互联网 发布:amos软件什么意思 编辑:程序博客网 时间:2024/05/22 01:23

Enabling Real-Time MySQL to HDFS Integration

Big Data is transforming the way organizations harness new insights from their business, and Apache Hadoop is at the center of that transformation.

Batch processing delivered by Map/Reduce remains central to Hadoop, but as the pressure to gain competitive advantage from "speed of thought" analytics grows, so Hadoop itself is undergoing significant evolution. The development of technologies allowing real time queries, such as Apache Drill, Cloudera Impala and the Stinger Initiative are emerging, supported by new generations of resource management with Apache YARN.

To support this growing emphasis on real-time operations, MySQL is releasing a new Hadoop Applier to enable the replication of events from MySQL to Hadoop / Hive / HDFS (Hadoop Distributed File System) as they happen. The Hadoop Applier complements existing batch-based Apache Sqoop connectivity.

This developer article gives you everything you need to get started in implementing real-time MySQL to Hadoop integration.

MySQL in Big Data

MySQL is playing a key role in many big data platforms. Based on estimates from a leading Hadoop vendor, MySQL is a core component of the big data pipeline in over 80% of deployments, including those implemented by the likes of FaceBook and Twitter.

Recent research by Intel1 finds that business transactions stored in relational databases are the leading source of data for big data analytics. This structured data is typically joined with unstructured content such as web logs, clickstreams, social media, email, sensors, images, video, etc, enabling business analysts to seek answers to questions that were previously impossible to ask.

As an example, on-line retailers can use big data from their web properties to better understand site visitors’ activities, such as paths through the site, pages viewed, and comments posted - captured from clickstreams and weblogs. This data can be combined with user profiles and purchasing history to gain a deeper insight into its customers, and enable the delivery of highly targeted offers.

Of course, it is not just in the web that big data can make a difference. Many other business activities can benefit, with other common use cases including:

  • Sentiment analysis;
  • Marketing campaign analysis;
  • Customer churn modeling;
  • Fraud detection;
  • Research and Development;
  • Risk Modeling;
  • And more.

Today many users integrate data from MySQL to Hadoop using Apache Sqoop, allowing bulk transfers of data between MySQL and HDFS, or related systems such as Hive and HBase.

Apache Sqoop is a well-proven approach for bulk data loading. However, with the growing number of use-cases for streaming real-time updates from MySQL into Hadoop for immediate analysis, we need to look at complementary solutions.

In addition, the process of bulk loading to and from tables can place additional demands on production database infrastructure, potentially impacting performance, measured in predictable throughput and latency.

The Hadoop Applier is designed to address these issues to perform real-time replication of events between MySQL and Hadoop.

MySQL Applier for Hadoop

Replication via the Hadoop Applier is implemented by connecting to the MySQL master and reading binary log events as soon as they are committed, and writing them into a file in HDFS. "Events" describe database changes such as table creation operations or changes to table data.

MySQL to HDFS Integration

Figure 1: MySQL to HDFS Integration

The Hadoop Applier uses an API provided by libhdfs, a C library to manipulate files in HDFS. The library comes precompiled with Hadoop distributions.

It connects to the MySQL master to read the binary log and then:

  • Fetches the row insert events occurring on the master
  • Decodes these events, extracts data inserted into each field of the row, and uses content handlers to get it in the format required
  • Appends it to a text file in HDFS.

Databases are mapped as separate directories, with their tables mapped as sub-directories with a Hive data warehouse directory. Data inserted into each table is written into text files (named as datafile1.txt) in Hive / HDFS. Data can be in comma separated format; or any other, that is configurable by command line arguments.

Mapping between MySQL and HDFS Schema

Figure 2: Mapping between MySQL and HDFS Schema

The installation, configuration and implementation are discussed in detail in the Hadoop Applier blog. Integration with Hive is also documented.

We also have a Hadoop Applier video demo which shows the integration.

In this first version WRITE_ROW_EVENTS are supported, i.e. only insert statements are replicated. Deletes and updates, and DDLs may be handled in the future releases. It would be great to get your requirements - please use the comments section in the Hadoop Applier blog.

Summary

The Hadoop Applier is a major step forward in providing real-time integration between MySQL and Hadoop.

With the growth in big data projects and Hadoop adoption, it would be great to get your feedback on how we can further develop the Applier to meet your real-time integration needs.

Key Resources

Learn more about the pre-requisites and implementation of the Hadoop Applier.

Watch the Hadoop Applier demo »

Download the Hadoop Applier from the MySQL Labs (select "Hadoop Applier" from the drop down menu)

Download the Guide: MySQL in Big Data »

1 http://www.intel.com/content/www/xa/en/big-data/data-insights-peer-research-report.html

原创粉丝点击