DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
This approach doesn't require any special attention we can push the existing source to a separated repository (only the selected branches).
Advantages:
- Easier to search for 5 years old changes
Disadvantages:
- Git log/history will contain all the irrelevant commits (ancient mapreduce/yarn commits for example)
- Repo size will remain very huge (~1G for Hadoop) which makes slower all of the CI steps
Disadvantages:
- Easier to search for 5 years old changes
(2) Filter branch and create a new git history
...
See this repository as an example: HDFS-13258. Ozone: restructure Hdsl/Ozone code to separated maven subprojects. https://github.com/elek/hadoop-ozone
Note: I suggest to follow the second approach
...