Extracting Data from Hive to Load an RDBMS in MapR
How to use a PDI transformation to extract data from Hive and load it into a RDBMS table.
The new RDBMS table will contain the count of page views by IP address and month.
Note
For brevity's sake, this transformation will only contain two steps: Table Input and a Table Output. In practice, the full expressiveness of the PDI transformation semantic is available. Further, PDI supports bulk loading many RDBMS and that would be a viable, and common, alternative to using a Table Output approach.
Prerequisites
In order follow along with this how-to guide you will need the following:
MapR
Pentaho Data Integration
Hive
Sample Files
The source data for this guide will reside in a Hive table called weblogs. If you have previously completed the "Loading Data into Hive" guide, then you can skip to "Create a Database Connection to Hive". You do not have to load the following sample data.
The sample data file needed for the "Create a Hive Table" instructions is:
File Name | Content |
| Tab-delimited, parsed weblog data |
NOTE: If you have previously completed the "Using Pentaho MapReduce to Parse Weblog Data" guide, then the necessary files will already be in the proper location.
This file should be placed in the /weblogs/parse directory of the CLDB using the following commands.
hadoop fs -mkdir /weblogs
hadoop fs -mkdir /weblogs/parse
hadoop fs -put weblogs_parse.txt /weblogs/parse/part-00000Step-By-Step Instructions
Setup
Start MapR if it is not already running.
Start Hive Server if it is not already running.