You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2021/09/01 09:41:10 UTC

[GitHub] [rocketmq-client-python] tankcong opened a new issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

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


   
   **BUG REPORT**
   
   1. Please describe the issue you observed:
   
   running samples/producer.py with error:
   
   
   > Traceback (most recent call last):
     File "producer.py", line 19, in <module>
       from rocketmq.client import Producer, Message, TransactionMQProducer, TransactionStatus
     File "/usr/local/lib64/python3.6/site-packages/rocketmq/client.py", line 24, in <module>
       from .ffi import (
     File "/usr/local/lib64/python3.6/site-packages/rocketmq/ffi.py", line 173, in <module>
       dll.CreateOrderlyProducer.argtypes = [c_char_p]
     File "/usr/lib64/python3.6/ctypes/__init__.py", line 356, in __getattr__
       func = self.__getitem__(name)
     File "/usr/lib64/python3.6/ctypes/__init__.py", line 361, in __getitem__
       func = self._FuncPtr((name_or_ordinal, self))
   AttributeError: /usr/local/lib64/python3.6/site-packages/rocketmq/librocketmq.so: undefined symbol: CreateOrderlyProducer
   
   
   2. Please tell us about your environment:
   
    - CentOS 7
    - python 3.7
    - rocketmq-client-python 1.2.4
    - rocketmq version 4.8.0
    - rocketmq-client-cpp 2.0.0 -centos7-x86_64
   
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] ifplusor commented on issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115#issuecomment-966019237


   Check the declaration of `CreateOrderlyProducer` in [CProducer.h](https://github.com/apache/rocketmq-client-cpp/blob/master/include/CProducer.h)


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] ifplusor commented on issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115#issuecomment-966016342


   Please use latest rocketmq-client-cpp


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] treelly commented on issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
treelly commented on issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115#issuecomment-1068611446


    您好,邮件已收到!


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] treelly commented on issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
treelly commented on issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115#issuecomment-1047460133


   I have the same problem, my system is linux-ubuntu, how did you solve it 


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] missuor commented on issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
missuor commented on issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115#issuecomment-1068611284


   same problem 
   ubuntu 20.04
   ```
   (ecloud-collector) root@think:~# python -V
   Python 2.7.18
   (ecloud-collector) root@think:~# pip list
   Package                Version
   ---------------------- ---------
   backports-abc          0.5
   canal-python           0.4
   certifi                2021.10.8
   chardet                4.0.0
   enum34                 1.1.10
   futures                3.3.0
   idna                   2.10
   pip                    20.3.4
   protobuf               3.17.3
   requests               2.27.1
   rocketmq               0.4.4
   rocketmq-client-python 2.0.0
   setuptools             44.1.1
   singledispatch         3.7.0
   six                    1.16.0
   tornado                5.1.1
   typing                 3.10.0.0
   urllib3                1.26.8
   wheel                  0.37.1
   (ecloud-collector) root@think:~# dpkg -l|grep rocketmq
   ii  rocketmq                                   2.0.0                               amd64        This package is C++ client of Apache RocketMQ for debian and its derivertives like Ubuntu.
   (ecloud-collector) root@think:~# 
   ```


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [rocketmq-client-python] tankcong closed issue #115: librocketmq.so: undefined symbol: CreateOrderlyProducer

Posted by GitBox <gi...@apache.org>.
tankcong closed issue #115:
URL: https://github.com/apache/rocketmq-client-python/issues/115


   


-- 
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.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org