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

Compare with Current View Page History

« Previous Version 25 Next »

First of all, thanks for taking the time to validate an Apache StreamPipes (incubating) release!

The following steps should help you in performing the necessary steps to validate a release. Any comments or improvements to this guide are highly appreciated!

Introduction

An Apache StreamPipes release currently consists of three different source releases:

  • incubator-streampipes is the core of Apache StreamPipes
  • incubator-streampipes-extensions contains several extensions (> 20 adapters and > 70 pipeline elements)
  • incubator-streampipes-installer contains installation files for Docker, a CLI and helm charts for running StreamPipes in Kubernetes.

Using the validation script

(sorry, the validation script is not yet available and will hopefully be ready after the first ASF release)

Manual validation

Prerequisites

For fully testing a release candidate, you should have the following installed on your system:

  • JDK (tested with JDK 8+)
  • Maven (tested with 3.6)
  • NodeJS + NPM (tested with v12+/ v6+)
  • Docker + Docker-Compose

Step 1: Download release artifacts

Download all staged artifacts under the url specified in the release vote email into a directory we’ll now call download-dir.

The artifacts are available at https://dist.apache.org/repos/dist/dev/incubator/streampipes 

Typically, this includes three zip files (core, extensions and installer) along with checksum, signature, README, RELEASE_VALIDATION and RELEASE_NOTES.

Step 2: Validate incubator-streampipes

First, open the core folder (core/{version}/{rc}).

Check signatures and checksums


Verify the signature

Verify signature
gpg --verify apache-streampipes-{current-full-version}-incubating-source-release.zip.asc apache-streampipes-{current-full-version}-incubating-source-release.zip

# example:
gpg --verify apache-streampipes-0.66.0-incubating-source-release.zip.asc apache-streampipes-0.66.0-incubating-source-release.zip

If the output says "public key not found", follow the instructions in this guide: Validate a release for the first time


Verify the checksum

Verify checksum
sha512sum -c apache-streampipes-{current-full-version}-incubating-source-release.zip.sha512

# example:
sha512sum -c apache-streampipes-0.66.0-incubating-source-release.zip.sha512

Make sure the output says OK.

Check source release


Unzip the source file

Unzip and switch to the parent directory (where the README and pom files are located) 


Verify legal information and required files

  • Verify the existence of LICENSE, NOTICE, README, RELEASE_NOTES and RELEASE_VALIDATION files in the extracted source bundle.
  • Check the LICENSE file
  • Check the NOTICE file (e.g., make sure the year is correct)


Run RAT

Run RAT
mvn rat:rat


Search for SNAPSHOT dependencies

Search for any unexpected SNAPSHOT dependencies in the bundle, e.g.:

Search for SNAPSHOT dependencies
grep -rnw './' -e 'SNAPSHOT'

# Check the output


Search for unexpected binaries

Have a look at the source code to check there are no unexpected binaries, e.g., in the ui folder there shouldn't be any node_modules folder or dist folder.

Build backend & UI

From the parent folder of the core, do the following to build the Java-based core:

Build Maven
# cd download-dir/apache-streampipes-#.##.#-incubating/
mvn clean install

# we use install here as these dependencies will be later required by streampipes-extensions (with the core modules not yet being available on Maven Central at release validation time)

This build should be successful.

The next step is to build the UI, switch to the ui directory and do the following:

Build UI
# cd ui
npm install
npm run build-rc

Start test system 

If you want to test the system, there is a convenience docker-compose file that will help you starting the release candidate for testing.

Go back to the main directory (where the docker-compose.yml file is located) and do the following:

Set proper line encoding in docker entrypoint
# On some systems, the EOL encoding needs to be fixed for the docker-entrypoint.sh file:

sed -i -e 's/\r$//' ui/docker-entrypoint.sh

# Alternative: Open the file ui/docker-entrypoint.sh, change the eol encoding to "LF" (e.g., in Notepad++ by clicking on "Windows CRLF" in the bottom status bar).


Build Docker images and start
docker-compose up -d

# Use docker-compose up to run it in foreground
# Docker images will be locally built


Once you're done with that, proceed to the next step. Before we test the whole system, we'll build and run the extensions.

Step 3: Validate incubator-streampipes-extensions

Open the extensions folder (extensions/{version}/{rc}.

Repeat the following steps for the extensions project, similar as explained above:

Verify signature

Verify checksum

Unzip

Verify legal information and required files

Run RAT

Search for SNAPSHOT dependencies

Build extensions

Build the extensions project as follows:

Build with Maven
mvn clean package

Start test system

Build Docker images and start
docker-compose up -d

# Use docker-compose up to run it in foreground
# Docker images will be locally built

See the instructions under "test" to test the release candidate.

Step 3: incubator-streampipes-installer

Open the extensions folder (installer/{version}/{rc}. The installer contains no files that need to be built, just some bash scripts, docker-compose files and helm charts.

Repeat the following steps for the installer project, similar as explained above:

Verify signature

Verify checksum

Unzip

Verify legal information and required files


Step 4: Test

If you have started the core and extensions in Docker as explained in the previous step, you can now switch to the user interface to do functional testing:

Go to localhost (port 80) to open the StreamPipes UI. You'll see the setup screen where you can start the setup procedure.

Testing with the release validation docker-compose file

The docker-compose.yml file that is part of the source is only intended for developers. There is no persistence enabled, when you stop the Docker containers, all information will be lost. Users are intended to use the installer.

Validation Template

See also the Incubator Release Checklist (which is not official policy, but may help)

Here is a template that can help you valiating a release:

  • Download all staged artifacts under the url specified in the release vote email
  • Verify the signature is correct
  • Check if the signature references an Apache email address
  • Verify the SHA512 checksum
  • Unzip the archive
  • Verify the existence of LICENSE, NOTICE, README, RELEASE_NOTES, RELEASE_VALIDATION files in the extracted source bundle.
  • Run RAT
  • Search for SNAPSHOT dependencies
  • Build Backend
  • Build UI
  • Build Extensions
  • No labels