Hadoop developer Interview Questions
205
Hadoop Developer interview questions shared by candidates
Mostly about Hadoop technologies HDFS, MapReduce, Hbase, Hive.
2 Answers↳
Answered almost all questions
↳
Hello, Thank you for your interest in Nisum and taking the time to provide feedback. We take all input very seriously here at Nisum, and would like to take this opportunity to help clarify the situation you've referenced. As we discussed and was conveyed to you, Nisum (like many other firms looking for excellent talent) believes in offering the best offer to a candidate after a thorough technical and behavioral assessment. After our evaluation, we found that there was misalignment in expectations between parties. Your expectations seemed to be based on hearsay about working on the west coast. There was also an apparent mismatch between your current views as a contractor versus joining as a full time employee. Finally, we did not say that "you are eligible for less salary." A formal offer was never extended as we could not meet each other's expectations. We apologize if you believe that the interview process was not as you'd hoped. Again, thank you for your interest in Nisum Technologies! Wishing you the best! Nisum HR Less


I was not asked even a single proper technical question. It was more so like an hr round.



Describe how you implemented MapReduce jobs Describe what data is generated when you run a MR/Tez job Which file format is best to store files in?
1 Answers↳
Best file format (at the time) was ORC as it was compressed and not cleartext/flat file. Parquet is also a good option and is now considered standard (this was before Delta). Less

4. given the http url,write the regex to get different parts of url like : protocol, server, path
1 Answers↳
provided the regex and parts but not sure why they rejected.

Hive Static partition vs Dynamic partition
1 Answers↳
Insert input data files individually into a partition table is Static Partition, fast, can alter the partition, set hive.mapred.mode = strict Single insert to partition table is known as a dynamic partition, slow, can’t perform alter, don’t know how many columns Less

Java Based Questions, Explain OOPS Concepts, Interface, Given a CSV text file how would write code to display the Second column Values. Other than java, which programming language you know to write this programme.
1 Answers↳
The OOPS Concepts and Interface questions are pretty simple to answer. For the CSV file, a quick and dirty solution would be to use a file reader to read the file line by line, split on the comma and print out index 1 of the list resulting from the split. (index starts at 0) Easiest alternative to Java is python, which is pretty much exactly the same method. This is by no means the most efficient implementation Less
