<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hive interview questions - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/hive-interview-questions/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/hive-interview-questions/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Mon, 13 Sep 2021 06:07:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>hive interview questions - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/hive-interview-questions/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is the difference between &#8216;select from table&#8217; and &#8216;select column from table&#8217; in hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:52 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[explain in hive]]></category>
		<category><![CDATA[explain the difference between sql and apache hive.]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive query without mapreduce]]></category>
		<category><![CDATA[hive questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[how will you optimize hive performance]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=602</guid>

					<description><![CDATA[Answer : Table in Hive is stored as a directory in the HDFS...]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="difference-between-select-from-table-and-select-column-from-table-in-hive" class="color-green" style="text-align: justify;">Difference between &#8216;select * from table&#8217; and &#8216;select column from table&#8217; in hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Table in Hive is stored as a directory in the HDFS.</li>
<li>Using select from table the Hive query processor simply goes directory that have one or more files in table schema.</li>
<li>You may do this if you have very small data like less than a Gigabyte.</li>
<li>In real clusters if you hit ‘select * from table’, it may have data in Terabytes and displaying that will run for long time.</li>
<li>Hive achieved sequence of map reduce programs that reads data from table stored on Hadoop Distributed File System.</li>
<li>Any data processing you do in Hive is achieved through sequence of map reduce programs that reads data from table stored on HDFS.</li>
<li>Hive map reduce based on query processing engine.</li>
<li>Tables have wide number of columns that representing different values.To perform select column the map reduce program will scan all rows and extract a column.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;">
<div class="col-sm-12">
<div id="bsa-zone_1590522538159-8_123456"></div>
</div>
</div>
<div class="ImageContent">
<div class="hddn" style="text-align: justify;"><a href="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png"><img decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/hive/select-from-table-and-select-column-from-table-in-hive.png" alt="select-from-table-and-select-column-from-table-in-hive" width="288" height="149" /></a></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-select-from-table-and-select-column-from-table-in-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the difference between hive view and a hive external table When should it be used ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-view-and-a-hive-external-table-when-should-it-be-used/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-view-and-a-hive-external-table-when-should-it-be-used/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:46 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[external table in hive example]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive internal vs external tables performance]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive materialized view]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[hive system tables]]></category>
		<category><![CDATA[hive view definition]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[list all views in hive]]></category>
		<category><![CDATA[managed table vs external table in hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[show tables in hive]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=601</guid>

					<description><![CDATA[Answer : When the user queries table x the query planner....]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="difference-between-hive-view-and-a-hive-external-table-when-should-it-be-used" class="color-green" style="text-align: justify;">Difference between hive view and a hive external table When should it be used</h2>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img fetchpriority="high" decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/hive/using-apache-hive-with-high-performance.png" alt="using-apache-hive-with-high-performance" width="527" height="267" /></div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>A view is a query which is defined as a table.</li>
</ul>
</div>
</div>
<p style="text-align: justify;">For example:</p>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>CREATE VIEW x AS SELECT * FROM y;</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>When the user queries table x the query planner combines the queries and executes a single one.</li>
</ul>
</div>
</div>
<p style="text-align: justify;">This is something like</p>
<div class="code-embed-wrapper"> <div class="code-embed-infos"> </div> <pre class="language-markdown code-embed-pre line-numbers"  data-start="1" data-line-offset="0"><code class="language-markdown code-embed-code">SELECT * FROM x;<br/><br/>is translated to<br/><br/>SELECT * FROM y;<br/>Then:<br/><br/>DROP TABLE abc;<br/>If the table is defined as external:<br/><br/>CREATE EXTERNAL table abc (….);</code></pre> </div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>An external table is something totally different. An external TABLE is a table that when DROPPED will NOT remove the physical data.</li>
<li>This is a alternative that affects how data is loaded, controlled, and managed.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="use-external-tables" class="color-green">Use EXTERNAL tables:</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>The data is also used outside of Hive.</li>
<li>For example, the data files are browse and processed by an existing program that doesn&#8217;t lock the files.</li>
<li>Data needs to stay within the underlying location even after a DROP TABLE.</li>
<li>Pointing multiple patterns at a single data it sets repeats via possible patterns.User can use custom location like ASV.</li>
<li>Hive does not contain own data and control settings, dirs, etc.In Hive existing table (i.e) not modify.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="use-internal-tables" class="color-green">Use INTERNAL tables:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">Temporary data needs Hive to manage the table and data.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-view-and-a-hive-external-table-when-should-it-be-used/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the difference between Hive and HBase ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-and-hbase/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-and-hbase/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:28 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[difference between hbase and hdfs]]></category>
		<category><![CDATA[difference between hive and hdfs]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[how to use hbase with hadoop]]></category>
		<category><![CDATA[how will you optimize hive performance]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[when to use hbase]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=599</guid>

					<description><![CDATA[Answer : Hive is query engine...]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="difference-between-hive-and-hbase" class="color-green">Difference between Hive and HBase</h2>
</div>
</div>
<div class="ImageContent">
<div class="hddn"><img decoding="async" class="alignnone size-medium aligncenter" src="https://cdn.wikitechy.com/interview-questions/hive/integration-of-hive-and-hbase.png" alt="integration of hive and hbase" width="588" height="386" /></div>
</div>
<div class="text-center row">
<div class="col-sm-12">
<div id="bsa-zone_1590522538159-8_123456"></div>
</div>
</div>
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Hive</th>
<th>HBase</th>
</tr>
<tr>
<td class="text-leftalign" align="justify">Hive is query engine</td>
<td class="text-leftalign" align="justify">HBase is a data storage particularly for<br />
unstructured data.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Apache Hive is mainly used for<br />
batch processing i.e. OLAP</td>
<td class="text-leftalign" align="justify">HBase is extensively used for transactional<br />
processing wherein the response time of the query<br />
is not highly interactive i.e. OLTP.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Operations in Hive are<br />
used to transformed into mapreduce jobs.</td>
<td class="text-leftalign" align="justify">Operations in HBase are run<br />
in real-time on the database</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">For big data applications that require complex<br />
and fine grained processing, Hadoop MapReduce<br />
is the best choice.</td>
<td class="text-leftalign" align="justify">HBase should be used when Data model<br />
schema is sparse.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">It used for data warehousing requirements<br />
the programmers do not<br />
write complex mapreduce code.</td>
<td class="text-leftalign" align="justify">HBase is an ideal big data solution if the<br />
application requires random read or random<br />
write operations or both.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Hive does not currently<br />
support update statements.</td>
<td class="text-leftalign" align="justify">HBase queries are written in a custom language<br />
that needs to be learned.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify"><b>Hive</b> does not provide interactive<br />
querying it only runs batch processes on Hadoop.</td>
<td class="text-leftalign" align="justify">Apache <b>HBase</b> is a NoSQL key/value store which<br />
runs on top of HDFS.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Hive has some limitations<br />
of high latency</td>
<td class="text-leftalign" align="justify">HBase does not have analytical capabilities</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Hive is to analytical queries.</td>
<td class="text-leftalign" align="justify">HBase is to real-time querying</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Hive used for analytical querying of<br />
data collected over a period of time.Hive<br />
should not be used for real-time querying.</td>
<td class="text-leftalign" align="justify">HBase is perfect for real-time example<br />
Facebook use for messaging and real-time analytics.<br />
They may even be using it to count Facebook likes.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-hive-and-hbase/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the difference between Apache Hive and Apache Spark ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-apache-hive-and-apache-spark/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-apache-hive-and-apache-spark/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 22:18:11 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[difference between hive sql and spark sql]]></category>
		<category><![CDATA[difference between spark sql and sql]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[hortonworks hive vs spark]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[shark vs hive on spark]]></category>
		<category><![CDATA[spark sql vs hive on tez]]></category>
		<category><![CDATA[spark sql vs hivesql]]></category>
		<category><![CDATA[spark vs hive vs pig]]></category>
		<category><![CDATA[sparksql hive on spark]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=597</guid>

					<description><![CDATA[Answer : Apache hive is a distributed query...]]></description>
										<content:encoded><![CDATA[<h2 id="difference-between-apache-hive-and-apache-spark" class="color-green">Difference between Apache Hive and Apache Spark</h2>
<div class="ImageContent">
<div class="hddn"><img loading="lazy" decoding="async" class="alignnone size-medium aligncenter" src="https://cdn.wikitechy.com/interview-questions/hive/what-is-the-difference-between-apache-hive-and-apache-spark.png" alt="apache-hive-and-apache-spark" width="602" height="399" /></div>
</div>
<table class="table-bordered table-striped table table-responsive">
<tbody>
<tr>
<th>Apache-Hive</th>
<th>Apache-Spark</th>
</tr>
<tr>
<td class="text-leftalign" align="justify">Apache hive is a distributed query<br />
engine built on top of the hadoop eco-system.<br />
Hive is introduced by facebook and later<br />
on they open sourced it.</td>
<td class="text-leftalign" align="justify">Apache spark may be a cluster computing framework that runs on Hadoop and handles differing kinds of data.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">The language used by hive to write queries is<br />
HQL i.e., Hive+SQL.</td>
<td class="text-leftalign" align="justify">Spark has rich resources for handling the data and most importantly, it is 10-20x faster than Hadoop’s MapReduce.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">These hive queries can internally get converted<br />
into MapReduce job and this is fully handled<br />
by the Hadoop framework reducing the<br />
work load on the developers.</td>
<td class="text-leftalign" align="justify">It attains this speed of computation by its in-memory primitives. The data is cached and is present in the memory (RAM) and performs all the computations in-memory.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Tools to alter easy access to data via SQL,<br />
so enabling data warehousing tasks such as<br />
extract/transform/load (ETL), reporting,<br />
and data analysis.</td>
<td class="text-leftalign" align="justify">It is fast and grouping the computing system. It provides high-level in Java, Scala, Python,R, and an optimized engine that supports execution graphs.</td>
</tr>
<tr>
<td class="text-leftalign" align="justify">Access files to stored either directly<br />
in Apache HDFS or such as Apache HBase</td>
<td class="text-leftalign" align="justify">Spark structured query language is a Spark module for structured data processing, in which in-memory processing is its core.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-difference-between-apache-hive-and-apache-spark/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the location where “Hive” stores table data ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-location-where-hive-stores-table-data/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-location-where-hive-stores-table-data/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:51:17 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[check if table exists in hive]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[create external table hive]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive database location]]></category>
		<category><![CDATA[hive external table location]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[hive show database location]]></category>
		<category><![CDATA[hive show external table location]]></category>
		<category><![CDATA[hive show table location]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[where does hive store data]]></category>
		<category><![CDATA[where does hive store metadata]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=582</guid>

					<description><![CDATA[Answer : The default location of the hive table is....]]></description>
										<content:encoded><![CDATA[<h2 id="hive-stores-table-data" class="color-green" style="text-align: justify;">&#8220;Hive&#8221; stores table data</h2>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img loading="lazy" decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/hive/hive-architecture.png" alt="hive architecture" width="960" height="720" /></div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">The default location of the hive table is: <code>/user/hive/warehouse/databasename</code></li>
<li style="text-align: justify;">Go to in browser, it will take to a page with a Browse the filesystem link.</li>
<li style="text-align: justify;">In the <code>$HIVE_HOME/conf</code> directory there is the hive-default.xml and/or hive-site.xml which has the hive.metastore.warehouse.dir property.</li>
<li style="text-align: justify;">That value is where the user want to navigate to after clicking the Browse the filesystem link.</li>
<li style="text-align: justify;">Once the user navigate to that location, they will see the names of their tables.</li>
<li style="text-align: justify;">Clicking on a table name (which is simply a folder) can then expose the partitions of the table.</li>
<li style="text-align: justify;">If you wish access to data, you can use a Hive query and output the result to a file.These will have the exact same structure (divider between columns, ect) because the files on the HDFS.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-location-where-hive-stores-table-data/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is the best studio software/tool to run HIVE SQL/HQL queries by a data analyst ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-the-best-studio-software-tool-to-run-hive-sql-hql-queries-by-a-data-analyst/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-the-best-studio-software-tool-to-run-hive-sql-hql-queries-by-a-data-analyst/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:51:04 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[difference between hive and hdfs]]></category>
		<category><![CDATA[difference between hive and hue]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive hql]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive ql]]></category>
		<category><![CDATA[hive query based interview questions]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[hive sql]]></category>
		<category><![CDATA[hive sql commands]]></category>
		<category><![CDATA[hive sql syntax]]></category>
		<category><![CDATA[hive terminal online]]></category>
		<category><![CDATA[hive vs mapreduce performance]]></category>
		<category><![CDATA[hiveql]]></category>
		<category><![CDATA[hiveql vs sql]]></category>
		<category><![CDATA[hql hive]]></category>
		<category><![CDATA[hue vs hive hadoop]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=580</guid>

					<description><![CDATA[Answer : Hue has a Web SQL Editor with autocomplete, display of table/data samples, light graphing, query download]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="best-studio-software-tool-to-run-hive-sql-hql-queries-by-a-data-analyst" class="color-green" style="text-align: justify;">Best studio software/tool to run HIVE SQL/HQL queries by a data analyst</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Hue has a Web SQL Editor with autocomplete, display of table/data samples, light graphing, query download</li>
</ul>
</div>
</div>
<div class="subheading" style="text-align: justify;">
<h2 id="1-razorsql">1. RazorSQL</h2>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>SQL Query Tool and Database Client</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>RazorSQL is an SQL query tool, database editor, database browser, and database administration tool for Windows, macOS / Mac OS X, Linux, and Solaris.</li>
</ul>
</div>
</div>
<div class="subheading" style="text-align: justify;">
<h2 id="2-sql-editor">2.SQL Editor</h2>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Edit SQL scripts.</li>
<li>Run SQL queries.</li>
<li>Auto column and auto table lookup.</li>
<li>Multi-tabular query display.</li>
<li>Supports over 20 programming languages including SQL, PL/SQL, T-SQL, PHP, HTML, XML, Java, and more.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;"></div>
<div class="subheading" style="text-align: justify;">
<h2 id="3-database-editor">3. Database editor</h2>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Edit database tables in a spreadsheet format with support for finding and replacing data, automatic generation of SQL, and support for editing multi-line data.</li>
</ul>
</div>
</div>
<div class="subheading" style="text-align: justify;">
<h2 id="4-sql-query-builder">4. Sql query builder</h2>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Easily build select, insert, delete, and update SQL queries and statements. Build multi-table joins.</li>
</ul>
</div>
</div>
<div class="subheading" style="text-align: justify;">
<h2 id="5-database-gui-tools">5. Database GUI Tools</h2>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">Includes tools for creating tables, views, indexes, procedures, functions, triggers, databases, users and tools for altering and dropping tables and views.</li>
<li style="text-align: justify;">Also includes tools for visually editing procedures, functions, and triggers.</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-the-best-studio-software-tool-to-run-hive-sql-hql-queries-by-a-data-analyst/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is DDL statement in hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:19:35 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[create statement]]></category>
		<category><![CDATA[ddl commands in database]]></category>
		<category><![CDATA[ddl statements]]></category>
		<category><![CDATA[ddl statements in sql]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hive case statement]]></category>
		<category><![CDATA[hive ddl]]></category>
		<category><![CDATA[hive ddl commands]]></category>
		<category><![CDATA[hive dml]]></category>
		<category><![CDATA[hive interview]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive interview questions and answers for experienced]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[interview questions on hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=563</guid>

					<description><![CDATA[Answer : The outline of the database schema typically change by SQL statements they are creating, deleting]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="ddl-statement-in-hive" class="color-green" style="text-align: justify;">DDL statement in hive</h2>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img loading="lazy" decoding="async" class="alignnone size-medium aligncenter" src="https://cdn.wikitechy.com/interview-questions/hive/webhcat-arch.png" alt="webhcat server" width="779" height="408" /></div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="ddl-data-definition-language" class="color-green">DDL (Data Definition Language):</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>The outline of the database schema typically change by SQL statements they are creating, deleting, or modifying schema objects such as databases, tables, and views.</li>
<li>Most statements starts with the keywords CREATE, DROP, or ALTER.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="some-of-data-definition-language-statements-are" class="color-green">Some of Data Definition Language statements are:</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>CREATE &#8211; To create an object.</li>
<li>ALTER &#8211; To alter the structure of the existing object·</li>
<li>DROP &#8211; It used to delete objects.</li>
<li>TRUNCATE &#8211; Remove all records from a table, including spaces.</li>
<li>MSCK REPAIR TABLE &#8211; Refresh metadata information.</li>
</ul>
</div>
</div>
<p style="text-align: justify;">The DML statement define as INSERT statement, it involves metadata that must be have nodes, and is also damage the SYNC_DDL query option.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-ddl-statement-in-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is hive ?</title>
		<link>https://www.wikitechy.com/interview-questions/hive/what-is-hive/</link>
					<comments>https://www.wikitechy.com/interview-questions/hive/what-is-hive/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 21:09:15 +0000</pubDate>
				<category><![CDATA[Hive]]></category>
		<category><![CDATA[Accenture interview questions and answers]]></category>
		<category><![CDATA[Altimetrik India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[ANI Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[data of partitioned columns in hive is physically present]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[Genpact interview questions and answers]]></category>
		<category><![CDATA[hadoop hive interview questions]]></category>
		<category><![CDATA[hadoop hive interview questions and answers]]></category>
		<category><![CDATA[highest level data model in hive]]></category>
		<category><![CDATA[hive can be used for real time queries]]></category>
		<category><![CDATA[hive interview]]></category>
		<category><![CDATA[hive interview questions]]></category>
		<category><![CDATA[hive interview questions and answers]]></category>
		<category><![CDATA[hive interview questions and answers for experienced]]></category>
		<category><![CDATA[hive scenario based interview questions]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Impetus Technologies interview questions and answers]]></category>
		<category><![CDATA[Indiabulls Technology Solutions Ltd interview questions and answers]]></category>
		<category><![CDATA[interview questions on hive]]></category>
		<category><![CDATA[maximum size of string in hive]]></category>
		<category><![CDATA[Mindtree interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[pig interview questions]]></category>
		<category><![CDATA[Prokarma Softech Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[Synechron Te interview questions and answers]]></category>
		<category><![CDATA[Tata Consultancy Service interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindra interview questions and answers]]></category>
		<category><![CDATA[Trigent Software interview questions and answers]]></category>
		<category><![CDATA[UnitedHealth Group interview questions and answers]]></category>
		<category><![CDATA[Virtusa Consulting Services Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Wells Fargo interview questions and answers]]></category>
		<category><![CDATA[what is a hive]]></category>
		<category><![CDATA[what is a hive file]]></category>
		<category><![CDATA[what is hive allergy]]></category>
		<category><![CDATA[what is hive in hadoop]]></category>
		<category><![CDATA[what is pig in hadoop]]></category>
		<category><![CDATA[whats a hive]]></category>
		<category><![CDATA[whats hive]]></category>
		<category><![CDATA[whats hives]]></category>
		<category><![CDATA[Wipro Infotech interview questions and answers]]></category>
		<category><![CDATA[Wipro interview questions and answers]]></category>
		<category><![CDATA[Yash Technologies interview questions and answers]]></category>
		<category><![CDATA[Yodlee Infotech Pvt Ltd interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=548</guid>

					<description><![CDATA[Answer : Hive is a component of Hortonworks Data Platform(HDP).]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="hive" class="color-purple" style="text-align: justify;">Hive</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Hive is a component of Hortonworks Data Platform(HDP).</li>
<li>Hive provides a SQL interface to data stored in HDP.</li>
<li>Hive has 3 main functions:</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li style="list-style-type: none;">
<ul>
<li>Data Summarization</li>
<li>Query</li>
<li>Analysis.</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>It supports queries expressed language called HiveQL, which automatically translates SQL like queries into MapReduce jobs executed on Hadoop.</li>
<li>It also enables data serialization and increases flexibility in schema architecture including a system catalog called Hive Metastore.</li>
</ul>
</div>
</div>
<div class="text-center row" style="text-align: justify;"></div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="architecture-of-hive" class="color-purple">Architecture of hive :</h2>
</div>
</div>
<div class="ImageContent" style="text-align: justify;">
<div class="hddn"><img loading="lazy" decoding="async" class="aligncenter size-medium" src="https://cdn.wikitechy.com/interview-questions/Hive/what-is-hive.png" alt="what is hive" width="520" height="373" /></div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="features-of-hive" class="color-purple">Features of hive:</h2>
</div>
</div>
<div class="Content" style="text-align: justify;">
<div class="hddn">
<ul>
<li>Different storage such as plain text, RCFile, ORC, HBase, and others.</li>
<li>Pre-defined functions (UDFs) to manipulate dates, strings, and other data-mining tools.</li>
<li>Hive supports extending the UDF set to handle use-cases not supported by built-in functions.</li>
</ul>
</div>
</div>
<div class="TextHeading" style="text-align: justify;">
<div class="hddn">
<h2 id="limitations-of-hive" class="color-purple">Limitations of Hive:</h2>
</div>
</div>
<div class="Content">
<div class="hddn">
<ul>
<li style="text-align: justify;">Hive supports overwriting or hold data, but not updates and deletes.</li>
<li style="text-align: justify;">In Hive, sub queries are not supported</li>
</ul>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/hive/what-is-hive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
