L10 - Microservices in System Integration Flashcards

1
Q

What is a microservices architecture?

A

A type of application architecture where an application is developed as a collection of small, autonomous services that communicate over well-defined APIs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does Google define microservices architecture?

A

“A microservices architecture is a type of application architecture where the application is developed as a collection of services. It provides the framework to develop, deploy, and maintain microservices architecture diagrams and services independently.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does Microsoft define microservices architecture?

A

“A microservices architecture consists of a collection of small, autonomous services. Each service is self-contained and should implement a single business capability within a bounded context.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does Amazon define microservices?

A

“Microservices are an architectural and organizational approach to software development where software is composed of small independent services that communicate over well-defined APIs.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does NIST define microservices?

A

“A set of containers that work together to compose an application.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do Fowler & Lewis define microservices?

A

“An approach to developing a single application as a suite of small services, each running in its own process and communicating with lightweight mechanisms, often an HTTP resource API.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the characteristics of microservices according to Fowler & Lewis?

A

Componentization via services
Organized around business capabilities
Products not projects
Smart endpoints and dumb pipes
Decentralized governance
Decentralized data management
Infrastructure automation
Design for failure
Evolutionary design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are monolithic applications?

A

Applications where everything is deployed as a single executable binary, consisting of several modules in one software application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the advantages of monolithic applications?

A

Suitable for small applications

Easier when a single team writes the code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the disadvantages of monolithic applications?

A

Difficult to maintain and scale

Tight coupling between modules

Long change cycle for new features

Risky and difficult continuous deployment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is Service-Oriented Architecture (SOA)?

A

A distributed architecture where software systems are developed using loosely coupled modules or services that interact via network protocols.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the advantages of SOA?

A

Addresses complexity in big monolithic systems by using modular, loosely coupled services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the disadvantages of SOA?

A

Flaws in middleware and communication protocols

Uses heavy protocols like SOAP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the advantages of microservices?

A

Scalability

Maintainability

Adaptability

Testability

Lightweight mechanisms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the disadvantages of microservices?

A

Increased complexity

Difficult testing across multiple services

Network performance overheads

Complex deployment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is componentization via services in microservices?

A

Each module is developed as an independent service with its own implementation and library.

17
Q

What does “organized around business capabilities” mean in microservices?

A

Each service represents a business function, such as inventory management or order handling.

18
Q

What does “products not projects” mean in microservices?

A

Each microservice team is responsible for the entire software lifecycle, from design to support.

19
Q

What are “smart endpoints and dumb pipes” in microservices?

A

Services contain all the logic, avoiding heavy middleware like ESB or MOM.

20
Q

What is decentralized governance in microservices?

A

Services are developed independently without centralized control over technologies or tools.

21
Q

What is infrastructure automation in microservices?

A

Automating tasks such as testing and deployment using DevOps tools.

22
Q

What does “design for failure” mean in microservices?

A

Services should handle failures gracefully using patterns like circuit breakers and retries

23
Q

What is evolutionary design in microservices?

A

The ability to add, remove, and modify services independently.

24
Q

What are the benefits of adopting microservices?

A

Technology independence

Ease of testing and deployment

Improved scalability and availability

Better maintainability and reusability

25
Q

What technologies support microservices?

A

SOA
Agile
Cloud computing
DevOps
NoSQL

26
Q

What are the differences between SOA and microservices in terms of focus?

A

SOA: Focus on reusability

Microservices: Focus on maintainability

27
Q

What middleware is used in SOA vs. microservices?

A

SOA: Uses ESB/MOM/Adapters

Microservices: Uses event-driven or synchronous communication

28
Q

What are the common protocols used in SOA vs. microservices?

A

SOA: SOAP

Microservices: RPCs, HTTP/REST

30
Q

What is the scope of SOA vs. microservices?

A

SOA: Enterprise-wide

Microservices: Application-level

31
Q

What are the principles of SOA?

A

Contracts

Discoverability

Loose coupling

Statelessness

Composability

32
Q

What is orchestration in microservices?

A

A centralized control mechanism that coordinates multiple services.

33
Q

What is choreography in microservices?

A

A decentralized approach where each service independently reacts to events.

34
Q

Why is choreography preferred over orchestration in microservices?

A

It prevents tight coupling by removing the need for a central controller.

35
Q

What technologies are used in microservices integration?

A

HTTP and REST APIs

RPC-based frameworks

Docker (containerization)

Kubernetes (container orchestration)

36
Q

What is the difference between synchronous and asynchronous communication in microservices?

A

Synchronous: Immediate response is required

Asynchronous: Service can continue processing other tasks while waiting for a response