Sidecar Design Pattern In Microservices

What is Sidecar Pattern?

 
The sidecar pattern is used to promote separation of concerns in micorservices architecture. This pattern allows us to offload processing of some kind to a separate module that gets deployed along with the main service component. The sidecar pattern is sometimes referred as decomposition pattern.
 

Why it useful in Microservices architecture?

 
Generally, in a microservices architecture, things like logging, monitoring, messaging, tracing, encrypting and decrypting, configuration, and exceptions handling are common modules which we need to implement into each service and due to time constraints we may repeating the same code again and again across services. This is considered to be a bad practice and the overall complexity of application will increase.
 
By using sidecar pattern, we can eliminate this kind of problem by removing redundant code across services and create separate components or services and make it generic enough so that it can be reusable.
 
 

The Solution Approach

 
The details of design are actually very straightforward. The key here is that you need to write the module specific enough for your immediate needs, while being generic enough for other parts of your system.
 
It is not necessary that a sidecar module/service is part of your main application, but is connected to it. It goes wherever the parent application goes and it can use a similar runtime as like mocroservies.
 
Once we deploy it, the functionality should just appear and it works like a kind of plug and plays with main service application. If that piece of functionality needs somewhere else, we simply add reference of the sidecar with the service and it will inherit the  required functionality.
 
With the sidecar pattern, we can deploy the sidecar as a module associated with every applicable service.
 
 
Let’s consider, we have three microservices. We added our first sidecar called logging to each service. We are uploading it as part of the parent service when we do the deployment. So all of these run within a single process but they are very distinct modules. And we are getting the benefits of the sidecar everywhere while not writing code in each service.
 
Similarly, we're added another sidecar called configuration and are applying it to each service. But messaging sidecar applied for two of our services. That is the power of sidecar.
 
The benefit of this approach is that you pick sidecar and choose where you want to apply the functionality and simply apply it. As long as your sidecar is written generically enough, you can apply it anywhere and that service will automatically inherit that functionality through a single process. As a result, it’s reducing complexity and redundancy in code by abstracting the common infrastructure-related functionalities to a different layer.
 

Sample Implementation of Sidecar Pattern in ASP.NET Core based Microservices

 
I created 3 microservices project called Students, Courses and Payments in ASP.NET Core. I also created a class library as a common project and added the  required NuGet packages. Here, we will be reading application configuration values from Azure Key Vault into each services, just to demonstrate how sidecar patterns works.
 
 
The below implementation is for extension method of IWebHostBuilder in SidecarExtensions.cs. This is a generic method for configuration which will be used in each service.
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace Common {
    public static class SidecarExtensions {
        public static IWebHostBuilder UseKVConfiguration(this IWebHostBuilder webHostBuilder) {
            webHostBuilder.ConfigureServices(services => {
                IConfigurationRoot configuration = LoadKeyVaultSettings();
                services.AddSingleton < IConfiguration > (configuration);
            });
            return webHostBuilder;
        }
        public static IConfigurationRoot LoadKeyVaultSettings() {
            var configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json", optional: true).AddEnvironmentVariables().Build();
            var sc = new ServiceConfiguration();
            configuration.Bind(sc);
            var configBuilder = new ConfigurationBuilder();
            if (sc.KeyVault != null && !string.IsNullOrEmpty(sc.KeyVault.Uri)) {
                if (!string.IsNullOrEmpty(sc.KeyVault.ClientId) && !string.IsNullOrEmpty(sc.KeyVault.Secret)) {
                    configBuilder.AddAzureKeyVault(sc.KeyVault.Uri, sc.KeyVault.ClientId, sc.KeyVault.Secret);
                }
            }
            return configBuilder.AddJsonFile("appsettings.json", optional: true).AddEnvironmentVariables().Build();
        }
        public class ServiceConfiguration {
            public KeyVaultInfo KeyVault {
                get;
                set;
            }
        }
        public class KeyVaultInfo {
            public string Uri {
                get;
                set;
            }
            public string ClientId {
                get;
                set;
            }
            public string Secret {
                get;
                set;
            }
        }
    }
}

Added UseKVConfiguration in ConfigureHostBuilder on Program.cs into one of the services along with common project reference.

 
I modified appsettings.json and added Azure Key Vault configuration values into the service.
 
 
Now we can able to access the configuration value wherever need into the service through configuration DI as like below.
 
 
Similarly, we can add this configuration to other services.
 
Excellent! Now we have a clear understanding of the sidecar pattern with sample examples of implementation. It will help us to build a decomposition system between the main application and the underlying platform.
 
Hope you find this information useful!


Similar Articles