卡夫卡休息的例子

ama*_*eur 5 apache-kafka kafka-consumer-api kafka-producer-api confluent-platform

是否有生产者和消费者组在 Java 中使用 Kafka Rest api 的好例子?我不是在寻找生产者和消费者的简单消费者或卡夫卡客户端示例。任何帮助表示赞赏。

Jin*_*Lee 4

这是来自 Confluence 的示例 Rest API(Rest Proxy)代码。 不幸的是不是在 Java 中而是在 Python 中。:(
我必须输入它,因此它可能包含一些拼写错误。我希望这对您有一点帮助。

(使用Python编写的REST API的生产者)

import requests
import base64
import json

url = "http://restproxy:8082/topics/my_topic"
headers = {
    "Content-Type" : "application/vnd.kafka.binary.v1 + json",
}
# Create one or more messages
payload = {"records":
       [{
           "key":base64.b64encode('firstkey'),
           "value":base64.b64encode('firstvalue'),
       }],
}
# Send the message
r = requests.post(url, data=json.dumps(payload), headers=headers)
if r.status_code != 200:
   print("Status Code: " + str(r.status_code))
   print(r.text)
Run Code Online (Sandbox Code Playgroud)

(消费者使用Python编写的Rest API)

import requests
import base64
import json
import sys

#Base URL for interacting with REST server
baseurl = "http://restproxy:8082/consumers/group1"

#Create the Consumer instance
print("Creating consumer instance")
payload {
    "format": "binary",
}
headers = {
    "Content-Type" : "application/vnd.kafka.v1+json",
}
r = requests.post(baseurl, data=json.dumps(payload), headers=headers)

if r.status_code !=200:
    print("Status Code: " + str(r.status_code))
    print(r.text)
    sys.exit("Error thrown while creating consumer")

# Base URI is used to identify the consumer instance
base_uri = r.json()["base_uri"]

#Get the messages from the consumer
headers = {
    "Accept" : "application/vnd.kafka.binary.v1 + json",
}

# Request messages for the instance on the Topic
r = requests.get(base_uri + "/topics/my_topic", headers = headers, timeout =20)

if r.status_code != 200: 
    print("Status Code: " + str(r.status_code))
    print(r.text)
    sys.exit("Error thrown while getting message")

# Output all messages
for message in r.json():
    if message["key"] is not None:
        print("Message Key:" + base64.b64decode(message["key"]))
    print("Message Value:" + base64.b64decode(message["value"]))

# When we're done, delete the consumer
headers = {
    "Accept" : "application/vnd.kafka.v1+json",
}

r = requests.delete(base_uri, headers=headers)

if r.status_code != 204: 
    print("Status Code: " + str(r.status_code))
    print(r.text)
Run Code Online (Sandbox Code Playgroud)