...
- If you have not already done so, append your code signing key to the KEYS file. Once you commit your changes, they will automatically be propagated to the website. Also upload your key to a public key server if you haven't. End users use the KEYS file (along with the web of trust) to validate that releases were done by an Apache committer. For more details on signing releases, see Signing Releases and Step-By-Step Guide to Mirroring Releases. Make sure you have PGP 2.2 installed. PGP 1 and 2.0/2.1 doesn't work properly with the PGP 2.2 installed in the docker image.
- Make sure to update the various LICENSE and NOTICE files per Apache policy.
- Bulk update JIRA to unassign from this release all issues that are open non-blockers. This is involved since you can only bulk change issues within the same project, so minimally requires four bulk changes for each of HADOOP, HDFS, MAPREDUCE, and YARN. Editing the "Target Version/s" field is also a blind write, so you need to be careful not to lose any other fix versions that are set. For updating 3.0.0-beta1 to 3.0.0, the process looked like this:
Start with this query:
No Format project in (HADOOP, HDFS, YARN, MAPREDUCE) AND "Target Version/s" = 3.0.0-beta1 and statusCategory != Done
Filter this list down until it's only issues with a Target Version of just "3.0.0-beta1". My query ended up looking like:
No Format project in (HADOOP, HDFS, YARN, MAPREDUCE) AND "Target Version/s" = 3.0.0-beta1 and "Target Versions/" not in (2.9.0, 2.8.3, 2.8.2) AND statusCategory != Done
- Do the bulk update for each project individually to set the target version to 3.0.0.
Check the query for the next most common set of target versions and again filter it down:
No Format project in (HADOOP, HDFS, YARN, MAPREDUCE) AND "Target Version/s" = 3.0.0-beta1 and "Target Version/s" = 2.9.0 and statusCategory != Done project in (HADOOP, HDFS, YARN, MAPREDUCE) AND "Target Version/s" = 3.0.0-beta1 and "Target Version/s" = 2.9.0 and "Target Version/s" not in (2.8.2, 2.8.3) and statusCategory != Done
- Do the bulk update for each project individually to set the target version field to (3.0.0, 2.9.0).
Return to the original query. If there aren't too many, update the remaining straggler issues by hand (faster than doing the bulk edits):
No Format project in (HADOOP, HDFS, YARN, MAPREDUCE) AND "Target Version/s" = 3.0.0-beta1 and statusCategory != Done
- Send follow-up notification to the developer list that this was done.
To deploy artifacts to the Apache Maven repository create
~/.m2/settings.xml
:No Format <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>apache.staging.https</id> <username>Apache username</username> <password>Apache password</password> </server> </servers> </settings>
...
- If this is a new major release (i.e., Y = 0 and Z = 0)
- Create a new branch (branch-X) for all releases in this major release.
Update the version on trunk to (X+1).0.0-SNAPSHOT
No Format mvn versions:set -DnewVersion=(X+1).0.0-SNAPSHOT
- Set
hadoop.version
in the rootpom.xml
file to the same value; validate with a clean build. Commit the version change to Commit the version change to trunk.
No Format git commit -a -m "Preparing for (X+1).0.0 development"
- If this is a new minor release (i.e., Z = 0)
- Create a new branch (branch-X.Y) for all releases in this minor release.
Update the version on branch-X to X.(Y+1).0-SNAPSHOT
No Format mvn versions:set -DnewVersion=X.(Y+1).0-SNAPSHOT
- Set
hadoop.version
in the rootpom.xml
file to the same value; validate with a clean build. Commit the version change to branch-X.
No Format git commit -a -m "Preparing for X.(Y+1).0 development"
- If this is a new point release (i.e., always)
- Create a new branch (branch-X.Y.Z) for this release.
Update the version on branch-X.Y to X.Y.(Z+1)-SNAPSHOT
No Format mvn versions:set -DnewVersion=X.Y.(Z+1)-SNAPSHOT
- Set
hadoop.version
in the rootpom.xml
file to the same value; validate with a clean build. Commit the version change to branch-X.Commit the version change to branch-X.Y.
No Format git commit -a -m "Preparing for X.Y.(Z+1) development"
- Release branch (branch-X.Y.Z) updates:
- Update
hadoop-project/src/site/markdown/index.md.vm
to reflect the right versions, new features and big improvements. Update the version on branch-X.Y.Z TO X.Y.Z
No Format mvn versions:set -DnewVersion=X.Y.Z
- Update
Note: Please also also update the hadoop.version property in the root pom.xml (see HADOOP-15369) and for releases off branches earlier than 3.3.1, the hadoop.assemblies.version in hadoop-project/pom.xml (see HADOOP-15369)xml
No Format |
---|
mvn versions:set-property -Dproperty=hadoop.version -DnewVersion=X.Y.Z
mvn versions:set-property -Dproperty=hadoop.assemblies.version -DnewVersion=X.Y.Z
|
(The hadoop.assemblies.version update isn't needed on recent releases; since HADOOP-17663 the command to set it will not touch any files, and so completely harmless)
Now, for any branches in {trunkNow, for any branches in {trunk, branch-X, branch-X.Y, branch-X.Y.Z} that have changed, push them to the remote repo taking care of any conflicts.
No Format |
---|
git push <remote> <branch>
|
...
- Check if the release year for Web UI footer is updated (the property
<release-year>
inhadoop-project/pom.xml
). If not, create a JIRA to update the property value to the right year, and propagate the fix from trunk to all necessary branches. Consider the voting time needed before publishing, it's better to use the year of (current time + voting time) here, to be consistent with the publishing time. - In JIRA, ensure that only issues in the "Fixed" state have a "Fix Version" set to release X.Y.Z.
- Verify that $HOME/.gpg defaults to the key listed in the KEYS file.
For the Apache release, a machine capable of running Docker- and Internet- capable, build the release candidate with
create-release
. Unless the--logdir
is given, logs will be in thepatchprocess/
directory. Artifacts will be in the target/artifacts NOTE: This will take quite a while, since it will download and build the entire source tree, including documentation and native components, from scratch to avoid maven repository caching issues hiding issues with the source release.No Format dev-support/bin/create-release --asfrelease --docker --dockercache
While it should fail
create-release
if there are issues, doublecheck the rat log to find and fix any potential licensing issues.No Format grep 'Rat check' patchprocess/mvn_apache_rat.log
- Check that release files look ok - e.g. install it somewhere fresh and run examples from tutorial, do a fresh build, read the release notes looking for WARNINGs, etc.
- Set environment variable version for later steps.
export version=X.Y.Z-RCN
Tag the release candidate:
No Format git tag -s release-$version -m "Release candidate - $version"
- Push branch-X.Y.Z and the newly created tag to the remote repo.
Deploy the maven artifacts, on your personal computer. Please (This is for branch-2.10 only.
mvn deploy
is invoked by the dev-support/bin/create-release script of 3.0.0 and above. see HADOOP-15058.)
Deploy the maven artifacts, on your personal computer. Please be sure you have completed the prerequisite step of preparing thesettings.xml
file before the deployment. You might want to do this in private and clear your history file as your gpg-passphrase is in clear text.No Format mvn deploy -Psign,dist -DskipTests -DskipShade
Copy release files to a public place and ensure they are readable. Note that
home.apache.org
only supports SFTP, so this may be easier with a graphical SFTP client like Nautilus, Konqueror, etc.No Format sftp home.apache.org > cd public_html > mkdir hadoop-${version} > put -r /home/hadoop/hadoop-${version} .... > bye
- Log into Nexus, select "
Staging
Repositories" from the left navigation pane, select the check-box against the specific hadoop repository, andclose
the release. At the time of deploying the maven artifacts, if there are different hadoop items of this release candidate at “Staging Repositories”, drop the stale RC first. - Call a release vote on common-dev at hadoop.apache.org. It's usually a good idea to start the release vote on Monday so that people will have a chance to verify the release candidate during the week. Example
- If the release candidate contains a serious issue, withdraw the vote, make necessary changes, and repeat this process.
- If non-trivial changes are committed to the release branch, ensure the commits are present in the upstream branches.
...
- In JIRA, "release" the version, setting the date to the end-of-vote date. Visit the "Administer Project" page, then the "Manage versions" page. You need to have the "Admin" role in HADOOP, HDFS, MAPREDUCE, and YARN.
- Set environment variable version for later steps.
export version=X.Y.Z
Tag the release. Do it from the release branch and push the created tag to the remote repository:
No Format git tag -s rel/release-${version} -m "Hadoop ${version} release" git push origin rel/release-${version}
- Copy release files to the distribution directory
Check out the corresponding svn repo if need be
No Format svn co https://dist.apache.org/repos/dist/release/hadoop/common/ hadoop-dist
- Copy the release files to hadoop-dist/hadoop-${version}
- Update the symlinks to current2 and stable2. The release directory usually contains just two releases, the most recent from two branches.
Commit the changes (it requires a PMC privilege)
No Format svn ci -m "Publishing the bits for release ${version}"
- Usually binary tarball becomes larger than 300MB, so it cannot be directly uploaded to the distribution directory. Use the dev directory (https://dist.apache.org/repos/dist/dev/hadoop/) first and then move it to the distribution directory by
svn move
.
- Update upstream branches to make them aware of this new release:
Copy and commit the CHANGESCHANGELOG.md and RELEASENOTES.md:
No Format cp target/artifacts/RELEASENOTES.md hadoop-common-project/hadoop-common/src/site/markdown/release/${version}/RELEASENOTES.${version}.md cp target/artifacts/CHANGESCHANGELOG.md hadoop-common-project/hadoop-common/src/site/markdown/release/${version}/CHANGESCHANGELOG.${version}.md
Copy the jdiff xml files for this version to their appropriate directory.
UpdateNo Format cp cp hadoop-hdfscommon-project/hadoop-hdfscommon/target/site/jdiff/xml/Apache_Hadoop_HDFSCommon_${version}.xml hadoop-hdfscommon-project/hadoop-hdfscommon/dev-support/jdiff cp
-dist/pom.xmlhadoop-hdfs-project
No Format <jdiff.stable.api>X.Y.Z</jdiff.stable.api>
- In Nexus
- effect the release of artifacts by selecting the staged repository and then clicking
Release
- If there were multiple RCs, simply drop the staging repositories corresponding to failed RCs.
- effect the release of artifacts by selecting the staged repository and then clicking
- Wait 24 hours for release to propagate to mirrors. Edit the website (Generic docs about the new website generation can be found [here|https://cwiki.apache.org/confluence/display/HADOOP/How+to+generate+and+push+ASF+web+site+after+HADOOP-14163)
- Install hugo if you haven't already ((tldr; apt-get install/pacman -S/brew install hugo))
- Note: update all the TODO + the date. Don't use date from the future, it won't be rendered.
- Remove the
linked: true
line from the previous release file, eg. from src/release/3.0.0.md. Docs/downloads of the releases withlinked:true
will be linked from the menu. - Similarly update the symlinks for stable if need be.
- Check the rendering of the new site:
hugo serve && firefox http://localhost:1313
- Send announcements to the user and developer lists once the site changes are visible. In JIRA, close issues resolved in the release. Disable mail notifications for this bulk change. Recommend not closing, since it prevents JIRAs from being edited and makes it more difficult to track backports.
/hadoop-hdfs/target/site/jdiff/xml/Apache_Hadoop_HDFS_${version}.xml hadoop-hdfs-project/hadoop-hdfs/dev-support/jdiff find hadoop-yarn-project -name "Apache_Hadoop_YARN_*_${version}.xml" | xargs -I{} cp {} hadoop-yarn-project/hadoop-yarn/dev-support/jdiff find hadoop-mapreduce-project -name "Apache_Hadoop_MapReduce_*_${version}.xml" | xargs -I{} cp {} hadoop-mapreduce-project/dev-support/jdiff
Update
hadoop-project-dist/pom.xml
No Format <jdiff.stable.api>X.Y.Z</jdiff.stable.api>
- In Nexus
- effect the release of artifacts by selecting the staged repository and then clicking
Release
- If there were multiple RCs, simply drop the staging repositories corresponding to failed RCs.
- effect the release of artifacts by selecting the staged repository and then clicking
- Wait 24 hours for release to propagate to mirrors.
- Edit the website (Generic docs about the new website generation can be found [here|How+to+generate+and+push+ASF+web+site)
Checkout the website if you haven't already
No Format git clone https://gitbox.apache.org/repos/asf/hadoop-site.git -b asf-site
- Install hugo if you haven't already ((tldr; apt-get install/pacman -S/brew install hugo))
Create the new release announcement (Set environment variable version first.
export VERSION=X.Y.Z).
No Format cat << EOF > src/release/${VERSION}.md --- title: Release ${VERSION} available date: 202X-XX-XX linked: true --- <!--- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. See accompanying LICENSE file. --> This is the first stable release of Apache Hadoop TODO line. It contains TODO bug fixes, improvements and enhancements since TODO. Users are encouraged to read the [overview of major changes][1] since TODO. For details of TODO bug fixes, improvements, and other enhancements since the previous TODO release, please check [release notes][2] and [changelog][3]. [1]: /docs/r${VERSION}/index.html [2]: http://hadoop.apache.org/docs/r${VERSION}/hadoop-project-dist/hadoop-common/release/${VERSION}/RELEASENOTES.${VERSION}.html [3]: http://hadoop.apache.org/docs/r${VERSION}/hadoop-project-dist/hadoop-common/release/${VERSION}/CHANGELOG.${VERSION}.html EOF
- Note: update all the TODO + the date. Don't use date from the future, it won't be rendered.
- Remove the
linked: true
line from the previous release file, eg. from src/release/3.0.0.md. Docs/downloads of the releases withlinked:true
will be linked from the menu. add the docs and update the
content/docs/current
link, by doing the following:No Format cd content/docs tar xvf /path/to/hadoop-${version}-site.tar.gz # Update current2, current, stable and stable2 as needed. # For example rm current2 current ln -s r${version} current2 ln -s current2 current
- Similarly update the symlinks for stable if need be.
- Check the rendering of the new site:
hugo serve && firefox http://localhost:1313
Regenerate the site, review it, then commit it per the instructions in HowToCommit. (The generated HTML files also should be committed. Both src and the rendered site are in the same repo.)
No Format hugo git add . git commit git push
- Send announcements to announce@apache.org and to the user and developer lists once the site changes are visible. Optionally on Hadoop-PMC owned twitter account @hadoop. (For password reach out to private@)
- In JIRA, close issues resolved in the release. Disable mail notifications for this bulk change. Recommend not closing, since it prevents JIRAs from being edited and makes it more difficult to track backports.
- Add the release in "Apache Committee Report Helper" for the next board report to pick that up automatically at https://reporter.apache.org/addrelease.html?hadoop (Requires PMC member rights)
- Update the DOAP file with the release details, DOAP File. The changes will be reflected here after almost 1 hour, if done correctly.
Checkout the website if you haven't already
No Format |
---|
git clone https://gitbox.apache.org/repos/asf/hadoop-site.git -b asf-site
|
Create the new release announcement (Set environment variable version first. export VERSION=X.Y.Z).
No Format |
---|
cat << EOF > src/release/${VERSION}.md
---
title: Release ${VERSION} available
date: 202X-XX-XX
linked: true
---
<!---
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
This is the first stable release of Apache Hadoop TODO line. It contains TODO bug fixes, improvements and enhancements since TODO.
Users are encouraged to read the [overview of major changes][1] since TODO.
For details of TODO bug fixes, improvements, and other enhancements since the previous TODO release,
please check [release notes][2] and [changelog][3]
detail the changes since TODO.
[1]: /docs/r${VERSION}/index.html
[2]: http://hadoop.apache.org/docs/r${VERSION}/hadoop-project-dist/hadoop-common/release/${VERSION}/RELEASENOTES.${VERSION}.html
[3]: http://hadoop.apache.org/docs/r${VERSION}/hadoop-project-dist/hadoop-common/release/${VERSION}/CHANGES.${VERSION}.html
EOF
|
add the docs and update the content/docs/current
link, by doing the following:
No Format |
---|
cd content/docs
tar xvf /path/to/hadoop-${version}-site.tar.gz
# Update current2, current, stable and stable2 as needed.
# For example
rm current2 current
ln -s r${version} current2
ln -s current2 current
|
Regenerate the site, review it, then commit it per the instructions in HowToCommit. (The generated HTML files also should be committed. Both src and the rendered site are in the same repo.)
No Format |
---|
hugo
git add .
git commit
git push
|
Docker images
Docker images containing release binaries are accessible at DockerHub. A docker image is automatically built by pushing a commit to one of the two special branches: docker-hadoop-2 and docker-hadoop-3. An example is HADOOP-18681. Please contact Ayush Saxena and Wei-Chiu Chuang who have admin privilege to the Apache Hadoop DockerHub repo and can add additional tags to the docker image produced.
The docker images can be downloaded using docker command:
No Format |
---|
docker pull apache/hadoop:3.3.5 |
Hadoop-thirdparty
The hadoop-thirdparty repository shades a number of thirdparty dependencies that are used by Hadoop. They are shaded to avoid classpath conflict with downstream applications. The Hadoop project may occasionally need to update and release hadoop-thirdparty artifacts. The steps are largely similar to the above. See the How To Release Hadoop-Thirdparty wiki for details.