forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
# YARN DIRECTORY LAYOUT | ||
|
||
Hadoop Yarn related codes are organized in separate modules with layered dependency. | ||
Hadoop Yarn related codes are organized in separate directories for easy management. | ||
|
||
* common : Common codes that will be called into by other modules. | ||
* common : Common codes that do not depending on specific version of Hadoop. | ||
|
||
* 2.0 / 2.2 : Codes that involve specific version of Hadoop YARN API. Depends on common module. | ||
* 2.0 / 2.2 : Codes that involve specific version of Hadoop YARN API. | ||
|
||
2.0 actually represents 0.23 and 2.0 | ||
2.2 actually represents 2.2 and later, until the API is break again. | ||
|
||
* Scheduler : Implementation of various YARN Scheduler and backend. Depends on 2.0 / 2.2 modules. | ||
* Assembly : For maven build to assembly all other modules in Yarn into one single jar. | ||
|
||
2.0 / 2.2 will build together with common dir into a single jar |