-
Notifications
You must be signed in to change notification settings - Fork 323
client.zh_CN
Ady Liu edited this page Jan 18, 2016
·
3 revisions
#客户端
目前第一个可用的python 3.x客户端地址:https://github.com/adyliu/jafka/tree/master/clients/python python 2.x需要稍许改动,另外只支持python 2.6+,更低版本的python不受支持。
目前支持三种类型的操作:
- offset
- fetch
- produce
未被支持的操作包括:
- multifetch
- multiproduce
curl -X POST 'http://127.0.0.1:9093' -H 'topic:demo' -H 'request_key:PRODUCE' -H 'partition:0' -d '{"name":"baby"}'
Http POST 方式发送数据:
Header:
topic:队列名称,例如demo
request_key:固定值,PRODUCE
partition:分区数,默认为0
Body:
要发送的消息内容
Response:
status_code: 200 表示正常,其它均不正常
body: OK表示正常。
Language: English | Simple Chinese