Sponsored Links

Senin, 29 Januari 2018

Sponsored Links

Hadoop Component Apache Pig, Online Hadoop Course
src: s3.amazonaws.com

Apache Pig is a high-level platform for creating programs that run on Apache Hadoop. The language for this platform is called Pig Latin. Pig can execute its Hadoop jobs in MapReduce, Apache Tez, or Apache Spark. Pig Latin abstracts the programming from the Java MapReduce idiom into a notation which makes MapReduce programming high level, similar to that of SQL for relational database management systems. Pig Latin can be extended using user-defined functions (UDFs) which the user can write in Java, Python, JavaScript, Ruby or Groovy and then call directly from the language.


Video Pig (programming tool)



History

Apache Pig was originally developed at Yahoo Research around 2006 for researchers to have an ad-hoc way of creating and executing MapReduce jobs on very large data sets. In 2007, it was moved into the Apache Software Foundation.


Maps Pig (programming tool)



Example

Below is an example of a "Word Count" program in Pig Latin:

The above program will generate parallel executable tasks which can be distributed across multiple machines in a Hadoop cluster to count the number of words in a dataset such as all the webpages on the internet.


Apache Pig - Word Count - YouTube
src: i.ytimg.com


Pig vs SQL

In comparison to SQL, Pig

  1. uses lazy evaluation,
  2. uses extract, transform, load (ETL),
  3. is able to store data at any point during a pipeline,
  4. declares execution plans,
  5. supports pipeline splits, thus allowing workflows to proceed along DAGs instead of strictly sequential pipelines.

On the other hand, it has been argued DBMSs are substantially faster than the MapReduce system once the data is loaded, but that loading the data takes considerably longer in the database systems. It has also been argued RDBMSs offer out of the box support for column-storage, working with compressed data, indexes for efficient random data access, and transaction-level fault tolerance.

Pig Latin is procedural and fits very naturally in the pipeline paradigm while SQL is instead declarative. In SQL users can specify that data from two tables must be joined, but not what join implementation to use (You can specify the implementation of JOIN in SQL, thus "... for many SQL applications the query writer may not have enough knowledge of the data or enough expertise to specify an appropriate join algorithm."). Pig Latin allows users to specify an implementation or aspects of an implementation to be used in executing a script in several ways. In effect, Pig Latin programming is similar to specifying a query execution plan, making it easier for programmers to explicitly control the flow of their data processing task.

SQL is oriented around queries that produce a single result. SQL handles trees naturally, but has no built in mechanism for splitting a data processing stream and applying different operators to each sub-stream. Pig Latin script describes a directed acyclic graph (DAG) rather than a pipeline.

Pig Latin's ability to include user code at any point in the pipeline is useful for pipeline development. If SQL is used, data must first be imported into the database, and then the cleansing and transformation process can begin.


Hadoop Component Apache Pig, Online Hadoop Course
src: s3.amazonaws.com


See also

  • Apache Hive
  • Sawzall -- similar tool from Google

Jobs By HadoopExam.com : Hadoop and Bigdata with Java - YouTube
src: i.ytimg.com


References


Hadoop Component Apache Pig, Online Hadoop Course
src: s3.amazonaws.com


External links

  • Official website

Source of the article : Wikipedia

Comments
0 Comments