Skip to main content

kafka consumer and producer proxy

Project description

kafkaproxy

kafka生产者和消费者的代理工具.

代理对象用于推迟初始化.我们可以在需要的地方用代理对象的全局变量直接编写逻辑,避免被代理的对象来回在函数间传递.

特性

  • 支持代理kafka-python,aiokafkaconfluent-kafka的生产者消费者对象.
  • 提供统一通用的生产者消费者接口包装

安装

  • 只安装本项目不安装被代理对象的依赖: pip install kafkaproxy
  • 安装本项目同时确定要代理的对象包为kafka-python: pip install kafkaproxy[kafka]
  • 安装本项目同时确定要代理的对象包为aiokafka: pip install kafkaproxy[aio]
  • 安装本项目同时确定要代理的对象包为confluent-kafka: pip install kafkaproxy[confluent]

使用

本项目支持代理3种kafka模块中的对应模块,使用枚举KafkaType中的取值在调用方法initialize_from_addresses初始化时指定. 代理对象除了原样代理对象外还提供了生产者和消费者的统一通用接口包装. 由于对应的方法是动态绑定的,因此如果需要他们的typehints可以用typing.cast将代理对象转化为对应的协议对象

  • 同步接口生产者使用ProducerProtocol
  • 异步接口生产者使用AioProducerProtocol
  • 同步接消费产者使用ConsumerProtocol
  • 异步接消费产者使用AioConsumerProtocol

代理kafka-pythonconfluent-kafka生产者

from kafkaproxy import ProducerProxy, KafkaType, ProducerProtocol
from typing import cast
import time
kafkap = ProducerProxy()


def run() -> None:
    p = cast(ProducerProtocol, kafkap)
    with p.mount() as cli:
        for i in range(10):
            cli.publish("topic1", f"send {i}")
            time.sleep(0.1)


# kafkap.initialize_from_addresses("localhost:9094", kafka_type=KafkaType.ConfluentKafka, acks="all")
kafkap.initialize_from_addresses("localhost:9094", kafka_type=KafkaType.Kafka)
try:
    print("start publishing")
    run()
finally:
    print("stoped")

代理kafka-pythonconfluent-kafka消费者

from kafkaproxy import ConsumerProxy, KafkaType, ConsumerProtocol
from typing import cast

kafkac = ConsumerProxy()


def run() -> None:
    c = cast(ConsumerProtocol, kafkac)
    with c.watch() as g:
        for record in g:
            print(record.value)


# kafkac.initialize_from_addresses("localhost:9094", "topic1", group_id="test2", kafka_type=KafkaType.Kafka)
kafkac.initialize_from_addresses("localhost:9094", "topic1", group_id="test2", kafka_type=KafkaType.ConfluentKafka)
try:
    print("start watching")
    run()
finally:
    print("stoped")

代理aiokafka生产者

import asyncio
from kafkaproxy import ProducerProxy, KafkaType, AioProducerProtocol
from typing import cast

kafkap = ProducerProxy()


async def run() -> None:
    p = cast(AioProducerProtocol, kafkap)
    async with p.mount() as cli:
        for i in range(10):
            await cli.publish("topic1", f"send {i}")
            await asyncio.sleep(0.1)


async def main() -> None:
    kafkap.initialize_from_addresses("localhost:9094", kafka_type=KafkaType.AioKafka, acks="all")
    await run()


try:
    print("start watching")
    asyncio.run(main())
finally:
    print("stoped")

代理aiokafka消费者

import asyncio
from kafkaproxy import ConsumerProxy, KafkaAutoOffsetReset, KafkaType, AioConsumerProtocol
from typing import cast

kafkac = ConsumerProxy()


async def run() -> None:
    c = cast(AioConsumerProtocol, kafkac)
    async with c.watch() as g:
        async for record in g:
            print(record.value)


async def main() -> None:
    kafkac.initialize_from_addresses("localhost:9094", "topic1", group_id="test2", kafka_type=KafkaType.AioKafka, auto_offset_reset=KafkaAutoOffsetReset.earliest)
    await run()


try:
    print("start watching")
    asyncio.run(main())
finally:
    print("stoped")

v0.0.1

项目创建 MIT License

Copyright (c) 2023 Python-Tools

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kafkaproxy-0.0.1.tar.gz (9.9 kB view details)

Uploaded Source

Built Distributions

kafkaproxy-0.0.1-py3.11.egg (10.2 kB view details)

Uploaded Source

kafkaproxy-0.0.1-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file kafkaproxy-0.0.1.tar.gz.

File metadata

  • Download URL: kafkaproxy-0.0.1.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for kafkaproxy-0.0.1.tar.gz
Algorithm Hash digest
SHA256 b9cc08ac68d8c69c97e4e21daa80f8c8d32e970d67acc2f3b7529f71fbd5c04f
MD5 a503fd3d2a0ad500ef5be137dc6130bf
BLAKE2b-256 464468385244bf893607cde666994d41a72ba4ecd50ab62e5048a1e0fcad1ecf

See more details on using hashes here.

File details

Details for the file kafkaproxy-0.0.1-py3.11.egg.

File metadata

  • Download URL: kafkaproxy-0.0.1-py3.11.egg
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for kafkaproxy-0.0.1-py3.11.egg
Algorithm Hash digest
SHA256 de6e166f0121676126fc293347e7a1bd637b943a4d7baf9c3f511d5ab75d954a
MD5 74488144fe331bbf3ac8117a3c330633
BLAKE2b-256 9c1498291da991a8d474e9f528bf251fb855b4ceac412a4b90305e74a8bbc73d

See more details on using hashes here.

File details

Details for the file kafkaproxy-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: kafkaproxy-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for kafkaproxy-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b58e39ec053794c580a26bd5a51247e594508bfef527ac09b010f211e3075ae5
MD5 ef48eaf243c9f0c8f663e17c10bb63a6
BLAKE2b-256 fad55f07224bbe91b57227739c3781f83ffe1ab2dbacffb45a9a563e92162da3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page