Point-to-Point Channel

In a Point-to-Point messaging model, the message sender sends a message to a specific receiver, and only that receiver receives the message.

Meaning, that you have a specific message producer, that delivers this message to a specific Datamin's pipeline by calling its API Endpoint. This can be set up by either using one of our integration libraries (Apache Kafka, RabbitMQ, AWS Lambda, Google Pub/Sub) or by calling an API Endpoint directly from your software.

The pipeline itself needs to begin with the "External trigger" task and the rest of it depends on what you want to do with the data coming to it from the message producer.

For example, this simple pipeline receives data in real-time from an external producer and streams items to a REST API one by one.

Last updated