Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
6a2e133a62fe4859920f9233303d8c
PowerAdSpy
phosphide
lking
santoshpatil
Rory McEwan
crisdan
kdcarter17
garantieheld
7c31733a76c942f69d6186090a3787
36d56192d3114513857618b22686be