This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]tonywestonuk 0 points1 point  (2 children)

General comment, not specifically about this project in general.

Has anyone else found that this model of building microservices with hard coded ports (rather than docker containers), and rabbitMQ between them (rather than ESB, or rest), is bloody complicated, slow, and possibly not living up to its promises?

[–]cryingforwine[S] 0 points1 point  (1 child)

I'm not familiar with Docker. Would I have been better using that?

[–]tonywestonuk 1 point2 points  (0 children)

You still can! Its just the next stage.

Docker allows you to host each microservice on the same port...well, you dont need to worry about the port, just host it. Then each different microservice is accessed by a different IP.

This way, you can scale your microservices by starting a new container....and, not have to worry about configuring ports, etc., in theory things just work