最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

深入了解如何基于Python讀寫(xiě)Kafka

 更新時(shí)間:2019年12月31日 11:21:13   作者:Zl_one  
這篇文章主要介紹了深入了解如何基于Python讀寫(xiě)Kafka,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

這篇文章主要介紹了深入了解如何基于Python讀寫(xiě)Kafka,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

本篇會(huì)給出如何使用python來(lái)讀寫(xiě)kafka, 包含生產(chǎn)者和消費(fèi)者.

以下使用kafka-python客戶端

生產(chǎn)者

爬蟲(chóng)大多時(shí)候作為消息的發(fā)送端, 在消息發(fā)出去后最好能記錄消息被發(fā)送到了哪個(gè)分區(qū), offset是多少, 這些記錄在很多情況下可以幫助快速定位問(wèn)題, 所以需要在send方法后加入callback函數(shù), 包括成功和失敗的處理

# -*- coding: utf-8 -*-

'''
callback也是保證分區(qū)有序的, 比如2條消息, a先發(fā)送, b后發(fā)送, 對(duì)于同一個(gè)分區(qū), 那么會(huì)先回調(diào)a的callback, 再回調(diào)b的callback
'''

import json
from kafka import KafkaProducer

topic = 'demo'


def on_send_success(record_metadata):
  print(record_metadata.topic)
  print(record_metadata.partition)
  print(record_metadata.offset)


def on_send_error(excp):
  print('I am an errback: {}'.format(excp))


def main():
  producer = KafkaProducer(
    bootstrap_servers='localhost:9092'
  )
  producer.send(topic, value=b'{"test_msg":"hello world"}').add_callback(on_send_success).add_callback(
    on_send_error)
  # close() 方法會(huì)阻塞等待之前所有的發(fā)送請(qǐng)求完成后再關(guān)閉 KafkaProducer
  producer.close()


def main2():
  '''
  發(fā)送json格式消息
  :return:
  '''
  producer = KafkaProducer(
    bootstrap_servers='localhost:9092',
    value_serializer=lambda m: json.dumps(m).encode('utf-8')
  )
  producer.send(topic, value={"test_msg": "hello world"}).add_callback(on_send_success).add_callback(
    on_send_error)
  # close() 方法會(huì)阻塞等待之前所有的發(fā)送請(qǐng)求完成后再關(guān)閉 KafkaProducer
  producer.close()
if __name__ == '__main__':
  # main()
  main2()

消費(fèi)者

kafka的消費(fèi)模型比較復(fù)雜, 我會(huì)分以下幾種情況來(lái)進(jìn)行說(shuō)明

1.不使用消費(fèi)組(group_id=None)

不使用消費(fèi)組的情況下可以啟動(dòng)很多個(gè)消費(fèi)者, 不再受限于分區(qū)數(shù), 即使消費(fèi)者數(shù)量 > 分區(qū)數(shù), 每個(gè)消費(fèi)者也都可以收到消息

# -*- coding: utf-8 -*-

'''
消費(fèi)者: group_id=None
'''
from kafka import KafkaConsumer
topic = 'demo'
def main():
  consumer = KafkaConsumer(
    topic,
    bootstrap_servers='localhost:9092',
    auto_offset_reset='latest',
    # auto_offset_reset='earliest',
  )
  for msg in consumer:
    print(msg)
    print(msg.value)
  consumer.close()
if __name__ == '__main__':
  main()

2.指定消費(fèi)組

以下使用pool方法來(lái)拉取消息

pool 每次拉取只能拉取一個(gè)分區(qū)的消息, 比如有2個(gè)分區(qū)1個(gè)consumer, 那么會(huì)拉取2次

pool 是如果有消息馬上進(jìn)行拉取, 如果timeout_ms內(nèi)沒(méi)有新消息則返回空dict, 所以可能出現(xiàn)某次拉取了1條消息, 某次拉取了max_records條

# -*- coding: utf-8 -*-

'''
消費(fèi)者: 指定group_id
'''

from kafka import KafkaConsumer

topic = 'demo'
group_id = 'test_id'


def main():
  consumer = KafkaConsumer(
    topic,
    bootstrap_servers='localhost:9092',
    auto_offset_reset='latest',
    group_id=group_id,

  )
  while True:
    try:
      # return a dict
      batch_msgs = consumer.poll(timeout_ms=1000, max_records=2)
      if not batch_msgs:
        continue
      '''
      {TopicPartition(topic='demo', partition=0): [ConsumerRecord(topic='demo', partition=0, offset=42, timestamp=1576425111411, timestamp_type=0, key=None, value=b'74', headers=[], checksum=None, serialized_key_size=-1, serialized_value_size=2, serialized_header_size=-1)]}
      '''
      for tp, msgs in batch_msgs.items():
        print('topic: {}, partition: {} receive length: '.format(tp.topic, tp.partition, len(msgs)))
        for msg in msgs:
          print(msg.value)
    except KeyboardInterrupt:
      break

  consumer.close()


if __name__ == '__main__':
  main()

關(guān)于消費(fèi)組

我們根據(jù)配置參數(shù)分為以下幾種情況

  • group_id=None
    • auto_offset_reset='latest': 每次啟動(dòng)都會(huì)從最新出開(kāi)始消費(fèi), 重啟后會(huì)丟失重啟過(guò)程中的數(shù)據(jù)
    • auto_offset_reset='latest': 每次從最新的開(kāi)始消費(fèi), 不會(huì)管哪些任務(wù)還沒(méi)有消費(fèi)
  • 指定group_id
    • 全新group_id
      • auto_offset_reset='latest': 只消費(fèi)啟動(dòng)后的收到的數(shù)據(jù), 重啟后會(huì)從上次提交offset的地方開(kāi)始消費(fèi)
      • auto_offset_reset='earliest': 從最開(kāi)始消費(fèi)全量數(shù)據(jù)
    • 舊group_id(即kafka集群中還保留著該group_id的提交記錄)
      • auto_offset_reset='latest': 從上次提交offset的地方開(kāi)始消費(fèi)
      • auto_offset_reset='earliest': 從上次提交offset的地方開(kāi)始消費(fèi)

性能測(cè)試

以下是在本地進(jìn)行的測(cè)試, 如果要在線上使用kakfa, 建議提前進(jìn)行性能測(cè)試

producer

# -*- coding: utf-8 -*-

'''
producer performance

environment:
  mac
  python3.7
  broker 1
  partition 2
'''

import json
import time
from kafka import KafkaProducer

topic = 'demo'
nums = 1000000


def main():
  producer = KafkaProducer(
    bootstrap_servers='localhost:9092',
    value_serializer=lambda m: json.dumps(m).encode('utf-8')
  )
  st = time.time()
  cnt = 0
  for _ in range(nums):
    producer.send(topic, value=_)
    cnt += 1
    if cnt % 10000 == 0:
      print(cnt)

  producer.flush()

  et = time.time()
  cost_time = et - st
  print('send nums: {}, cost time: {}, rate: {}/s'.format(nums, cost_time, nums // cost_time))


if __name__ == '__main__':
  main()

'''
send nums: 1000000, cost time: 61.89236712455749, rate: 16157.0/s
send nums: 1000000, cost time: 61.29534196853638, rate: 16314.0/s
'''

consumer

# -*- coding: utf-8 -*-

'''
consumer performance
'''

import time
from kafka import KafkaConsumer

topic = 'demo'
group_id = 'test_id'


def main1():
  nums = 0
  st = time.time()

  consumer = KafkaConsumer(
    topic,
    bootstrap_servers='localhost:9092',
    auto_offset_reset='latest',
    group_id=group_id
  )
  for msg in consumer:
    nums += 1
    if nums >= 500000:
      break
  consumer.close()

  et = time.time()
  cost_time = et - st
  print('one_by_one: consume nums: {}, cost time: {}, rate: {}/s'.format(nums, cost_time, nums // cost_time))


def main2():
  nums = 0
  st = time.time()

  consumer = KafkaConsumer(
    topic,
    bootstrap_servers='localhost:9092',
    auto_offset_reset='latest',
    group_id=group_id
  )
  running = True
  batch_pool_nums = 1
  while running:
    batch_msgs = consumer.poll(timeout_ms=1000, max_records=batch_pool_nums)
    if not batch_msgs:
      continue
    for tp, msgs in batch_msgs.items():
      nums += len(msgs)
      if nums >= 500000:
        running = False
        break

  consumer.close()

  et = time.time()
  cost_time = et - st
  print('batch_pool: max_records: {} consume nums: {}, cost time: {}, rate: {}/s'.format(batch_pool_nums, nums,
                                              cost_time,
                                              nums // cost_time))


if __name__ == '__main__':
  # main1()
  main2()

'''
one_by_one: consume nums: 500000, cost time: 8.018627166748047, rate: 62354.0/s
one_by_one: consume nums: 500000, cost time: 7.698841094970703, rate: 64944.0/s


batch_pool: max_records: 1 consume nums: 500000, cost time: 17.975456953048706, rate: 27815.0/s
batch_pool: max_records: 1 consume nums: 500000, cost time: 16.711708784103394, rate: 29919.0/s

batch_pool: max_records: 500 consume nums: 500369, cost time: 6.654940843582153, rate: 75187.0/s
batch_pool: max_records: 500 consume nums: 500183, cost time: 6.854053258895874, rate: 72976.0/s

batch_pool: max_records: 1000 consume nums: 500485, cost time: 6.504687070846558, rate: 76942.0/s
batch_pool: max_records: 1000 consume nums: 500775, cost time: 7.047331809997559, rate: 71058.0/s
'''

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • python調(diào)用windows api鎖定計(jì)算機(jī)示例

    python調(diào)用windows api鎖定計(jì)算機(jī)示例

    這篇文章主要介紹了python調(diào)用windows api鎖定計(jì)算機(jī)示例,需要的朋友可以參考下
    2014-04-04
  • Python中文件路徑的處理方式總結(jié)

    Python中文件路徑的處理方式總結(jié)

    本文詳細(xì)介紹了Python的os和pathlib模塊在文件路徑處理中的應(yīng)用,包括常用函數(shù)和類方法,以及它們之間的對(duì)比和實(shí)例演示,旨在幫助開(kāi)發(fā)者提升文件操作效率和代碼可讀性,需要的朋友可以參考下
    2025-03-03
  • Python更新所有安裝的包的實(shí)現(xiàn)方式

    Python更新所有安裝的包的實(shí)現(xiàn)方式

    這篇文章主要介紹了Python更新所有安裝的包的實(shí)現(xiàn)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-03-03
  • 將python文件打包成EXE應(yīng)用程序的方法

    將python文件打包成EXE應(yīng)用程序的方法

    相信大家都想把自己完成的項(xiàng)目打包成EXE應(yīng)用文件,然后就可以放在桌面隨時(shí)都能運(yùn)行了,下面來(lái)分享利用pytinstaller這個(gè)第三方庫(kù)來(lái)打包程序,感興趣的朋友跟隨小編一起看看吧
    2019-05-05
  • Python使用Numpy模塊讀取文件并繪制圖片

    Python使用Numpy模塊讀取文件并繪制圖片

    這篇文章主要介紹了Python使用Numpy模塊讀取文件并繪制圖片,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-05-05
  • Django多數(shù)據(jù)庫(kù)的實(shí)現(xiàn)過(guò)程詳解

    Django多數(shù)據(jù)庫(kù)的實(shí)現(xiàn)過(guò)程詳解

    這篇文章主要介紹了Django多數(shù)據(jù)庫(kù)的實(shí)現(xiàn)過(guò)程詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2019-08-08
  • Django數(shù)據(jù)庫(kù)如何在原有表中添加新字段

    Django數(shù)據(jù)庫(kù)如何在原有表中添加新字段

    這篇文章主要介紹了Django數(shù)據(jù)庫(kù)如何在原有表中添加新字段問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-09-09
  • Python函數(shù)值傳遞引用傳遞及形式參數(shù)和實(shí)際參數(shù)的區(qū)別

    Python函數(shù)值傳遞引用傳遞及形式參數(shù)和實(shí)際參數(shù)的區(qū)別

    這篇文章主要介紹了Python函數(shù)值傳遞引用傳遞及形式參數(shù)和實(shí)際參數(shù)的區(qū)別,具有一定的參考價(jià)值,需要的小伙伴可以參考一下,希望對(duì)你的學(xué)習(xí)有所幫助
    2022-05-05
  • python提取log文件內(nèi)容并畫(huà)出圖表

    python提取log文件內(nèi)容并畫(huà)出圖表

    這篇文章主要介紹了python提取log文件內(nèi)容并畫(huà)出圖表,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2019-07-07
  • flask利用flask-wtf驗(yàn)證上傳的文件的方法

    flask利用flask-wtf驗(yàn)證上傳的文件的方法

    這篇文章主要介紹了flask利用flask-wtf驗(yàn)證上傳的文件的方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-01-01

最新評(píng)論

平顶山市| 兰西县| 博兴县| 易门县| 大同市| 雷波县| 平罗县| 南川市| 英德市| 林甸县| 鄯善县| 大厂| 冕宁县| 邵武市| 锡林郭勒盟| 邹平县| 灵石县| 包头市| 龙川县| 清河县| 项城市| 舒城县| 班戈县| 辽宁省| 汝城县| 灵武市| 方山县| 华容县| 赫章县| 富阳市| 龙川县| 浪卡子县| 宿松县| 南宁市| 石景山区| 万宁市| 兴海县| 宁都县| 建宁县| 天全县| 丹巴县|