Microservices Part 1 – Basic Concepts

• admin@sciloo.com

A microservice is an architectural style with small services which are

  1. isolated,
  2. loosely-coupled
  3. works on a single concern.
  4. Own their own data
  5. Lightweight communication usually with HTTP Restful API
  6. Built around business capabilities/domain, example below

DDD (Domain driven design) is the way to go while designig microservices.

</figure>

  1. Independently deployable by automated means
  2. Right tech for right problem – each microservice can be implemented on its own tech

Advantages

  1. Language independent as conform to HTTP Restful
  2. Individual team for each microservice
  3. Scalable
  4. Fault tolerance
  5. Container friendly (docker, kubernete)
  6. Fast iteration for adding code
  7. small development teams,
  8. shorter development cycles
  9. flexibility in language selection
  10. enhanced service scalability

Disadvantages

  1. Complex interactions – System + Operational
  2. Overhead of communication across databases and servers
  3. Resource and nw overhead
  4. Complex authentication and authorization scheme in the Microservices

Design Considerations

  • Cross-cutting: microservices need not deal with details regarding problems outside their specific scope.
  • Data sharing is hard. Microservices tend to favor per-service or per-group databases that can be updated directly.
  • Availability: Microservices, by virtue of being isolated and independent, need to be monitored to detect failures.
  • Evolution: Microservices tend to evolve fast. Old versions are usually available as long as there are clients who need to consume data from them. Newer versions are exposed in an application-specific way. For instance, with an HTTP/REST API, the version of the microservice may be part of a custom header, or be embedded in the returned data. Account for this.
  • Automated deployment: The whole reason that microservices are so convenient nowadays is that it is so easy to deploy a new service from a completely clean environment.
  • Interdependencies: Keep them to a minimum.
  • Transport and data format: Microservices are fit for any transport and data format; however, they are usually exposed publicly through a RESTful API over HTTP. Any data format fit for your information works. HTTP + JSON is very popular these days, but there is nothing stopping you from using protocol-buffers over AMQP, for instance.

microservices are developed almost in isolation. Cross-cutting concerns are dealt with by upper layers in the software stack

Sciloo Learning Technologies

  • Sciloo Learning Technologies

Sciloo Learning Technologies