Skip to main content

Downloads

The fastest path from download to a running instance

Install Apache StreamPipes

The standard path is the official source release. If you prefer a shorter command for local evaluation or demos, you can also start StreamPipes directly from the Compose files shown below.

Latest Release

Download Apache StreamPipes 0.98.0

Download ZIP

Download the latest Apache StreamPipes source release and extract the archive to a directory of your choice. The package includes the installer and the reference deployment presets.

FileVersionRelease DateVerification
apache-streampipes-0.98.0-source-release.zip0.98.02025-12-15SHA512 · PGP

Verify the release using the published signatures and the project release KEYS. See the official ASF verification instructions for the recommended procedure.

Review the current release notes before upgrading existing environments.

Installation Flow

Start StreamPipes in a few steps

1

Start the installer

Open the folder installer/compose/ and run docker compose up -d. If your environment still uses the legacy Compose binary, docker-compose up -d works as well.

For additional deployment models and broker-specific setups, continue with the deployment documentation.

2

Open the web interface

Open your browser and navigate to http://localhost:80, or use the host name of the server where StreamPipes is running, and complete the setup flow in the UI.

The default credentials are admin@streampipes.apache.org and admin.

3

Continue with the right guide

Use the Quick Start Guide for your first end-to-end walkthrough, or go directly to the deployment page if you need Kubernetes, distributed OT/IT setups, or non-default broker configurations.

Convenience Setup

Start StreamPipes with a single shell command

These shortcuts create a local folder, download docker-compose.yml and .env, and start the default Compose setup immediately.

Nightly build (unreleased)

Tracks the current dev branch and is useful when you want the latest version. Unreleased versions come without any guarantees and can include breaking changes.

mkdir -p streampipes-nightly && cd streampipes-nightly \
  && curl -fsSLO https://raw.githubusercontent.com/apache/streampipes/dev/installer/compose/docker-compose.yml \
  && curl -fsSLO https://raw.githubusercontent.com/apache/streampipes/dev/installer/compose/.env \
  && docker compose up -d

Latest release

Pinned to Apache StreamPipes 0.98.0, which is the latest release version. Includes the NATS-based setup and a pre-configured .env file which should be changed for production usage.

mkdir -p streampipes-0.98.0 && cd streampipes-0.98.0 \
  && curl -fsSLO https://raw.githubusercontent.com/apache/streampipes/0.98.0/installer/compose/docker-compose.yml \
  && curl -fsSLO https://raw.githubusercontent.com/apache/streampipes/0.98.0/installer/compose/.env \
  && docker compose up -d