Replies: 1 comment 5 replies
-
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
when we use client manager in socket service, client to server will communicate via message queue and the same applies for a server to a client via a message queue?
We have a requirement to communicate the socket service(python3) with other service(python2.7). Is there a way to push only data to kafka/redis message queue so that other service can able to access it and at the same time if other service places some data to message queue, socket service should be able to pick it and emit client ?
Is there a better way to communicate two services with different python versions via message queue and emit messages from socket service to client?
client <-- > socket service(python3) <--> (any message queue) <--> Other service(python2.7)
Please confirm if we can use any feature of python-socketio to achieve this. If not is it possible in any other way like maintaining a connection pool for both services of their own python versions and communicating via that?
Beta Was this translation helpful? Give feedback.
All reactions