DEV Community

Discussion on: From Monolith to Microservices in One Year

Collapse
 
spuhpointer profile image
spuhpointer

Check the Enduro/X middleware, it has some nice microservices concept, basically it is C/C++/Go/Java application server, which allows to start several executables where each executable offers services. Number of copies started for each binary is configurable. All calls to services are load balanced. Binaries are governed by Enduro/X, start, restart operations are managed by server. There are transparent clustering options. These concepts comes from XATMI api standart, which has already 20 years and more :)

Collapse
 
kristijankanalas profile image
Kristijan Kanalaš • Edited

Thanks for advice I will check it out for sure. Currently we are using kubernetes with rancher and are very happy with it for now, but as I said I will check it out :)