#!/usr/bin/env python # # Copyright 2018 Confluent Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This is a simple example demonstrating how to produce a message to # Confluent Cloud then read it back again. # # https://www.confluent.io/confluent-cloud/ # # Auto-creation of topics is disabled in Confluent Cloud. You will need to # use the ccloud cli to create the python-test-topic topic before running this # example. # # $ ccloud topic create python-test-topic # # The , and parameters # are available via the Confluent Cloud web interface. For more information, # refer to the quick-start: # # https://docs.confluent.io/current/cloud-quickstart.html # # to execute using Python 2.7: # $ virtualenv ccloud_example # $ source ccloud_example/bin/activate # $ pip install confluent_kafka # $ python confluent_cloud.py # $ deactivate # # to execute using Python 3.x: # $ python -m venv ccloud_example # $ source ccloud_example/bin/activate # $ pip install confluent_kafka # $ python confluent_cloud.py # $ deactivate import uuid from confluent_kafka import Producer, Consumer, KafkaError, KafkaException def error_cb(err): """ The error callback is used for generic client errors. These errors are generally to be considered informational as the client will automatically try to recover from all errors, and no extra action is typically required by the application. For this example however, we terminate the application if the client is unable to connect to any broker (_ALL_BROKERS_DOWN) and on authentication errors (_AUTHENTICATION). """ print("Client error: {}".format(err)) if err.code() == KafkaError._ALL_BROKERS_DOWN or \ err.code() == KafkaError._AUTHENTICATION: # Any exception raised from this callback will be re-raised from the # triggering flush() or poll() call. raise KafkaException(err) # Create producer p = Producer({ 'bootstrap.servers': '', 'sasl.mechanism': 'PLAIN', 'security.protocol': 'SASL_SSL', 'sasl.username': '', 'sasl.password': '', 'error_cb': error_cb, }) def acked(err, msg): """Delivery report callback called (from flush()) on successful or failed delivery of the message.""" if err is not None: print('Failed to deliver message: {}'.format(err.str())) else: print('Produced to: {} [{}] @ {}'.format(msg.topic(), msg.partition(), msg.offset())) if __name__ == '__main__': for n in range(0, 10): # Produce message: this is an asynchronous operation. # Upon successful or permanently failed delivery to the broker the # callback will be called to propagate the produce result. # The delivery callback is triggered from poll() or flush(). # For long running # produce loops it is recommended to call poll() to serve these # delivery report callbacks. p.produce('python-test-topic', value='python test value nr {}'.format(n), callback=acked) # Trigger delivery report callbacks from previous produce calls. p.poll(0) # flush() is typically called when the producer is done sending messages to wait # for outstanding messages to be transmitted to the broker and delivery report # callbacks to get called. For continous producing you should call p.poll(0) # after each produce() call to trigger delivery report callbacks. p.flush(10) # Create consumer c = Consumer({ 'bootstrap.servers': '', 'sasl.mechanism': 'PLAIN', 'security.protocol': 'SASL_SSL', 'sasl.username': '', 'sasl.password': '', 'group.id': str(uuid.uuid1()), # this will create a new consumer group on each invocation. 'auto.offset.reset': 'earliest', 'error_cb': error_cb, }) c.subscribe(['python-test-topic']) try: while True: msg = c.poll(0.1) # Wait for message or event/error if msg is None: # No message available within timeout. # Initial message consumption may take up to `session.timeout.ms` for # the group to rebalance and start consuming. continue if msg.error(): # Errors are typically temporary, print error and continue. print('Consumer error: {}'.format(msg.error())) continue print('Consumed: {}'.format(msg.value())) except KeyboardInterrupt: pass finally: # Leave group and commit final offsets c.close()