Understanding Scala Collections
Scala is a general-purpose programming language providing support for functional programming and a strong static type system
Scala is a general-purpose programming language providing support for functional programming and a strong static type system
Sqoop is a command-line interface application for transferring data between relational databases and Hadoop.This blog post will teach you basic tasks that you can perform with Sqoop.
HTTP Status codes are standard codes and refer to the predefined status of tasks done at the server. For example, HTTP Status 404 states that the requested resource is not…
This is one of the most common interview questions of all time when applying for a Java developer position. We will see the difference between Overloading and Overriding in this…
The hive Vectorization technique is a feature (in both MapReduce and Tez Engine) that greatly reduces the CPU usage for typical query operations like scans, filters, aggregates, and joins. A…
An abstract class is a java class that has one or more abstract methods (nobody). It cannot be instantiated and defines an interface that has to be implemented by all…
Caching and persistence are optimization techniques for (iterative and interactive) Apache Spark computations. This technique helps to save interim partial results, which can be reused in subsequent stages. These results,…
Linux is a family of free and open-source software operating systems built around the Linux kernel.This post includes some of the important Linux networking commands
It contains list of Linux Admin commands useful Process Monitoring
Data locality refers to how close data is to the code processing it. Having the code and the data together tends to make computations faster in Apache Spark. If the…