Skip to content

Latest commit

 

History

History

reader

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Hyperion - Reader Plugin

Gradle check pipeline reader plugin

This package provides a reader pipeline plugin that is able to read messages from stdin and publish it to a Hyperion pipeline. This plugin is primarily intended for debugging and should not be used for production purposes.

Usage

For full details on the supported configuration format, please see the configuration section of this document.

After launching the plugin, all messages entered in stdin will automatically be published to the pipeline as soon as a newline is encountered.

Building & Running

To build the library, run gradle pipeline:reader:shadowJar. The result will be located in build/reader-all.jar.

To execute the tests and linting, run gradle pipeline:reader:check.

To run a compiled version of the reader plugin, simply launch it using Java:

java -jar build/reader-all.jar [path to config]

Docker

The reader plugin can be easily built and run using Docker.

Running the pre-built Docker image

A pre-built image is available at the Docker hub repository. The plugin image is tagged as sergdelft/hyperion:pipeline-plugins-reader-<version>. Please consult the root README for the latest published version. To run this image with reader_config.yml as its configuration execute:

docker run -it -rm -v ${PWD}/reader_config.yml:/root/config.yml sergdelft/hyperion:pipeline-plugins-reader-0.1.0

Building the Docker image yourself

The included Dockerfile compiles and bundles the plugin. To build it, navigate to the repository root and run the following command:

docker build . -f pipeline/plugins/reader/Dockerfile -t hyperion-reader:latest

Once building completes, the plugin can be ran using the following command, assuming that the configuration file is located at reader_config.yml:

docker run -it -rm -v ${PWD}/reader_config.yml:/root/config.yml hyperion-reader:latest

Configuration

This plugin accepts configuration in a YAML file supplied as a command line argument. The following options are accepted:

# Various settings needed for the plugin to interact with the pipeline,
# such as it's unique ID and the hostname and port of the Hyperion plugin manager.
# 
# Please note that the plugin must also be able to talk to any of its previous
# and next steps in the pipeline. As such, it is recommended that all of the 
# plugins are contained on a single networking setup.
pipeline:
    # The host and port pair that can be used to contact the Hyperion plugin manager.
    # Please note that this machine must be able to talk over TCP to the manager and
    # that the manager must be aware of this plugin/aggregator.
    manager-host: "manager:8000"
  
    # The unique ID of this pipeline step that matches the configuration of the plugin
    # manager. Used to identify which plugins are inputs/outputs of this step. Please
    # note that the plugin will crash at launch if the plugin manager does not recognize
    # this plugin ID.
    plugin-id: "Reader"
  
    # The size of the internal buffer used for storing data that has not yet been processed
    # locally. Increasing this will allow for more messages to be buffered, at the cost of
    # more memory usage. Messages incoming while the buffer is full will be thrown away. If
    # this happens often, consider using the load balancer plugin to shard this plugin across
    # multiple instances. Defaults to 20,000.
    buffer-size: 20000

Output Format

The plugin will simply forward all input entered in stdin. Note that further plugins in the pipeline may expect input in a specific format (likely JSON).