Skip to main content

A wrapper for kafka-python used in knative

Project description

knativekafka

knativekafka is a wrapper around kafka-python package. This package is easy to use and can be used to test the Kafka Producer in kafka-python package.

Some important items to note.

  • This package includes the basic testing only as of now.

  • Polling, parallelism etc. has not been included yet.

Installation Instructions

The package is availble in PyPI which is an official repository for python package. pip is a package management system and is used for installing Python packages from Python Package Index (also known as PyPI). It is the most common way to install Python packages. Install the package in your environment from the terminal using the below pip command:

pip3 install knativekafka

Pre-requisites

  • Python 3.x

  • pip3

  • Set the environment variable - KAFKA_BOOTSTRAP_SERVERS

  • Have the kafka server installed and configured with a topic

How to Use?

  • Import the Kafka Producer into your python code using the below import.

from knativekafka.knativekafkaproducer import KNativeKafkaProducer

  • To import the Kafka Consumer use the below import. from knativekafka.knativekafkaconsumer import KNativeKafkaConsumer

Usage

  • Only few features are implemented in the package as of now.

  • Additional features to be included later.

Test Producer

To test the producer, perform the below steps.

  • Instantiate the KNativeKafkaProducer by passing the kafka topic.

  • Bootstrap Servers -- The init() method checks whether the os.environ() contains the KAFKA_BOOTSTRAP_SERVERS key.

  • If so, it fetches the value from the environment. If not, it sets the default value as localhost:9092.

  • Topic -- The topic is passed as parameter. Since, topic is a required field,if topic is an empty string, then, topic is retrieved from the environment variable. If topic is not passed and environment variable doesn't contain KAFKA_TOPIC, ValueError is thrown. To send data, use the send_binary_data() by passing the message as parameter. The send_binary_data() takes the message in binary format.

  • TLS Enabled -- If environment variable - KAFKA_NET_TLS_ENABLE is found and has value True, then, TLS is enabled. Get the tls information such as ssl_cafile, ssl_certfile and ssl_keyfile from the corresponding environment variable. The environment variables are KAFKA_NET_TLS_CA_CERT, KAFKA_NET_TLS_CERT and KAFKA_NET_TLS_KEY.

  • TLS Disabled -- If either environment variable - KAFKA_NET_TLS_ENABLE is not found or has value False, then, TLS is disabled. Set the value for the tls fields such as ssl_cafile, ssl_certfile and ssl_keyfile to None.

    topic = "python-topic"
    kafka_producer = KNativeKafkaProducer(topic=topic)
    value = input('value:')
    value = bytes(value, encoding='utf8')            
    kafka_producer.send_binary_data(value)    
    print("Successfully sent data....") 

Test Consumer

To test the consumer, perform the below steps.

  • Instantiate the KNativeKafkaConsumer by passing the topic and then, call getMessage(). The getMessage() prints the message values.

  • Bootstrap Servers -- The init() method checks whether the os.environ() contains the KAFKA_BOOTSTRAP_SERVERS key.

  • If so, it fetches the value from the environment. If not, it sets the default value as localhost:9092.

  • Topic -- The topic is passed as parameter. Since, topic is a required field,if topic is an empty string, then, topic is retrieved from the environment variable. If topic is not passed and environment variable doesn't contain KAFKA_TOPIC, ValueError is thrown. To send data, use the send_binary_data() by passing the message as parameter. The send_binary_data() takes the message in binary format.

  • TLS Enabled -- If environment variable - KAFKA_NET_TLS_ENABLE is found and has value True, then, TLS is enabled. Get the tls information such as ssl_cafile, ssl_certfile and ssl_keyfile from the corresponding environment variable. The environment variables are KAFKA_NET_TLS_CA_CERT, KAFKA_NET_TLS_CERT and KAFKA_NET_TLS_KEY.

  • TLS Disabled -- If either environment variable - KAFKA_NET_TLS_ENABLE is not found or has value False, then, TLS is disabled. Set the value for the tls fields such as ssl_cafile, ssl_certfile and ssl_keyfile to None.

topic = "python-topic"
kafka_consumer =  KNativeKafkaConsumer(topics=topic)
msg = kafka_consumer.getMessage()    
print(msg)

References

License

Apache License

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

knativekafka-0.2.2.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

knativekafka-0.2.2-py2.py3-none-any.whl (5.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file knativekafka-0.2.2.tar.gz.

File metadata

  • Download URL: knativekafka-0.2.2.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.3

File hashes

Hashes for knativekafka-0.2.2.tar.gz
Algorithm Hash digest
SHA256 6b5bbad65a3420447a77092646b35d2845805533a83d0f6a9ad92c8cf0f531cc
MD5 3ec2ed335a8bfdd3b3b258e3e9bdbeaa
BLAKE2b-256 073501a63eef75d9d57f7dba8f493680df97db83390573b95afb559277c11e5c

See more details on using hashes here.

File details

Details for the file knativekafka-0.2.2-py2.py3-none-any.whl.

File metadata

  • Download URL: knativekafka-0.2.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.3

File hashes

Hashes for knativekafka-0.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3362a988b483f5e02e480e966b9a06060c14bdc5e9a85fe3897769acb6f8af06
MD5 f5e108d491971edad93b9e0a6b92a8cc
BLAKE2b-256 4501412331f90e64a5e03d570fe9dea0c24d7535eaab2d2f9a041c722854175e

See more details on using hashes here.

Supported by

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