Producer- Scoped (deprecated)
The Producer API provides methods that enable you to push data from a ServiceNow instance to a Kafka topic.
Note: This API is deprecated and replaced by the ProducerV2 - Scoped API.
This API requires the ServiceNow Integration Hub Action Step - Kafka Producer plugin (com.glide.hub.action_step.kafka) and is provided within the sn_ih_kafka namespace.
Parent Topic:Server API reference
Producer - send(String topic, String key, String message, Boolean isSync)
Sends the specified message to the specified Kafka topic.
| Name | Type | Description | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| topic | String | Name of the topic to publish the message to. A topic stores messages of the same type. For example, a topic named Payments might store messages about recent payments. When you enter the topic name, include everything that comes after the instance name prefix. For example, if the complete topic name is `snc.| key | String | Name of the key for a specific partition. Topics can be partitioned. Messages with the same key are stored in the same partition. For example, payment messages with a key of June would all be stored in the same partition of the Payments topic. | message | String | Message text. | isSync | Boolean | Flag that indicates whether to require the flow to wait for the step to complete before continuing.Valid values: - true: Wait for the step to complete before continuing the associated flow. - false: Do not wait for the step to complete before continuing the associated flow. |
This example shows how to send changed incident information to the changed_incidents Kafka topic. |