Microservices
basho.com
Microservices
1–10 of 152 posts
Re: Microservices
#2Re: Microservices
#3Re: Microservices
#4Licensing costs can go drastically up as most modern licensing is node/core based. As can deployment procedures get more complicated.
I would love to understand how this article believes that the modules in a monolithic system can be scaled horizontally if they are actually a single code base in a single system. Either the system isn't monolithic, or it they have never really done it. Sticking a load balancer in front of a micro service and scaling based on measured load requires tools and technologies, but is very scalable. It also allows you to do rolling deployments of draining/rotate out/update/rotate in that allows you to get near no planned downtime.
Distributed transactions are the devil, but you don't need to do them in a microservice design. It requires design work on the front end to clarify what the system of record is, but if each service has a domain it controls, and all other services treat it as the truth, it's rather simple. I say this having researched doing payment transactions across geographically diverse colo's and we treated that as a sharding/replication/routing issue very successfully.
Ninja edit: Starting with a microservice design is most likely overkill for a lot of systems, but either way, clear interface/boundaries in your system are good and healthy
Re: Microservices
#5If done poorly it is like trading one problem with another problem.
Re: Microservices
#6Re: Microservices
#7Re: Microservices
#8But as always, this is an artform, writing and designing, not laying down pavement.
There's no "right" way, and any blanket statement about anything is false.
Don't use microservices where they don't make sense, make educated decisions, and choose the best option for your situation.
It made sense in our situation, because all our services have very very very specific rules and boundaries and there's no overlap anywhere.
Re: Microservices
#9The title should be "I've never implemented microservices properly, so you should avoid them."