Skip to content

Commit 1eafb46

Browse files
committed
Update links and tags
1 parent 2ee5789 commit 1eafb46

File tree

13 files changed

+32
-24
lines changed

13 files changed

+32
-24
lines changed

ambassador/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ folder: ambassador
55
permalink: /patterns/ambassador/
66
categories: Structural
77
tags:
8-
- Decoupling
8+
- Decoupling
9+
- Cloud distributed
910
---
1011

1112
## Intent
@@ -22,8 +23,7 @@ In plain words
2223
2324
Microsoft documentation states
2425

25-
> An ambassador service can be thought of as an out-of-process proxy that is co-located with the client.
26-
This pattern can be useful for offloading common client connectivity tasks such as monitoring, logging, routing, security (such as TLS), and resiliency patterns in a language agnostic way. It is often used with legacy applications, or other applications that are difficult to modify, in order to extend their networking capabilities. It can also enable a specialized team to implement those features.
26+
> An ambassador service can be thought of as an out-of-process proxy that is co-located with the client. This pattern can be useful for offloading common client connectivity tasks such as monitoring, logging, routing, security (such as TLS), and resiliency patterns in a language agnostic way. It is often used with legacy applications, or other applications that are difficult to modify, in order to extend their networking capabilities. It can also enable a specialized team to implement those features.
2727
2828
**Programmatic Example**
2929

caching/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ folder: caching
55
permalink: /patterns/caching/
66
categories: Behavioral
77
tags:
8-
- Performance
8+
- Performance
9+
- Cloud distributed
910
---
1011

1112
## Intent
@@ -25,4 +26,4 @@ Use the Caching pattern(s) when
2526

2627
* [Write-through, write-around, write-back: Cache explained](http://www.computerweekly.com/feature/Write-through-write-around-write-back-Cache-explained)
2728
* [Read-Through, Write-Through, Write-Behind, and Refresh-Ahead Caching](https://docs.oracle.com/cd/E15357_01/coh.360/e15723/cache_rtwtwbra.htm#COHDG5177)
28-
* [Cache-Aside](https://msdn.microsoft.com/en-us/library/dn589799.aspx)
29+
* [Cache-Aside pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/cache-aside)

circuit-breaker/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ folder: circuit-breaker
55
permalink: /patterns/circuit-breaker/
66
categories: Behavioral
77
tags:
8-
- Performance
9-
- Decoupling
8+
- Performance
9+
- Decoupling
10+
- Cloud distributed
1011
---
1112

1213
## Intent
@@ -187,4 +188,4 @@ Use the Circuit Breaker pattern when
187188
* [Understanding Circuit Breaker Pattern](https://itnext.io/understand-circuitbreaker-design-pattern-with-simple-practical-example-92a752615b42)
188189
* [Martin Fowler on Circuit Breaker](https://martinfowler.com/bliki/CircuitBreaker.html)
189190
* [Fault tolerance in a high volume, distributed system](https://medium.com/netflix-techblog/fault-tolerance-in-a-high-volume-distributed-system-91ab4faae74a)
190-
* [Microsoft docs](https://docs.microsoft.com/en-us/azure/architecture/patterns/circuit-breaker)
191+
* [Circuit Breaker pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/circuit-breaker)

cqrs/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ folder: cqrs
55
permalink: /patterns/cqrs/
66
categories: Architectural
77
tags:
8-
- Performance
9-
- Cloud distributed
8+
- Performance
9+
- Cloud distributed
1010
---
1111

1212
## Intent
@@ -18,12 +18,13 @@ CQRS Command Query Responsibility Segregation - Separate the query side from the
1818
## Applicability
1919
Use the CQRS pattern when
2020

21-
* you want to scale the queries and commands independently.
22-
* you want to use different data models for queries and commands. Useful when dealing with complex domains.
23-
* you want to use architectures like event sourcing or task based UI.
21+
* You want to scale the queries and commands independently.
22+
* You want to use different data models for queries and commands. Useful when dealing with complex domains.
23+
* You want to use architectures like event sourcing or task based UI.
2424

2525
## Credits
2626

2727
* [Greg Young - CQRS, Task Based UIs, Event Sourcing agh!](http://codebetter.com/gregyoung/2010/02/16/cqrs-task-based-uis-event-sourcing-agh/)
2828
* [Martin Fowler - CQRS](https://martinfowler.com/bliki/CQRS.html)
2929
* [Oliver Wolf - CQRS for Great Good](https://www.youtube.com/watch?v=Ge53swja9Dw)
30+
* [Command and Query Responsibility Segregation (CQRS) pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/cqrs)

event-sourcing/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ folder: event-sourcing
55
permalink: /patterns/event-sourcing/
66
categories: Architectural
77
tags:
8-
- Performance
8+
- Performance
9+
- Cloud distributed
910
---
1011

1112
## Intent
@@ -30,3 +31,4 @@ Use the Event Sourcing pattern when
3031
* [Martin Fowler - Event Sourcing] (https://martinfowler.com/eaaDev/EventSourcing.html)
3132
* [Event Sourcing | Microsoft Docs] (https://docs.microsoft.com/en-us/azure/architecture/patterns/event-sourcing)
3233
* [Reference 3: Introducing Event Sourcing] (https://msdn.microsoft.com/en-us/library/jj591559.aspx)
34+
* [Event Sourcing pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/event-sourcing)

leader-election/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ Do not use this pattern when
3030

3131
## Credits
3232

33-
* [ Cloud Design Patterns: Prescriptive Architecture Guidance for Cloud Applications](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/dn568104(v=pandp.10))
33+
* [Leader Election pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/leader-election)

priority-queue/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ permalink: /patterns/priority-queue/
66
categories: Behavioral
77
tags:
88
- Decoupling
9+
- Cloud distributed
910
---
1011

1112
## Intent
@@ -18,12 +19,11 @@ Applications may delegate specific tasks to other services; for example, to perf
1819
![alt text](./etc/priority-queue.urm.png "Priority Queue pattern class diagram")
1920

2021
## Applicability
21-
Use the Property pattern when
22+
Use the Priority Queue pattern when
2223

2324
* The system must handle multiple tasks that might have different priorities.
2425
* Different users or tenants should be served with different priority..
2526

26-
## Real world examples
27+
## Credits
2728

28-
* [ Priority Queue Pattern](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/dn589794(v=pandp.10))
29-
Microsoft Azure does not provide a queuing mechanism that natively support automatic prioritization of messages through sorting. However, it does provide Azure Service Bus topics and subscriptions, which support a queuing mechanism that provides message filtering, together with a wide range of flexible capabilities that make it ideal for use in almost all priority queue implementations.
29+
* [Priority Queue pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/priority-queue)

queue-load-leveling/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ categories: Concurrency
77
tags:
88
- Decoupling
99
- Performance
10+
- Cloud distributed
1011
---
1112

1213
## Intent
@@ -32,4 +33,4 @@ for both the task and the service.
3233

3334
## Credits
3435

35-
* [Microsoft Cloud Design Patterns: Queue-Based Load Leveling Pattern](https://msdn.microsoft.com/en-us/library/dn589783.aspx)
36+
* [Queue-Based Load Leveling pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/queue-based-load-leveling)

retry/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ permalink: /patterns/retry/
66
categories: Behavioral
77
tags:
88
- Performance
9+
- Cloud distributed
910
---
1011

1112
## Intent

saga/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,4 @@ Use the Saga pattern, if:
4646
## Credits
4747

4848
- [Pattern: Saga](https://microservices.io/patterns/data/saga.html)
49+
- [Saga distributed transactions pattern](https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/saga/saga)

sharding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ This pattern offers the following benefits:
2626

2727
## Credits
2828

29-
* [Cloud Design Patterns: Prescriptive Architecture Guidance for Cloud Applications - Sharding Pattern](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/dn589797(v=pandp.10)?redirectedfrom=MSDN)
29+
* [Sharding pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/sharding)

strangler/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ permalink: /patterns/strangler/
66
categories: Structural
77
tags:
88
- Extensibility
9+
- Cloud distributed
910
---
1011

1112
## Intent
@@ -25,7 +26,5 @@ so usually use it when the system is not so simple.
2526

2627
## Credits
2728

28-
* [Strangler pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/strangler#context-and-problem)
29+
* [Strangler pattern](https://docs.microsoft.com/en-us/azure/architecture/patterns/strangler)
2930
* [Legacy Application Strangulation : Case Studies](https://paulhammant.com/2013/07/14/legacy-application-strangulation-case-studies/)
30-
31-

throttling/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ permalink: /patterns/throttling/
66
categories: Behavioral
77
tags:
88
- Performance
9+
- Cloud distributed
910
---
1011

1112
## Intent

0 commit comments

Comments
 (0)