id: version-0.20.0-incubating-getting-started-local-single-node title: Local (Single Node) sidebar_label: Local (Single Node) original_id: getting-started-local-single-node

The current version of Heron is {{heron:version}}

The current way to get started learning Heron is to build from source. Please refer to the guide to compiling Heron. The Heron community is working to add release scripts and Heron binaries available from Apache mirrors soon.

Building installation scripts

The only way to obtain the installation scripts at this time are to compile from source. We are working to add release scripts and Heron binaries available from Apache mirrors soon.

See how to get setup building Heron see the notes here

If you already have Bazel and the other required tools installed for your platform you can execute the following:

$ bazel build --config=[platform] scripts/packages:binpkgs

Options for the config flag are:

  • debian (Debian10)
  • ubuntu (Ubuntu)
  • darwin (OSX)

This command will take approximately 45 minutes to compile based on your machine settings. It will output a script called heron-install.sh You will be able to find it relative to the Heron root folder:

$ ./bazel-bin/scripts/packages/heron-install.sh 

Now run the Heron client installation script with the --user flag set. Here's an example:

The script will install executables in the ~/bin folder. You should add that folder to your PATH using export PATH=~/bin:$PATH.

$ ./heron-install.sh --user
Heron installer
---------------

Uncompressing...done
...
Heron is now installed!

To check that Heron is successfully installed, run heron version:

$ heron version
heron.build.git.revision : b580f689d8cbcb3026966bde2aacf6da74d5bcf5
heron.build.git.status : Modified
heron.build.host : MBP
heron.build.time : Sun Mar 22 06:42:05 CDT 2020
heron.build.timestamp : 1584877325000
heron.build.user : ...
heron.build.version : update-docs-compiling

Step 2 --- Launch an example topology

Note for macOS users

If you want to run topologies locally on macOS, you may need to add your hostname to your /etc/hosts file under localhost. Here's an example line: 127.0.0.1 localhost My-Mac-Laptop.local. You can fetch your hostname by simply running hostname in your shell.

If you set the --user flag when running the installation scripts, some example topologies will be installed in your ~/.heron/examples directory. You can launch an example topology locally (on your machine) using the Heron CLI tool:

$ heron submit local \
  ~/.heron/examples/heron-streamlet-examples.jar \
  org.apache.heron.examples.streamlet.WindowedWordCountTopology \
  WindowedWordCountTopology \
  --deploy-deactivated

The output should look something like this:

INFO: Launching topology 'WindowedWordCountTopology'

...

INFO: Topology 'WindowedWordCountTopology' launched successfully
INFO: Elapsed time: 3.409s.

This will submit the topology to your locally running Heron cluster but it won't activate the topology because the --deploy-deactivated flag was set. Activating the topology will be explored in step 5 below.

Note that the output shows whether the topology has been launched successfully as well the working directory for the topology.

To check what's under the working directory, run:

$ ls -al ~/.herondata/topologies/local/${ROLE}/WindowedWordCountTopology
-rw-r--r--   1 username  staff     6141 Oct 12 09:58 WindowedWordCountTopology.defn
-rw-r--r--   1 username  staff        5 Oct 12 09:58 container_1_flatmap1_4.pid
-rw-r--r--   1 username  staff        5 Oct 12 09:58 container_1_logger1_3.pid
# etc.

All instances' log files can be found in log-files under the working directory:

$ ls -al ~/.herondata/topologies/local/${ROLE}/WindowedWordCountTopology/log-files
total 408
-rw-r--r--   1 username  staff   5055 Oct 12 09:58 container_1_flatmap1_4.log.0
-rw-r--r--   1 username  staff      0 Oct 12 09:58 container_1_flatmap1_4.log.0.lck
-rw-r--r--   1 username  staff   5052 Oct 12 09:58 container_1_logger1_3.log.0
# etc.

Step 3 --- Start Heron Tracker

The Heron Tracker is a web service that continuously gathers information about your Heron cluster. You can launch the tracker by running the heron-tracker command (which is already installed):

$ heron-tracker
... Running on port: 8888
... Using config file: $HOME/.herontools/conf/heron_tracker.yaml

You can reach Heron Tracker in your browser at http://localhost:8888 and see something like the following upon successful submission of the topology: Heron Tracker

To explore Heron Tracker, please refer to Heron Tracker Rest API

Step 4 --- Start Heron UI

Heron UI is a user interface that uses Heron Tracker to provide detailed visual representations of your Heron topologies. To launch Heron UI:

$ heron-ui
... Running on port: 8889
... Using tracker url: http://localhost:8888

You can open Heron UI in your browser at http://localhost:8889 and see something like this upon successful submission of the topology: Heron UI

To play with Heron UI, please refer to Heron UI Usage Guide

Step 5 --- Explore topology management commands

In step 2 you submitted a topology to your local cluster. The heron CLI tool also enables you to activate, deactivate, and kill topologies and more.

$ heron activate local WindowedWordCountTopology
$ heron deactivate local WindowedWordCountTopology
$ heron kill local WindowedWordCountTopology

Upon successful actions, a message similar to the following will appear:

INFO: Successfully activated topology 'WindowedWordCountTopology'
INFO: Elapsed time: 1.980s.

For more info on these commands, read about topology lifecycles.

To list the available CLI commands, run heron by itself:

usage: heron <command> <options> ...

Available commands:
    activate           Activate a topology
    deactivate         Deactivate a topology
    help               Prints help for commands
    kill               Kill a topology
    restart            Restart a topology
    submit             Submit a topology
    version            Print version of heron-cli

For detailed documentation, go to https://heron.apache.org

To invoke help output for a command, run heron help COMMAND. Here's an example:

$ heron help submit
usage: heron submit [options] cluster/[role]/[environ] topology-file-name topology-class-name [topology-args]

Required arguments:
  cluster/[role]/[env]  Cluster, role, and environ to run topology
  topology-file-name    Topology jar/tar/zip file
  topology-class-name   Topology class name

Optional arguments:
  --config-path (a string; path to cluster config; default: "$HOME/.heron/conf")
  --config-property (key=value; a config key and its value; default: [])
  --deploy-deactivated (a boolean; default: "false")
  -D DEFINE             Define a system property to pass to java -D when
                        running main.
  --verbose (a boolean; default: "false")

Step 6 --- Explore other example topologies

The source code for the example topologies can be found on GitHub. The included example topologies:

  • AckingTopology.java --- A topology with acking enabled.
  • ComponentJVMOptionsTopology.java --- A topology that supplies JVM options for each component.
  • CustomGroupingTopology.java --- A topology that implements custom grouping.
  • ExclamationTopology.java --- A spout that emits random words to a bolt that then adds an exclamation mark.
  • MultiSpoutExclamationTopology.java --- a topology with multiple spouts.
  • MultiStageAckingTopology.java --- A three-stage topology. A spout emits to a bolt that then feeds to another bolt.
  • TaskHookTopology.java --- A topology that uses a task hook to subscribe to event notifications.

Troubleshooting

In case of any issues, please refer to Quick Start Troubleshooting.

Next Steps