Skip to content

Commit a0a85e8

Browse files
committed
microservices deployment strategies
1 parent 4aadcab commit a0a85e8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ At the beginning, it was the repository with questions from Java interviews. Cur
194194
- [What are possible ways for implementing authentication in microservices?](microservices.md#what-are-possible-ways-for-implementing-authentication-in-microservices)
195195
- [What is Eventual consistency?](microservices.md#what-is-eventual-consistency)
196196
- [How different types of communication can influence on performance?](microservices.md#how-different-types-of-communication-can-influence-on-performance)
197+
- [What are possible strategies and issues in microservices deployment?](microservices.md#what-are-possible-strategies-and-issues-in-microservices-deployment)
197198

198199
## JavaScript
199200
- [What are possible variable scopes?](javascript.md#what-are-possible-variable-scopes)

microservices.md

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- [What are possible ways for implementing authentication in microservices?](#what-are-possible-ways-for-implementing-authentication-in-microservices)
1010
- [What is Eventual consistency?](#what-is-eventual-consistency)
1111
- [How different types of communication can influence on performance?](#how-different-types-of-communication-can-influence-on-performance)
12+
- [What are possible strategies and issues in microservices deployment?](#what-are-possible-strategies-and-issues-in-microservices-deployment)
1213

1314
## What are the possible ways for communication between microservices?
1415
+ ***Synchronous protocol.*** HTTP is a synchronous protocol. The client sends a request and waits for a response from the service. That's independent of the client code execution that could be synchronous (thread is blocked) or asynchronous (thread isn't blocked, and the response will reach a callback eventually). The important point here is that the protocol (HTTP/HTTPS) is synchronous and the client code can only continue its task when it receives the HTTP server response.
@@ -87,4 +88,8 @@ As always, there are several ways to implement an asynchronous communication bet
8788
###### Relative links:
8889
- https://stackify.com/communication-microservices-avoid-common-problems/
8990

91+
## What are possible strategies and issues in microservices deployment?
92+
###### Relative links:
93+
- https://www.infoworld.com/article/3565750/4-deployment-strategies-for-resilient-microservices.html
94+
9095
[Home Page](README.md)

0 commit comments

Comments
 (0)