Apache Hadoop Submarine is an Apache 2.0 License Software.
Contributing to Hadoop Submarine (Source code, Documents, Image, Website) means you agree to the Apache 2.0 License.
- Make sure your issue is not already in the Jira issue tracker
- If not, create a ticket describing the change you're proposing in the Jira issue tracker
- Setup Travis Continuous Integration
- Contribute your patch via Pull Request on our Github Mirror.
Before you start, please read the Code of Conduct carefully, familiarize yourself with it and refer to it whenever you need it.
For those of you who are not familiar with the Apache project, understanding How it works would be quite helpful.
When creating a Pull Request, you will automatically get the template below.
Filling it thoroughly can improve the speed of the review process.
### What is this PR for?
A few sentences describing the overall goals of the pull request's commits.
First time? Check out the contribution guidelines -
https://github.com/apache/submarine/tree/master/docs/community/contributing.md
### What type of PR is it?
[Bug Fix | Improvement | Feature | Documentation | Hot Fix | Refactoring]
### Todos
* [ ] - Task
### What is the Jira issue?
* Open an issue on Jira https://issues.apache.org/jira/browse/SUBMARINE/
* Put link here, and add [SUBMARINE-${jira_number}] in PR title, e.g. [SUBMARINE-323]
### How should this be tested?
Outline the steps to test the PR here.
### Screenshots (if appropriate)
### Questions:
* Do the licenses files require updates?
* Are there breaking changes for older versions?
* Does this need documentation?
Hadoop Submarine follows Fork & Pull model.
When a Pull Request is submitted, it is being merged or rejected by the following review process.
- Anybody can be a reviewer and may comment on the change or suggest modifications.
- Reviewer can indicate that a patch looks suitable for merging with a comment such as: "Looks good", "LGTM", "+1".
- At least one indication of suitability (e.g. "LGTM") from a committer is required to be merged.
- Pull request is open for 1 or 2 days for potential additional review unless it's got enough indication of suitability.
- A committer can then initiate lazy consensus ("Merge if there is no more discussion") after which the code can be merged after a particular time (usually 24 hours) if there are no more reviews.
- Contributors can ping reviewers (including committers) by commenting 'Ready to review' or suitable indication.
Here are some things you will need to build and test the Hadoop Submarine.
Hadoop Submarine uses Git for its SCM system. So you'll need a git client installed on your development machine.
You are free to use whatever IDE you prefer, or your favorite command-line editor.
We are following Google Code style:
There are some plugins to format, lint your code in IDE (use dev-support/maven-config/checkstyle.xml as rules)
- Visit https://github.com/apache/submarine
- On the top right of the page, click the
Fork
button (top right) to create a cloud-based fork of the repository.
Create your clone:
${user} is your github user name
mkdir -p ${working_dir}
cd ${working_dir}
git clone https://github.com/${user}/submarine.git
# or: git clone [email protected]:${user}/submarine.git
cd ${working_dir}/submarine
git remote add upstream https://github.com/apache/submarine.git
# or: git remote add upstream [email protected]:apache/submarine.git
# Never push to the upstream master.
git remote set-url --push upstream no_push
# Confirm that your remotes make sense:
# It should look like:
# origin [email protected]:${user}/submarine.git (fetch)
# origin [email protected]:${user}/submarine.git (push)
# upstream https://github.com/apache/submarine (fetch)
# upstream no_push (push)
git remote -v
Get your local master up to date:
cd ${working_dir}/submarine
git fetch upstream
git checkout master
git rebase upstream/master
Branch from master:
git checkout -b SUBMARINE-${jira_number}
You can now edit the code on the SUBMARINE-${jira_number}
branch.
Build and run all tests:
# While on your SUBMARINE-${jira_number} branch.
git fetch upstream
git rebase upstream/master
Please don't use git pull
instead of the above fetch
/rebase
. git pull
does a merge, which leaves merge commits. These make the commit history messy and violate the principle that commits ought to be individually understandable and useful (see below). You can also consider changing your .git/config
file via git config branch.autoSetupRebase
always to change the behavior of git pull
.
Commit your changes.
git commit
Likely you'll go back and edit/build/test further and then commit --amend
in a few cycles.
When the changes are ready to review (or you just want to create an offsite backup of your work), push your branch to your fork on github.com
:
git push --set-upstream ${your_remote_name} SUBMARINE-${jira_number}
- Visit your fork at
https://github.com/${user}/submarine
. - Click the
Compare & Pull Request
button next to yourSUBMARINE-${jira_number}
branch. - Fill in the required information in the PR template.
If your pull request (PR) is opened, it will be assigned to one or more reviewers. Those reviewers will do a thorough code review, looking at correctness, bugs, opportunities for improvement, documentation comments, and style.
To address review comments, you should commit the changes to the same branch of the PR on your fork.
In case you wish to revert a commit, follow the instructions below:
NOTE: If you have upstream write access, please refrain from using the Revert button in the GitHub UI for creating the PR, because GitHub will create the PR branch inside the main repository rather than inside your fork.
Create a branch and synchronize it with the upstream:
# create a branch
git checkout -b myrevert
# sync the branch with upstream
git fetch upstream
git rebase upstream/master
# SHA is the hash of the commit you wish to revert
git revert SHA
This creates a new commit reverting the change. Push this new commit to your remote:
git push ${your_remote_name} myrevert
Create a PR based on this branch.
In case you wish to cherry pick a commit to a release branch, follow the instructions below:
Create a branch and synchronize it with the upstream:
# sync the branch with upstream.
git fetch upstream
# checkout the release branch.
# ${release_branch_name} is the release branch you wish to cherry pick to.
git checkout upstream/${release_branch_name}
git checkout -b my-cherry-pick
# cherry pick the commit to my-cherry-pick branch.
# ${SHA} is the hash of the commit you wish to revert.
git cherry-pick ${SHA}
# push this branch to your repo, file an PR based on this branch.
git push --set-upstream ${your_remote_name} my-cherry-pick
Hadoop Submarine project's CI system will collect information from pull request author's Travis-ci and display status in the pull request.
Each individual contributor should setup Travis-ci for the fork before making a pull-request. Go to https://travis-ci.org/profile and switch on 'submarine' repository.