K2K Standalone Tool
Describes the high level usage of the K2K Standalone Tool
Was this helpful?
Was this helpful?
# Start server with a single pipeline file
k2k-tool server -f /path/to/pipeline.k2k.yml
# Start server watching a directory
k2k-tool server -d /pipelines
# Start server with a pipeline defined over multiple files and custom port
k2k-tool server -f /path/to/pipeline1.k2k.yml,/path/to/pipeline2.k2k.yml -p 9090
# Describe consumer groups from a single pipeline file
k2k-tool describe -f /path/to/pipeline.k2k.yml
# Set offset for a specific topic, partition, and offset
k2k-tool set -f /path/to/pipeline.k2k.yml -o "my-topic:0:100"
# Set offset for all partitions of a topic
k2k-tool set -f /path/to/pipeline.k2k.yml -o "my-topic:*:100"
# Reset offsets to earliest for a pipeline
k2k-tool reset -f /path/to/pipeline.k2k.yml