Sample message producer written using the iggy-go sdk.
Getting Started
This is an example of how you may give instructions on setting up your project locally.
To get a local copy up and running follow these simple example steps.
Prerequisites
In order to use this SDK you need to install golang on your environment. Here's a link to official go documentation explaining how you can do that!
Usage
In order to successfully launch the producer app follow these steps:
Clone iggy repo and run it in background
git clone https://github.com/apache/iggy.git
cd iggy
cargo run --bin iggy-server -r
Open new terminal instance and enter iggy-go root folder
cd iggy-go
Run the producer
go run ./samples/producer
Producer should start sending new messages, output should look similar to this:
$ go run ./samples/producer
Stream with ID: 1 exists.
Topic with ID: 1 exists.
Messages will be sent to stream '1', topic '1', partition '1' with interval 1000 ms.
Sent messages: {"message_type":"order_rejected","payload":"{\"id\":1,\"timestamp\":37314,\"reason\":\"Other\"}"}
Sent messages: {"message_type":"order_confirmed","payload":"{\"id\":1,\"price\":215,\"timestamp\":28024}"}