python/example/normal_producer_example.py (26 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You 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. from rocketmq import ClientConfiguration, Credentials, Message, Producer if __name__ == '__main__': endpoints = "foobar.com:8080" credentials = Credentials() # if auth enable # credentials = Credentials("ak", "sk") config = ClientConfiguration(endpoints, credentials) # with namespace # config = ClientConfiguration(endpoints, credentials, "namespace") topic = "topic" producer = Producer(config, (topic,)) try: producer.startup() try: msg = Message() # topic for the current message msg.topic = topic msg.body = "hello, rocketmq.".encode('utf-8') # secondary classifier of message besides topic msg.tag = "rocketmq-send-message" # key(s) of the message, another way to mark message besides message id msg.keys = "send_sync" # user property for the message msg.add_property("send", "sync") res = producer.send(msg) print(f"{producer.__str__()} send message success. {res}") producer.shutdown() print(f"{producer.__str__()} shutdown.") except Exception as e: print(f"normal producer example raise exception: {e}") producer.shutdown() except Exception as e: print(f"{producer.__str__()} startup raise exception: {e}") producer.shutdown()