sicklife opened a new issue #96:
URL: https://github.com/apache/rocketmq-client-python/issues/96


   
   **BUG REPORT**
   
   1. Please describe the issue you observed:
   
   here is my code
   ```python
   import uuid
   
   from rocketmq.client import Producer, Message
   
   producer = Producer(str(uuid.uuid1()), max_message_size=1000000)
   
   producer.set_name_server_address(".....")
   
   producer.start()
   
   for _ in range(1000000):
       msg = Message("test_topic")
   
       msg.set_body("test_mg ")
   
       msg.set_tags("*")
   
       producer.send_sync(msg)
   
   producer.shutdown()
   ```
   
   - What did you expect to see?
   progress memory is steady.
   
   - What did you see instead?
   the res memory of this process is continues to grow. Infact the memory will 
continue grow until eat up all memory avialable.
   
   2. Please tell us about your environment:
   
    - What is your OS?
   centos7
    - What is your client version?
   lastest from pip
   
    - What is your RocketMQ version?
   4.4.0
   
   3. Other information (e.g. detailed explanation, logs, related issues, 
suggestions on how to fix, etc):
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to