{"id":155,"date":"2021-07-12T05:19:41","date_gmt":"2021-07-12T05:19:41","guid":{"rendered":"https:\/\/www.wikitechy.com\/interview-questions\/?p=155"},"modified":"2021-09-15T05:11:14","modified_gmt":"2021-09-15T05:11:14","slug":"what-is-the-internal-architecture-of-apache-pig","status":"publish","type":"post","link":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/","title":{"rendered":"What is the internal architecture of Apache Pig ?"},"content":{"rendered":"<div class=\"row\">\n<div class=\"col-sm-12\">\n<div class=\"TextHeading\">\n<div class=\"hddn\">\n<h2 id=\"internal-architecture-of-apache-pig\" class=\"color-green\" style=\"text-align: justify;\">Internal architecture of Apache Pig<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Pig Latin consist of pig to analyze the data from Hadoop.<\/li>\n<li>Its a highlevel data processing language it perform various operations like data types and operators.<\/li>\n<li>To perform a particular task Pig Script is used and execution mechanisms like(Grunt Shell, UDFs, Embedded).<\/li>\n<li>To produce the desired output continuous transformations applied in Pig Framework.<\/li>\n<li>Programmer\u2019s job become easier when converting these scripts into a series of MapReduce jobs.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"text-center row\" style=\"text-align: justify;\">\n<div class=\"col-sm-12\">\n<div id=\"bsa-zone_1590522538159-8_123456\"><\/div>\n<\/div>\n<\/div>\n<div class=\"hddn\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-medium\" src=\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png\" alt=\"Pig Architecture\" width=\"659\" height=\"368\" \/><\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"apache-pig-components\" class=\"color-green\">Apache Pig Components<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>There are various components in the Apache Pig framework.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"parser\" class=\"color-green\">Parser<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>The Pig Scripts are handled by the Parser.It checks the syntax,type checking, and other miscellaneous checks.The output will be like a DAG (directed acyclic graph), which represents the Pig Latin statements and logical operators.<\/li>\n<li>In the DAG, the logical operators of the script are represented as nodes and therefore the data flows are represented as edges.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"optimizer\" class=\"color-green\">Optimizer<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>The logical plan DAG is passed to the logical optimizer,it carries out the logical optimizations,projection and pushdown.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"compiler\" class=\"color-green\">Compiler<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>It compiles the optimized logical plan into a series of MapReduce jobs.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"execution-engine\" class=\"color-green\">Execution engine<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Producing the desired results MapReduce jobs are executed on Hadoop.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"ImageContent\" style=\"text-align: justify;\">\n<div class=\"hddn\"><img decoding=\"async\" class=\"aligncenter size-medium\" src=\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-latin.gif\" alt=\"Pig Latin\" width=\"628\" height=\"351\" \/><\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"pig-latin-data-model\" class=\"color-green\">Pig Latin Data Model<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>It allows datatypes such as map and tuple and it representation of Pig Latin\u2019s data model.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"atom\" class=\"color-green\">Atom<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Any single value in Pig Latin, irrespective of their data, type is known as an Atom.<\/li>\n<li>Values of Pig in Atom are number,int,long,float,double,chararray, and bytearray.<\/li>\n<li>Field define as a piece of data or a simple atomic value. Example \u2212 \u2018xxx\u2019 or \u201830\u2019<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"tuple\" class=\"color-green\">Tuple<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>A record formed by ordered set of fields is known as a tuple. A tuple is similar to a row in a table of RDBMS. Example \u2212 (xxx, 30)<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"bag\" class=\"color-green\">Bag<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Is an unordered set of tuples.<\/li>\n<li>A collection of tuples (non-unique) is known as a bag.Tuple have any number of fields (flexible schema).<\/li>\n<li>No need that every tuple contain the same number of fields and the same position (column) have the same type.\n<ul>\n<li><b>Example<\/b>\u00a0\u2212 {(xxx, 30), (yyyy, 45)}<\/li>\n<\/ul>\n<\/li>\n<li>A Field contains bags in context its called inner bags.\n<ul>\n<li><b>Example<\/b>\u00a0\u2212 {xxx, 30, {98xxxxx22,\u00a0xxxx@gmail.com,}}<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"map\" class=\"color-green\">Map<\/h2>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Map is a set of key-value pairs the key define as chararray and its unique.<\/li>\n<li>It is represented by \u2018[]\u2019 Example \u2212 [name#xxx, age#30]<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"subheading\" style=\"text-align: justify;\">\n<h2 id=\"relation\" class=\"color-green\">Relation<\/h2>\n<\/div>\n<div class=\"Content\">\n<div class=\"hddn\">\n<ul>\n<li style=\"text-align: justify;\">A relation is a bag of tuples.Pig Latin relations are unordered (there is no guarantee that tuples are processed in any particular order).<\/li>\n<\/ul>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Answer:Pig Latin consist of pig to analyze the data from Hadoop<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[456],"tags":[195,365,460,509,491,203,199,214,209,488,205,465,485,486,222,484,515,490,196,286,207,487,217,516,512,477,508,517,518,519,461,513,468,463,489,462,493,367,514,483,492,200,197,280,364,285],"class_list":["post-155","post","type-post","status-publish","format-standard","hentry","category-apache-pig","tag-accenture-interview-questions-and-answers","tag-amazon-development-centre-india-pvt-ltd-interview-questions-and-answers","tag-apache-pig-architecture-diagram","tag-apache-pig-interview-questions","tag-applied-materials-interview-questions-and-answers","tag-capgemini-interview-questions-and-answers","tag-casting-networks-india-pvt-limited-interview-questions-and-answers","tag-cgi-group-inc-interview-questions-and-answers","tag-collabera-technologies-interview-questions-and-answers","tag-crisil-limited-interview-questions-and-answers","tag-dell-international-services-india-pvt-ltd-interview-questions-and-answers","tag-different-ways-of-executing-pig-script","tag-ernst-young-interview-questions-and-answers","tag-exide-industries-interview-questions-and-answers","tag-flipkart-interview-questions-and-answers","tag-genpact-interview-questions-and-answers","tag-hadoop-pig-architecture","tag-hexaware-technologies-interview-questions-and-answers","tag-ibm-interview-questions-and-answers","tag-lt-infotech-interview-questions-and-answers","tag-mphasis-interview-questions-and-answers","tag-myntra-designs-pvt-ltd-interview-questions-and-answers","tag-peoplestrong-interview-questions-and-answers","tag-pig-architecture","tag-pig-architecture-in-hadoop","tag-pig-interview-questions","tag-pig-interview-questions-and-answers","tag-pig-interview-questions-and-answers-for-experienced","tag-pig-interview-questions-for-experienced","tag-pig-interview-questions-for-experienced-and-freshers","tag-pig-latin-application-flow","tag-pig-latin-data-model","tag-pig-practice-questions","tag-processing-data-using-apache-pig","tag-prokarma-softech-nterview-questions-and-answers","tag-properties-of-pig","tag-quintiles-interview-questions-and-answers","tag-rbs-india-development-centre-pvt-ltd-interview-questions-and-answers","tag-relational-operators-in-pig","tag-reliance-industries-ltd-interview-questions-and-answers","tag-syngene-international-limited-interview-questions-and-answers","tag-tech-mahindra-interview-questions-and-answers","tag-unitedhealth-group-interview-questions-and-answers","tag-virtusa-consulting-services-pvt-ltd-interview-questions-and-answers","tag-wells-fargo-interview-questions-and-answers","tag-xoriant-solutions-pvt-ltd-interview-questions-and-answers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is the internal architecture of Apache Pig ? - Pig Interview Questions<\/title>\n<meta name=\"description\" content=\"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is the internal architecture of Apache Pig ? - Pig Interview Questions\" \/>\n<meta property=\"og:description\" content=\"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/\" \/>\n<meta property=\"og:site_name\" content=\"Wikitechy\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-12T05:19:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-15T05:11:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png\" \/>\n<meta name=\"author\" content=\"Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/\"},\"author\":{\"name\":\"Editor\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"headline\":\"What is the internal architecture of Apache Pig ?\",\"datePublished\":\"2021-07-12T05:19:41+00:00\",\"dateModified\":\"2021-09-15T05:11:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/\"},\"wordCount\":407,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/pig-architecture.png\",\"keywords\":[\"Accenture interview questions and answers\",\"Amazon Development Centre India Pvt Ltd interview questions and answers\",\"apache pig architecture diagram\",\"apache pig interview questions\",\"Applied Materials interview questions and answers\",\"Capgemini interview questions and answers\",\"CASTING NETWORKS INDIA PVT LIMITED interview questions and answers\",\"CGI Group Inc interview questions and answers\",\"Collabera Technologies interview questions and answers\",\"CRISIL LIMITED interview questions and answers\",\"Dell International Services India Pvt Ltd interview questions and answers\",\"different ways of executing pig script\",\"Ernst &amp; Young interview questions and answers\",\"Exide Industries interview questions and answers\",\"Flipkart interview questions and answers\",\"Genpact interview questions and answers\",\"hadoop pig architecture\",\"Hexaware Technologies interview questions and answers\",\"IBM interview questions and answers\",\"L&amp;T Infotech interview questions and answers\",\"Mphasis interview questions and answers\",\"Myntra Designs Pvt. Ltd interview questions and answers\",\"PeopleStrong interview questions and answers\",\"pig architecture\",\"pig architecture in hadoop\",\"pig interview questions\",\"pig interview questions and answers\",\"pig interview questions and answers for experienced\",\"pig interview questions for experienced\",\"Pig Interview Questions for experienced and freshers\",\"pig latin application flow\",\"pig latin data model\",\"pig practice questions\",\"processing data using apache pig\",\"Prokarma Softech nterview questions and answers\",\"properties of pig\",\"Quintiles interview questions and answers\",\"RBS India Development Centre Pvt Ltd interview questions and answers\",\"relational operators in pig\",\"Reliance Industries Ltd interview questions and answers\",\"Syngene International Limited interview questions and answers\",\"Tech Mahindra interview questions and answers\",\"UnitedHealth Group interview questions and answers\",\"Virtusa Consulting Services Pvt Ltd interview questions and answers\",\"Wells Fargo interview questions and answers\",\"Xoriant Solutions Pvt Ltd interview questions and answers\"],\"articleSection\":[\"Apache Pig\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/\",\"name\":\"What is the internal architecture of Apache Pig ? - Pig Interview Questions\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/pig-architecture.png\",\"datePublished\":\"2021-07-12T05:19:41+00:00\",\"dateModified\":\"2021-09-15T05:11:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"description\":\"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/what-is-the-internal-architecture-of-apache-pig\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cdn.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/pig-architecture.png\",\"contentUrl\":\"https:\\\/\\\/cdn.wikitechy.com\\\/interview-questions\\\/apache-pig\\\/pig-architecture.png\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/\",\"name\":\"Wikitechy\",\"description\":\"Interview Questions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\",\"name\":\"Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"caption\":\"Editor\"},\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/author\\\/editor\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is the internal architecture of Apache Pig ? - Pig Interview Questions","description":"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/","og_locale":"en_US","og_type":"article","og_title":"What is the internal architecture of Apache Pig ? - Pig Interview Questions","og_description":"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.","og_url":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/","og_site_name":"Wikitechy","article_published_time":"2021-07-12T05:19:41+00:00","article_modified_time":"2021-09-15T05:11:14+00:00","og_image":[{"url":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png","type":"","width":"","height":""}],"author":"Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#article","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/"},"author":{"name":"Editor","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"headline":"What is the internal architecture of Apache Pig ?","datePublished":"2021-07-12T05:19:41+00:00","dateModified":"2021-09-15T05:11:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/"},"wordCount":407,"commentCount":0,"image":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png","keywords":["Accenture interview questions and answers","Amazon Development Centre India Pvt Ltd interview questions and answers","apache pig architecture diagram","apache pig interview questions","Applied Materials interview questions and answers","Capgemini interview questions and answers","CASTING NETWORKS INDIA PVT LIMITED interview questions and answers","CGI Group Inc interview questions and answers","Collabera Technologies interview questions and answers","CRISIL LIMITED interview questions and answers","Dell International Services India Pvt Ltd interview questions and answers","different ways of executing pig script","Ernst &amp; Young interview questions and answers","Exide Industries interview questions and answers","Flipkart interview questions and answers","Genpact interview questions and answers","hadoop pig architecture","Hexaware Technologies interview questions and answers","IBM interview questions and answers","L&amp;T Infotech interview questions and answers","Mphasis interview questions and answers","Myntra Designs Pvt. Ltd interview questions and answers","PeopleStrong interview questions and answers","pig architecture","pig architecture in hadoop","pig interview questions","pig interview questions and answers","pig interview questions and answers for experienced","pig interview questions for experienced","Pig Interview Questions for experienced and freshers","pig latin application flow","pig latin data model","pig practice questions","processing data using apache pig","Prokarma Softech nterview questions and answers","properties of pig","Quintiles interview questions and answers","RBS India Development Centre Pvt Ltd interview questions and answers","relational operators in pig","Reliance Industries Ltd interview questions and answers","Syngene International Limited interview questions and answers","Tech Mahindra interview questions and answers","UnitedHealth Group interview questions and answers","Virtusa Consulting Services Pvt Ltd interview questions and answers","Wells Fargo interview questions and answers","Xoriant Solutions Pvt Ltd interview questions and answers"],"articleSection":["Apache Pig"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/","url":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/","name":"What is the internal architecture of Apache Pig ? - Pig Interview Questions","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#primaryimage"},"image":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png","datePublished":"2021-07-12T05:19:41+00:00","dateModified":"2021-09-15T05:11:14+00:00","author":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"description":"What is the internal architecture of Apache Pig ? - Pig Interview Questions for experienced and freshers - The language used to analyse data in Hadoop using Pig is known as Pig Latin.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-pig\/what-is-the-internal-architecture-of-apache-pig\/#primaryimage","url":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png","contentUrl":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-pig\/pig-architecture.png"},{"@type":"WebSite","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website","url":"https:\/\/www.wikitechy.com\/interview-questions\/","name":"Wikitechy","description":"Interview Questions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wikitechy.com\/interview-questions\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757","name":"Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","caption":"Editor"},"url":"https:\/\/www.wikitechy.com\/interview-questions\/author\/editor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/155","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/comments?post=155"}],"version-history":[{"count":5,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/155\/revisions"}],"predecessor-version":[{"id":3769,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/155\/revisions\/3769"}],"wp:attachment":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/media?parent=155"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/categories?post=155"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/tags?post=155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}