Proces Data Driver

The first driver took care of the PCI Data Acquisition and Signal Processing Controller and all but one of the Unknown Devices. Finally the second one took care of the last Unknown Device in the Device Manager. Standard examples of data-driven languages are the text-processing languages sed and AWK, where the data is a sequence of lines in an input stream – these are thus also known as line-oriented languages – and pattern matching is primarily done via regular expressions or line numbers. If PCI Data Acquisition and Signal Processing Controller is present under Other Devices with a yellow exclamation mark beside it, it means something is wrong with the network driver. Download the latest network driver to fix the problem. Get high-performance modern data warehousing. Combine data at any scale and get insights through analytical dashboards and operational reports. Automate data movement using Azure Data Factory, then load data into Azure Data Lake Storage, transform and clean it using Azure Databricks, and make it available for analytics using Azure Synapse Analytics. This data is then plotted on a graph with pre-determined control limits. Control limits are determined by the capability of the process, whereas specification limits are determined by the client’s needs. This basically means that we gather quantifiable data about the process and look at the size of the output vs the quality of the output.

In this tutorial, we will learn to store data files using Ambari HDFS Files View. We will implement pig latin scripts to process, analyze and manipulate data files of truck drivers statistics. Let's build our own Pig Latin Scripts now.

Prerequisites

  • Downloaded and deployed the Hortonworks Data Platform (HDP) Sandbox

Outline

What is Pig?

Pig is a high level scripting language that is used with Apache Hadoop. Pig excels at describing data analysis problems as data flows. Pig is complete in that you can do all the required data manipulations in Apache Hadoop with Pig. In addition through the User Defined Functions(UDF) facility in Pig you can have Pig invoke code in many languages like JRuby, Jython and Java. Conversely you can execute Pig scripts in other languages. The result is that you can use Pig as a component to build larger and more complex applications that tackle real business problems.

A good example of a Pig application is the ETL transaction model that describes how a process will extract data from a source, transform it according to a rule set and then load it into a datastore. Pig can ingest data from files, streams or other sources using the User Defined Functions(UDF). Once it has the data it can perform select, iteration, and other transforms over the data. Again the UDF feature allows passing the data to more complex algorithms for the transform. Finally Pig can store the results into the Hadoop Data File System.

Pig scripts are translated into a series of MapReduce jobs that are run on the Apache Hadoop cluster. As part of the translation the Pig interpreter does perform optimizations to speed execution on Apache Hadoop. We are going to write a Pig script that will do our data analysis task.

What is Tez?

Tez – Hindi for “speed” provides a general-purpose, highly customizable framework that creates simplifies data-processing tasks across both small scale (low-latency) and large-scale (high throughput) workloads in Hadoop. It generalizes the MapReduce paradigm to a more powerful framework by providing the ability to execute a complex DAG (directed acyclic graph) of tasks for a single job so that projects in the Apache Hadoop ecosystem such as Apache Hive, Apache Pig and Cascading can meet requirements for human-interactive response times and extreme throughput at petabyte scale (clearly MapReduce has been a key driver in achieving this).

Our Data Processing Task

We are going to read in a truck driver statistics files. We are going to compute the sum of hours and miles logged driven by a truck driver for an year. Once we have the sum of hours and miles logged, we will extend the script to translate a driver id field into the name of the drivers by joining two different files.

Download The Data

Download the driver data file from here. Once you have the file you will need to unzip the file into a directory. We will be uploading two csv files - drivers.csv and timesheet.csv.

Proces data driver job

Upload the data files

We start by selecting the HDFS Files view from the Off-canvas menu at the top. The HDFS Files view allows us to view the Hortonworks Data Platform(HDP) file store. This is separate from the local file system. For the Hortonworks Sandbox, it will be part of the file system in the Hortonworks Sandbox VM.

Navigate to /user/maria_dev and click on the Upload button to select the files we want to upload into the Hortonworks Sandbox environment.

Click on the browse button to open a dialog box. Navigate to where you stored the drivers.csv file on your local disk and select drivers.csv and click Open. Do the same thing for timesheet.csv. When you are done you will see there are two new files in your directory.

Create Pig Script

Proces

Now that we have our data files, we can start writing our Pig script.

Open a new browser window and open Shell-In-A-Box.

Driver

The default Username/Password is root/hadoop, you will be asked to reset your password the first time you sign on.

Once in the shell switched users to maria_dev and change directories to home:

In this tutorial we will explore Grunt shell which is used to write Pig Latin scripts. There are 3 execute modes of accessing Grunt shell:

  1. local - Type pig -x local to enter the shell
  2. mapreduce - Type pig -x mapreduce to enter the shell
  3. tez - Type pig -x tez to enter the shell

Default is mapreduce, so if you just type pig, it will use mapreduce as the execution mode.

Explore this link to explore more about the grunt shell.

Create a New Script

To get started exit out of grunt and create a new file named sum_of_hours_miles then use VI to edit it:

Create a Script to Load drivers.csv Data

The first thing we need to do is load the data. We use the load statement for this. The PigStorage function is what does the loading and we pass it a comma as the data delimiter. Our code is:

Proces Data Driver Job

Note: To enter insert mode in VI press i and to exit press esc and :x to save. You may also exit without saving by pressing :q!

Create a Script to Filter Out Data

To filter out the first row of the data we have to add this line:

Implement a Script to Name the Fields

The next thing we want to do is name the fields. We will use a FOREACH statement to iterate through the raw_drivers data object.

So the FOREACH statement will iterate through the raw_drivers data object and GENERATE pulls out selected fields and assigns them names. The new data object we are creating is then named driver_details. Our code will now be:

Perform these operations for timesheet data as well

Proces Data Driver

Load the timesheet data and then filter out the first row of the data to remove column headings and then use FOREACH statement to iterate each row and GENERATE to pull out selected fields and assign them names.

Use Script to Filter The Data (all hours and miles for each driverId)

The next line of code is a GROUP statement that groups the elements in timesheet_logged by the driverId field. So the grp_logged object will then be indexed by driverId. In the next statement as we iterate through grp_logged we will go through driverId by driverId. Type in the code:

Compose a Script to Find the Sum of Hours and Miles Logged by each Driver

Proces data driver test

In the next FOREACH statement, we are going to find the sum of hours and miles logged by each driver. The code for this is:

Build a Script to join driverId, Name, Hours and Miles Logged

Now that we have the sum of hours and miles logged, we need to join this with the driver_details data object so we can pick up the name of the driver. The result will be a dataset with driverId, name, hours logged and miles logged. At the end we DUMP the data to the output.

Let’s take a look at our script. The first thing to notice is we never really address single rows of data to the left of the equals sign and on the right we just describe what we want to do for each row. We just assume things are applied to all the rows. We also have powerful operators like GROUP and JOIN to sort rows by a key and to build new data objects.

Save and Execute The Script

Proces Data Driver Salary

At this point we can save our script. Let's execute our code by exiting and saving on VI press esc then type :x

Next submit the Pig job:

Note: -x mr sets the execution engine to be MapReduce.

As the jobs are run we will get status boxes where we will see logs, error message, the output of our script and our code at the bottom.

If you scroll up to the program output you can see the log file of your jobs. We should always check the Logs to check if your script was executed correctly.

Code Recap

So we have created a simple Pig script that reads in some comma separated data. Once we have that set of records in Pig we pull out the driverId, hours logged and miles logged fields from each row. We then group them by driverId with one statement, GROUP. Then we find the sum of hours and miles logged for each driverId. This is finally mapped to the driver name by joining two datasets and we produce our final dataset.

As mentioned before Pig operates on data flows. We consider each group of rows together and we specify how we operate on them as a group. As the datasets get larger and/or add fields our Pig script will remain pretty much the same because it is concentrating on how we want to manipulate the data.

Full Pig Latin Script for Exercise

Run Pig Script on Tez

Let’s run the same Pig script with Tez by clicking on Execute on Tez by resubmitting the Pig Job and indicating the execution enginge to be Tez:

Notice that Tez is significantly faster than MapReduce.

Proces Data Driver Test

Time with MR:

Time with Tez:

On our machine it took around 33 seconds with Pig using the Tez engine. That is nearly 3X faster than Pig using MapReduce even without any specific optimization in the script for Tez. Tez definitely lives up to it’s name.

Proces Data Driver Jobs

Further Reading