kubernetes logo

8 Container Design Patterns that you should know

With the increasing adoption of containers and microservices in the enterprises, there is a need now to focus on structuring the containers and other distributed building blocks so that we can solve some of the common design challenges.In this post, we take look at some of the key design patterns that could be used in Docker, Kubernetes, and other container platforms.The foundation work was actually done by Brendan Burns and David Oppenheimer in their container design patterns paper, this post summarizes the key design patterns.

#1.Side Car Pattern

In this pattern, the sidecar is attached to a parent application and provides supporting features for the application. The sidecar also shares the same life cycle as the parent application, is created, and retired alongside the parent.

Use Case: Can be used for Runtime debugging, observability, reliability, logging, and security

Side Car Pattern
Image – Side Car Pattern

#2.Ambassador pattern

Ambassador containers proxy communication to and from a main container. For example, an application that is speaking the Memcache protocol with a twemproxy ambassador. The application believes that it is simply talking to a single Memcache on the localhost, but actually twemproxy is sharding the requests across a distributed installation of multiple Memcache nodes elsewhere in the cluster.

Use Case: Situations where you have to offload / Proxy requests to other containers 

Ambassador pattern
Image – Ambassador pattern

#3.Adapter Pattern

In contrast to the ambassador pattern, which presents an application with a simplified view of the outside world, adapters present the outside world with a simplified, homogenized view of an application. They do this by standardizing output and interfaces across multiple containers.

Use Case: Cases where you have to standardize output and interfaces across multiple containers

Adapter Pattern
Image – Adapter Pattern

#4.Work Queue Pattern

This pattern allows to handling of arbitrary processing code packaged as a container, and arbitrary data, and build a complete work queue system.

Use Case: Situations that warrant work queue based system

Work queue pattern
Image – Work queue pattern

#5.Self Awareness Pattern

This pattern describes situations where an application needs to introspect and get metadata about itself and the environment where it is running.

Use case: Cases where you need to retrieve application metadata/environment variables

Self Awareness Pattern
Image – Self Awareness Pattern

#6. Scatter/gather Pattern

Initial request would be sent to the main container, this container then fans the request out to a large number of servers to perform computations in parallel. Each container returns partial data, and the main container gathers this data into a single response to the original request.

Use case: Fan out the request out to a large number of servers to perform computations in parallel, Common in search engines.

Scatter/gather pattern
Image – Scatter/gather pattern

#7.Custom Controller Pattern

Controller watches for changes to objects and act on those changes to drive the cluster to a desired state. You can also implement custom logic and extend the functionality of the platform.

Use Case: Situations where you have to watch for changes to objects and act on it

#8.Initializer Pattern

Init containers allow separation of initialization related tasks from the main application logic.

Use Case: Span out initialization tasks to separate containers

Initializer Pattern
Image – Initializer Pattern

By now you would have got a good idea on the basics of container design patterns. If I have missed out on any of the patterns or if you have come across anything, let me know in the comments section.

References :

Design patterns for container-based distributed systems by Brendan Burns, David Oppenheimer

Like this post? Don’t forget to share it!

Additional Resources :

Summary
8 Container Design Patterns
Article Name
8 Container Design Patterns
Description
With the increasing adoption of containers and microservices in the enterprises, now there is need to focus on structuring the containers and other distributed building blocks.In this post,we take look at some of the key design patterns that could be used in Docker,Kubernetes and other container platforms.
Author
Publisher Name
Upnxtblog
Publisher Logo

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Previous post Ultimate Guide to Data Science Courses (Over 65+ courses covered)
school Next post TOP 25 Udemy Machine Learning courses (Level – Beginner)