Hadoop: Difference between revisions
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
sudo apt-get install pdsh | sudo apt-get install pdsh | ||
sudo apt-get install ssh | sudo apt-get install ssh | ||
do-release-upgrade | |||
==References== | ==References== |
Revision as of 19:49, 28 September 2022
Hadoop is a Java-based programming framework that supports the processing and storage of extremely large datasets on a cluster of inexpensive machines. It was the first major open source project in the big data playing field and is sponsored by the Apache Software Foundation. Hadoop is comprised of four main layers:
- Hadoop Common is the collection of utilities and libraries that support other Hadoop modules.
- HDFS, which stands for Hadoop Distributed File System, is responsible for persisting data to disk.
- YARN, short for Yet Another Resource Negotiator, is the "operating system" for HDFS.
- MapReduce is the original processing model for Hadoop clusters. It distributes work within the cluster or map, then organizes and reduces the results from the nodes into a response to a query. Many other processing models are available for the 3.x version of Hadoop
Knowledge
readlink -f /usr/bin/java | sed "s:bin/java::" sudo apt-get install pdsh sudo apt-get install ssh do-release-upgrade