About

Edit photo

Wednesday, March 23, 2016

Wednesday, March 16, 2016

What is SQOOP? - step by step


::SQOOP::  (SQL + HADOOP) Sqoop is one of the component of Hadoop, built on top of HDFS is meant for interacting with RDBMS systems. SQOOP == SQL + HADOOP RDBMS(Oracle or MySQL): Relational DB carries structured data. Sometimes if you are getting huge amount...

Monday, March 7, 2016

What is PIG? - Hadoop


Apache PIG is meant for process the data i.e., for data summarization, querying and advanced querying. Pig has its own scripting language called, pig Latin scripting. Whenever we are executing PIG actions, internally Map Reduce jobs are getting triggered by the...

Sunday, March 6, 2016

Tuesday, March 1, 2016

What is combiner in hadoop?


What is combiner? Combiner is a Mini Reducer that performs the local reduce task, because Combiner does the same work of Reducer and uses the same program of Reducer or can use custom code too. It receives the input from the mapper on a particular node and sends the output...