Build an ETL Pipeline with Kafka Connect via JDBC Connectors

Build an ETL Pipeline with Kafka Connect via JDBC Connectors

Posted on October 25, 2016 0 Comments
Build an ETL Pipeline with Kafka Connect via JDBC Connectors

Tutorial: Discover how to build a pipeline with Kafka leveraging DataDirect PostgreSQL JDBC driver to move the data from PostgreSQL to HDFS. Let’s go streaming!

Apache Kafka is an open source distributed streaming platform which enables you to build streaming data pipelines between different applications. You can also build real-time streaming applications that interact with streams of data, focusing on providing a scalable, high throughput and low latency platform to interact with data streams.

Earlier this year, Apache Kafka announced a new tool called Kafka Connect which can helps users to easily move datasets in and out of Kafka using connectors, and it has support for JDBC connectors out of the box! One of the major benefits for DataDirect customers is that you can now easily build an ETL pipeline using Kafka leveraging your DataDirect JDBC drivers. Now you can easily connect and get the data from your data sources into Kafka and export the data from there to another data source.

Apache Kafka

Note: Image From https://kafka.apache.org/

Environment Setup

Before proceeding any further with this tutorial, make sure that you have installed the following and are configured properly. This tutorial is written assuming you are also working on Ubuntu 16.04 LTS, you have PostgreSQL, Apache Hadoop and Hive installed.

  1. Installing Apache Kafka and required tools

    To make the installation process easier for people trying this out for the first time, we will be installing Confluent Platform. This takes care of installing Apache Kafka, Schema Registry and Kafka Connect which includes connectors for moving files, JDBC connectors and HDFS connector for Hadoop.

    1. To begin with, install Confluent’s public key by running the command:

      wget -qO - http://packages.confluent.io/deb/2.0/archive.key | sudo apt-key add -

       

    2. Now add the repository to your sources.list by running the following command:
      sudo add-apt-repository "deb http://packages.confluent.io/deb/2.0 stable main"
    3. Update your package lists and then install the Confluent platform by running the following commands:

      sudo apt-get update
      sudo apt-get install confluent-platform-2.11.7

       

  2. Install DataDirect PostgreSQL JDBC driver
    1. Download DataDirect PostgreSQL JDBC driver by visiting here
    2. Install the PostgreSQL JDBC driver by running the following command:

      java -jar PROGRESS_DATADIRECT_JDBC_POSTGRESQL_ALL.jar

       

    3. Follow the instructions on the screen to install the driver successfully (you can install the driver in evaluation mode where you can try it for 15 days, or in license mode, if you have bought the driver)

       

  3. Configuring data sources for Kafka Connect

    1. Create a new file called postgres.properties, paste the following configuration and save the file. To learn more about the modes that are being used in the below configuration file, visit this page.

      name=test-postgres-jdbc
      connector.class=io.confluent.connect.jdbc.JdbcSourceConnector
      tasks.max=1
      connection.url=jdbc:datadirect:postgresql://<;server>:<port>;User=<user>;Password=<password>;Database=<dbname>
      mode=timestamp+incrementing
      incrementing.column.name=<id>
      timestamp.column.name=<modifiedtimestamp>
      topic.prefix=test_jdbc_
      table.whitelist=actor

       

    2. Create another file called hdfs.properties, paste the following configuration and save the file. To learn more about HDFS connector and configuration options used, visit this page.

      name=hdfs-sink
      connector.class=io.confluent.connect.hdfs.HdfsSinkConnector
      tasks.max=1
      topics=test_jdbc_actor
      hdfs.url=hdfs://<;server>:<port>
      flush.size=2
      hive.metastore.uris=thrift://<;server>:<port>
      hive.integration=true
      schema.compatibility=BACKWARD

       

    3. Note that postgres.properties and hdfs.properties have basically the connection configuration details and behavior of the JDBC and HDFS connectors.

       

    4. Create a symbolic link for DataDirect Postgres JDBC driver in Hive lib folder by using the following command:

      ln -s /path/to/datadirect/lib/postgresql.jar /path/to/hive/lib/postgresql.jar

       

    5. Also make the DataDirect Postgres JDBC driver available on Kafka Connect process’s CLASSPATH by running the following command:

      export CLASSPATH=/path/to/datadirect/lib/postgresql.jar

       

    6. Start the Hadoop cluster by running following commands:

      cd /path/to/hadoop/sbin
      ./start-dfs.sh
      ./start-yarn.sh

       

  4. Configuring and running Kafka Services
  1. Download the configuration files for Kafka, zookeeper and schema-registry services
  2. Start the Zookeeper service by providing the zookeeper.properties file path as a parameter by using the command:

    zookeeper-server-start /path/to/zookeeper.properties

     

  3. Start the Kafka service by providing the server.properties file path as a parameter by using the command:

    kafka-server-start /path/to/server.properties

     

  4. Start the Schema registry service by providing the schema-registry.properties file path as a parameter by using the command:              
    schema-registry-start /path/to/ schema-registry.properties

Ingesting Data in to HDFS using Kafka Connect

To start ingesting data from PostgreSQL, the final thing that you have to do is start Kafka Connect. You can start Kafka Connect by running the following command:

connect-standalone /path/to/connect-avro-standalone.properties \ /path/to/postgres.properties /path/to/hdfs.properties

 

This will import the data from PostgreSQL to Kafka using DataDirect PostgreSQL JDBC drivers and create a topic with name test_jdbc_actor. Then the data is exported from Kafka to HDFS by reading the topic test_jdbc_actor through the HDFS connector. The data stays in Kafka, so you can reuse it to export to any other data sources.

Next Steps

We hope this tutorial helped you understand on how you can build a simple ETL pipeline using Kafka Connect leveraging DataDirect PostgreSQL JDBC drivers. This tutorial is not limited to PostgreSQL. In fact, you can create ETL pipelines leveraging any of our DataDirect JDBC drivers that we offer for Relational databases like Oracle, DB2 and SQL Server, Cloud sources like Salesforce and Eloqua or BigData sources like CDH Hive, Spark SQL and Cassandra by following similar steps. Also, subscribe to our blog via email or RSS feed  for more awesome tutorials.

Try any DataDirect JDBC Driver Free

Saikrishna-Teja-Bobba_164x164.jpg

Saikrishna Teja Bobba

Saikrishna is a DataDirect Developer Evangelist at Progress. Prior to working at Progress, he worked as Software Engineer for 3 years after getting his undergraduate degree, and recently graduated from NC State University with Masters in Computer Science. His interests are in the areas of Data Connectivity, SaaS and Mobile App Development.

Comments

Comments are disabled in preview mode.
Topics

Sitefinity Training and Certification Now Available.

Let our experts teach you how to use Sitefinity's best-in-class features to deliver compelling digital experiences.

Learn More
Latest Stories
in Your Inbox

Subscribe to get all the news, info and tutorials you need to build better business apps and sites

Loading animation