You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Prerequisites

Before starting the process, you need to ensure several things before proceed to create a release.

  • You need to clone the latest pinot code base in your local machine
  • You need to ensure that you have the access to Apache Repository Manager. Try to log in with Apache LDAP credential.
  • You need to check out Apache staging & release distribution directories for Pinot.

    svn co https://dist.apache.org/repos/dist/release/incubator/pinot pinot-release-dist
    svn co https://dist.apache.org/repos/dist/dev/incubator/pinot pinot-dev-dist

GPG Key Setup

The release manager must hold a GPG key for signing the release artifacts. GPG key has to be associated with the apache email address. One can create the GPG by using the following cmd. Note that the key length should be 4096 bits. Please refer to the example below:

$ gpg2 --full-generate-key
gpg (GnuPG) 2.1.22; Copyright (C) 2017 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Please select what kind of key you want:
(1) RSA and RSA (default)
(2) DSA and Elgamal
(3) DSA (sign only)
(4) RSA (sign only)
Your selection? 1

RSA keys may be between 1024 and 4096 bits long.
What keysize do you want? (2048) 4096

Please specify how long the key should be valid.
0 = key does not expire
<n> = key expires in n days
<n>w = key expires in n weeks
<n>m = key expires in n months
<n>y = key expires in n years
Key is valid for? (0)

Key does not expire at all
Is this correct? (y/N) y

...

gpg: key 2C9B34D6A54AAFAE marked as ultimately trusted
...

After you generate the GPG key, copy the key. "gpg: key 2C9B34D6A54AAFAE marked as ultimately trusted" (From here, I will use $GPG_KEY).

$ GPG_KEY=<your_gpg_key>  # fill in your key


Once you generate the gpg key, you need to go through the following steps:

  1. Upload GPG public key to a public key server. Copy the following command's output to "Submit a key" box and click the submit button. http://pgp.mit.edu

    $ gpg --export --armor $GPG_KEY
    
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    ...
    -----END PGP PUBLIC KEY BLOCK-----
  2. Update key fingerprint at https://id.apache.org

    $ gpg --fingerprint $GPG_KEY

    Copy the hex numbers (e.g. "0D9E 9997 4D5A 59F1 7183 362F 2C9B 34D6 A54A AFAE") to "OpenPGP Public Key Primary Fingerprint" box and submit the change. 

  3. Update KEYS file under pinot-release-dist

    $ cd pinot-release-dist
    # Append the public key to KEYS file
    gpg --list-sigs $GPG_KEY && gpg --armor --export $GPG_KEY >> KEYS...
    
    # Commit the change
    svn commit -m "Update Pinot KEYS file for $GPG_KEY" 

After following 1-3, you should have the following:

Maven Configuration Setup

As part of the release process, we will upload our artifacts to maven central staging repository and "maven-release-plugin" will do it for you automatically for the most of part. In order to use the plugin, we need to set up the maven config correctly.

$ vim ~/.m2/settings.xml
# Paste the below text
<settings>
  <servers>
    <server>
      <id>apache.snapshots.https</id>
      <username>{apache LDAP id}</username>
      <password>{apache user password}</password>
    </server>
    <server>
      <id>apache.releases.https</id>
      <username>{apache LDAP id}</username>
      <password>{apache user password}</password>
    </server>
    <server>
      <id>gpg.passphrase</id>
      <passphrase>{gpg key phrase}</passphrase>
    </server>
  </servers>
  <profiles>
    <profile>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <gpg.keyname>{GPG_KEY}</gpg.keyname>
      </properties>
    </profile>
  </profiles>
</settings>

Creating a Release

Before we move on to the voting, we need to prepare the release along with the below information:


After following the steps below, you should have all information listed above.

  1. Prepare a release branch

    $ git checkout -b release-<version>-rc<rc_num>
    $ git push origin release-<version>rc<rc_num>
    
    # Example
    $ git checkout -b release-0.1.0-rc0
    $ git push origin release-0.1.0-rc0
  2. Prepare the release (Please refer "Preparing a release" section in http://plc4x.apache.org/developers/release.html to see what actually happens with the command below - has a good explanation along with screenshots, our gitbox url for checking is https://gitbox.apache.org/repos/asf?p=incubator-pinot.git

    $ mvn release:prepare
  3. Build a binary release
  4. ddd

Reference

  1. http://plc4x.apache.org/developers/release.html
  2. https://cwiki.apache.org/confluence/display/GOBBLIN/Release+Process


  • No labels