Rest Proxy Definitions: ProduceResponse

Description

Used as output for the Produce service. Contains the metadata of the produced message

Field name Type Description

cluster

string

(optional) The name of the cluster where the message was produced to

stream

string

(optional) The name of the stream where the message was produced to

partition

int32

(optional) The partition number where the message was produced to

offset

int64

(optional) The offset on the topic partition for the produced message

timestamp

int64

(optional) The produced timestamp (Linux Epoch in milliseconds)

Examples

{
    "cluster": "amsterdam-01",
    "offset": 0,
    "timestamp": 1569911914135,
    "stream": "general-test",
    "partition": 0
}