Presentation is loading. Please wait.

Presentation is loading. Please wait.

Pig Latin Olston, Reed, Srivastava, Kumar, and Tomkins. Pig Latin: A Not-So-Foreign Language for Data Processing. SIGMOD 2008. Shahram Ghandeharizadeh.

Similar presentations


Presentation on theme: "Pig Latin Olston, Reed, Srivastava, Kumar, and Tomkins. Pig Latin: A Not-So-Foreign Language for Data Processing. SIGMOD 2008. Shahram Ghandeharizadeh."— Presentation transcript:

1 Pig Latin Olston, Reed, Srivastava, Kumar, and Tomkins. Pig Latin: A Not-So-Foreign Language for Data Processing. SIGMOD 2008. Shahram Ghandeharizadeh Computer Science Department University of Southern California

2 A Shared-Nothing Framework Shared-nothing architecture consisting of thousands of nodes! Shared-nothing architecture consisting of thousands of nodes!  A node is an off-the-shelf, commodity PC. Google File System Google’s Bigtable Data Model Google’s Map/Reduce Framework Yahoo’s Pig Latin …….

3 Pig Latin Supports read-only data analysis workloads that are scan-centric; no transactions! Supports read-only data analysis workloads that are scan-centric; no transactions! Fully nested data model. Fully nested data model.  Does not satisfy 1NF! By definition will violate the other normal forms. Extensive support for user-defined functions. Extensive support for user-defined functions.  UDF as first class citizen. Manages plain input files without any schema information. Manages plain input files without any schema information. A novel debugging environment. A novel debugging environment.

4 Data Models Conceptual Logical Physical You are here! Relational data model Relational Algebra SQL

5 Data Models Conceptual Logical Physical You are here! Nested data model Pig Latin

6 Why Nested Data Model? Closer to how programmers think and more natural to them. Closer to how programmers think and more natural to them.  E.g., To capture information about the positional occurrences of terms in a collection of documents, a programmer may create a structure of the form Idx > for each term.  Normalization of the data creates two tables: Term_info: (TermId, termString, ….) Pos_info: (TermId, documentId, position)  Obtain positional occurrence by joining these two tables on TermId and grouping on  Obtain positional occurrence by joining these two tables on TermId and grouping on

7 Why Nested Data Model? Data is often stored on disk in an inherently nested fashion. Data is often stored on disk in an inherently nested fashion.  A web crawler might output for each url, the set of outlinks from that url. A nested data model justifies a new algebraic language! A nested data model justifies a new algebraic language! Adaptation by programmers because it is easier to write user-defined functions. Adaptation by programmers because it is easier to write user-defined functions.

8 Dataflow Language User specifies a sequence of steps where each step specifies only a single, high level data transformation. Similar to relational algebra and procedural – desirable for programmers. User specifies a sequence of steps where each step specifies only a single, high level data transformation. Similar to relational algebra and procedural – desirable for programmers. With SQL, the user specifies a set of declarative constraints. Non-procedural and desirable for non-programmers. With SQL, the user specifies a set of declarative constraints. Non-procedural and desirable for non-programmers.

9 Dataflow Language: Example A high level program that specifies a query execution plan. A high level program that specifies a query execution plan.  Example: For each sufficiently large category, retrieve the average pagerank of high-pagerank urls in that category.  SQL assuming a table urls (url, category, pagerank) SELECTcategory, AVG(pagerank) FROMurls WHEREpagerank > 0.2 GROUP BYcategory HAVINGcount(*) > 1,000,000

10 Dataflow Language: Example (Cont…) A high level program that specifies a query execution plan. A high level program that specifies a query execution plan.  Example: For each sufficiently large category, retrieve the average pagerank of high-pagerank urls in that category.  Pig Latin: 1. Good_urls = FILTER urls BY pagerank > 0.2; 2. Groups = GROUP Good_urls BY category; 3. Big_groups = FILTER Groups by COUNT(Good_urls) > 1,000,000; 4. Output = FOREACH Big_groups GENERATE category, AVG(Good_urls, AVG(Good_urls.pagerank); Availability of schema is optional! Columns are referenced using $0, $1, $2, …

11 Lazy Execution Database style optimization by lazy processing of expressions. Database style optimization by lazy processing of expressions. Example Example Recall urls: (url, category, pagerank) Set of urls of pages that are classified as spam and have a high pagerank score. 1. Spam_urls = Filter urls BY isSpam(url); 2. Culprit_urls = FILTER spam_urls BY pagerank > 0.8; Optimized execution: 1. HighRank_urls = FILTER urls BY pagerank > 0.8; 2. Cultprit_urls = FILTER HighRank_urls BY isSpam (url);

12 Quick Start/Interoperability To process a file, the user provides a function that gives Pig the ability to parse the content of the file into records. To process a file, the user provides a function that gives Pig the ability to parse the content of the file into records. Output of a Pig program is formatted based on a user-defined function. Output of a Pig program is formatted based on a user-defined function. Why do not conventional DBMSs do the same? (They require importing data into system-managed tables) Why do not conventional DBMSs do the same? (They require importing data into system-managed tables)

13 Quick Start/Interoperability To process a file, the user provides a function that gives Prig the ability to parse the content of the file into records. To process a file, the user provides a function that gives Prig the ability to parse the content of the file into records. Output of a Pig program is formatted based on a user-defined function. Output of a Pig program is formatted based on a user-defined function. Why do not conventional DBMSs do the same? (They require importing data into system-managed tables) Why do not conventional DBMSs do the same? (They require importing data into system-managed tables)  To enable transactional consistency guarantees,  To enable efficient point lookups (RIDs),  To curate data on behalf of the user, and record the schema so that other users can make sense of the data.

14 Pig

15 Data Model Consists of four types: Consists of four types:  Atom: Contains a simple atomic value such as a string or a number, e.g., ‘Joe’.  Tuple: Sequence of fields, each of which might be any data type, e.g., (‘Joe’, ‘lakers’)  Bag: A collection of tuples with possible duplicates. Schema of a bag is flexible.  Map: A collection of data items, where each item has an associated key through which it can be looked up. Keys must be data atoms. Flexibility enables data to change without re-writing programs.

16 A Comparison with Relational Algebra Pig Latin Pig Latin  Everything is a bag.  Dataflow language. Relational Algebra Relational Algebra  Everything is a table.  Dataflow language.

17 Expressions in Pig Latin

18 Specifying Input Data Use LOAD command to specify input data file. Use LOAD command to specify input data file. Input file is query_log.txt Input file is query_log.txt Convert input file into tuples using myLoad deserializer. Convert input file into tuples using myLoad deserializer. Loaded tuples have 3 fields. Loaded tuples have 3 fields. USING and AS clauses are optional. USING and AS clauses are optional.  Default serializer that expects a plain text, tab-deliminated file, is used. No schema  reference fields by position $0 No schema  reference fields by position $0 Return value, assigned to “queries”, is a handle to a bag. Return value, assigned to “queries”, is a handle to a bag.  “queries” can be used as input to subsequent Pig Latin expressions.  Handles such as “queries” are logical. No data is actually read and no processing carried out until the instruction that explicitly asks for output (STORE).  Think of it as a “logical view”.

19 Per-tuple Processing Iterate members of a set using FOREACH command. Iterate members of a set using FOREACH command. expandQuery is a UDF that generates a bag of likely expansions of a given query string. expandQuery is a UDF that generates a bag of likely expansions of a given query string. Semantics: Semantics:  No dependence between processing of different tupels of the input  Parallelism!  GENERATE can be followed by a list of any expression from Table 1.

20 FOREACH & Flattening To eliminate nesting in data, use FLATTEN. To eliminate nesting in data, use FLATTEN. FLATTEN consumes a bag, extracts the fields of the tuples in the bag, and makes them fields of the tuple being output by GENERATE, removing one level of nesting. FLATTEN consumes a bag, extracts the fields of the tuples in the bag, and makes them fields of the tuple being output by GENERATE, removing one level of nesting. OUTPUT

21 FILTER Discards unwanted data. Identical to the select operator of relational algebra. Discards unwanted data. Identical to the select operator of relational algebra. Synatx: Synatx:  FILTER bag-id BY expression  Expression is: field-name op Constant Field-name op UDF op might be ==, eq, !=, neq,, =  A comparison operation may utilize boolean operators (AND, OR, NOT) with several expressions

22 A Comparison with Relational Algebra Pig Latin Pig Latin  Everything is a bag.  Dataflow language.  FILTER is same as the Select operator. Relational Algebra Relational Algebra  Everything is a table.  Dataflow language.  Select operator is same as the FILTER cmd.

23 MAP part of MapReduce : Grouping related data COGROUP groups together tuples from one or more data sets that are related in some way. COGROUP groups together tuples from one or more data sets that are related in some way. Example: Example:  Imagine two data sets:  Results contains, for different query strings, the urls shown as search results and the position at which they are shown.  Revenue contains, for different query strings, and different ad slots, the average amount of revenue made by the ad for that query string at that slot.  For a queryString, group data together. (querystring, adSlot, amount)

24 COGROUP The output of a COGROUP contains one tuple for each group. The output of a COGROUP contains one tuple for each group.  First field of the tuple, named group, is the group identifier.  Each of the next fields is a bag, one for each input being cogrouped, and is named the same as the alias of that input.

25 COGROUP Grouping can be performed according to arbitrary expressions which may include UDFs. Grouping can be performed according to arbitrary expressions which may include UDFs. Grouping is different than “Join” Grouping is different than “Join”

26 COGROUP is not JOIN Assign search revenue to search-result urls to figure out the monetary worth of each url. A UDF, distributeRevenue attributes revenue from the top slot entirely to the first search result, while the revenue from the side slot may be attributed equally to all the results. Assign search revenue to search-result urls to figure out the monetary worth of each url. A UDF, distributeRevenue attributes revenue from the top slot entirely to the first search result, while the revenue from the side slot may be attributed equally to all the results.

27 WITH JOIN

28 GROUP A special case of COGROUP when there is only one data set involved. A special case of COGROUP when there is only one data set involved. Example: Find the total revenue for each query string. Example: Find the total revenue for each query string.

29 JOIN Pig Latin supports equi-joins. Pig Latin supports equi-joins. Implemented using COGROUP Implemented using COGROUP

30 MapReduce in Pig Latin A map function operates on one input tuple at a time, and outputs a bag of key-value pairs. A map function operates on one input tuple at a time, and outputs a bag of key-value pairs. The reduce function operates on all values for a key at a time to produce the final results. The reduce function operates on all values for a key at a time to produce the final results.

31 MapReduce Plan Compilation Map tasks assign keys for grouping, and the reduce tasks process a group at a time. Map tasks assign keys for grouping, and the reduce tasks process a group at a time. Compiler: Compiler: Converts each (CO)GROUP command in the logical plan into a distinct MapReduce job consisting of its own MAP and REDUCE functions. Converts each (CO)GROUP command in the logical plan into a distinct MapReduce job consisting of its own MAP and REDUCE functions.

32 Debugging Environment Iterative process for programming. Iterative process for programming. Sandbox data set generated automatically to show results for the expressions. Sandbox data set generated automatically to show results for the expressions.


Download ppt "Pig Latin Olston, Reed, Srivastava, Kumar, and Tomkins. Pig Latin: A Not-So-Foreign Language for Data Processing. SIGMOD 2008. Shahram Ghandeharizadeh."

Similar presentations


Ads by Google