By shadowcodecz
I have app with 3 components.
Used language is Python. The library for comunication (messaging) is ZMQ.
I can’t send a request from one component to another.
Client code
zmq_context = zmq.Context()
socket = zmq_context.socket(zmq.REQ)
socket.connect("tcp://c-3-worker:55555")
socket.send_string("test")
message = socket.recv_string()
c-3-worker is name of server component.
Server code
context = zmq.Context()
socket = context.socket(zmq.REP)
socket.bind("tcp://*:55555")
message = socket.recv_string()
socket.send_string("Pass")
App setting I tried to set internal ports however it was possible only for service (not for worker). Uploaded file was not accepted.
internal_ports:
- 55555
What I do wrong?
Thank you for answer.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Great question, Workers cannot expose any ports, in this case you’d be better off using services for both components. If the worker (c-3-worker) only needs to be accesible internally it can be made an internal service by only specifying internal ports.
Here’s more details on how to create an internal service.
Thanks for asking, I think this is a confusing area and going to bring it up with the team on how we can make this type of scenario more obvious.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.