Cover image showing what are containerized microservices

Containerized microservices are essential to cloud migration and digital transformation plans. Do you have a clear picture of what containerized microservices are and why they’re important?

In this guide, you’ll learn about containers, microservices, and how they work together. First up is a bit of history that explains how the need for containers came to be. 

DreamFactory Hosted Trial Signup

Generate a full-featured,documented, and secure REST API in minutes.

Sign up for our free 14 day hosted trial to learn how.

How the Limitations of Virtual Machines Led to Containers

Before there were containers, there were virtual machines (VMs). Organizations have used VMs since the 1960s to run multiple operating system instances on the same server. VMs let you isolate applications from each other for greater stability without investing in another physical server for each instance.

In those aspects, VMs can save you money and resources. The problem is that a VM still uses a lot of system resources. That’s because VMs make a virtual copy of everything – including the operating system and emulation of hardware it needs to run. That’s fine if you have enough unused server resources to support all the VMs you need.

But if you’re running VMs in the cloud, you’re probably not seeing any cost savings due to the resources you are using. Spinning up additional VMs requires buying more cloud RAM, clock time, and operating system licenses. The high costs of running many virtual machines in the cloud are a top reason many are switching to “container” technology. It’s a lighter-weight, faster, and more cost-effective alternative.

What Are Containers?

Containers – or containerized environments – let you virtualize multiple application runtime environments on the same operating system instance (or, to be more technically precise, on the same kernel).

As the popular choice for running microservices applications, containers achieve operating system virtualization by “containing” only what’s required by an application for autonomous operation. Containers include executables, code, libraries, and files, and package them all as a single unit of execution. From the perspective of the containerized microservice, it has its file system, RAM, CPU, storage, and access to specified system resources. It doesn’t even know it’s in a container!

Unlike a virtual machine (VM), containers don’t need to contain a separate operating system image. This makes containers lightweight and portable and significantly reduces the overhead required to host them. Thanks to this efficiency, containers give you more virtual runtime environments for the money spent. They offer dramatically faster start-up time as well as they don’t have to spin up an operating system when they initiate.

Being able to run multiple containers on a single OS kernel is valuable when constructing a cloud-based microservices architecture. Compared to virtual machines, you can run three times as many containers on a single server (or on a single virtual machine). This choice saves a tremendous amount of resources and server costs.

A Brief History of Containers

The idea of “containerization” isn’t new. The Linux features that make containers possible – cgroups (control groups) and namespaces – were developed and launched by Google in 2007. Originally known as “process containers,” the Linux cgroups feature lets you isolate processes running in the same Linux kernel. It does this by “containerizing” only the components they require for autonomous operation.

After developing its concept, Google began serving up web-based applications. These apps include Gmail and Google Docs, using its open-source, Linux-based container solution “lmctfy” (Let Me Contain That For You). Each time you open the Gmail web app, Google launches it in a new container.

Operating system-less runtime environments go back even further than 2007 to the launch of FreeBSD Jails in 2000. FreeBSD Jails let you run, test, and develop a new application in an isolated sandbox before going live. Similar to containers, jails share an operating system with other services and they have limited access to system resources.

In addition to jails, we should also mention “Zones” container technology from Oracle Solaris, which came out in 2004.

These days, Linux – and its cgroups and namespaces features – are the preferred OS for launching containers. Companies like Docker and Kubernetes have also developed powerful open-source technology to make containers more user-friendly, reliable, and secure.

The Benefits of Containers

Since containers have come into wide use, sysadmins and IT leaders alike have enjoyed the many benefits of containers. Here’s a review of their characteristics and the value they bring to the enterprise: 

Reduced overhead

Without the need for an operating system image, containers use fewer system resources than virtual machines. This translates into more efficient server utilization and no additional OS licensing costs.

Increased portability

Containerized microservices and apps are easy to deploy on the widest variety of platforms and operating systems. Run them on a PC, Mac, laptop, or smartphone, and they will operate consistently.

Faster application development

By dividing a monolithic application into a network of containerized, independently-running microservices, application development is faster and easier to organize. Small teams can work more granularly on different parts of an application to develop the highest quality code without the risk of coding conflicts. This results in faster deployment, patching, and scaling.

Easier adoption of a microservices architecture

Containers have become the de facto choice for adopting a microservices architecture because they’re less expensive and less process heavy compared to other strategies.

Smaller than virtual machines, containers require less storage space. In many cases, they are 10% or less the size of a VM.

Faster startup than virtual machines

Containers start up in seconds – sometimes milliseconds – because they bypass the need for a VM to lumber through the process of spinning up the operating system each time it launches. Faster container initiation times offer an improved app user experience.

What Are Microservices?

A microservices architecture is a strategy for building applications. It divides what would normally be a monolithic application into a suite of independent, loosely-integrated services – called “microservices.” These microservices work together to create a “pluggable” application architecture. The individual services communicate with each other via language and platform-agnostic APIs. The APIs are usually exposed as REST endpoints, WebHooks, or lightweight messaging protocols like RabbitMQ.

Compared to traditional, monolithic applications, microservices applications are more agile and flexible. By keeping the connections between the individual microservices “loose” and “pluggable,” developers achieve an application architecture that facilitates development, upgrades, and maintenance.

Enterprises are also using iPaaS tools like DreamFactory to connect cloud-based microservices to their existing on-premises and cloud-based IT infrastructures. This allows enterprises to quickly integrate new services and features into their existing suite of business systems without extensive coding or delays.   

The Benefits of Microservices

The benefits of microservices include:

  • Reduced interdependencies: With reduced interdependency between the functions and services in the app, microservices offer a pluggable architecture. They let you easily add, upgrade, or remove features and processes within an application or IT infrastructure.
  • Increased stability and system robustness: When each microservice runs autonomously, the failure of one resource is less likely to negatively affect the entire system.
  • Faster time to market: Developers can focus on building a minimum viable product (MVP) while using existing microservices to complete the rest of an application.
  • More organized development process: Application development teams can divide themselves into small groups that focus on building individual microservices. This approach means they don’t need to worry about their code conflicting with other parts of the application.

Comparison to SOA

You may think microservices sound a lot like the Services Oriented Architecture (SOA) concept. Indeed, they are frequently talked about in a way that makes them sound like the same thing. While both microservices and SOA are built around the concept of application services, they take very different approaches.

SOA solved the problem of various monolithic applications not sharing functions or business logic. Services in SOA are meant to find the connections between those monolithic applications and create a flow of data between them.

Microservices break down the monolithic architecture into much smaller pieces, allowing applications to be built out of individual services. 

So, while the purpose of SOA and microservices have a lot of overlap, the difference is that SOA solutions in themselves are quite large and tend to be monolithic. SOA services are often built to solve one particular problem of data exchange between two specific applications and are typically not reusable. The microservice architecture, on the other hand, is designed from the ground up to build apps and new ecosystems.

How Containerized Microservices Work

A great way to introduce how containerized microservices work is to describe the other strategies for running microservices (and explain what’s wrong with them):

  1. Each microservice runs on its own physical server with its own operating system instance: This approach keeps the microservices isolated from each other, but it’s wasteful. Modern servers have the processing power to handle multiple operating system instances, so a separate physical server for each microservice isn’t necessary.
  2. Multiple microservices run on one operating system instance on the same server: This is risky because it doesn’t keep the microservices autonomous from each other. There is an increased chance of failures caused by conflicting application components and library versions. A problem with one microservice can lead to failure cascades that interrupt the operation of others.
  3. Multiple microservices run on different virtual machines (VM) on the same server: This provides a unique execution environment for each microservice to run autonomously. However, a VM replicates the operating system instance, so you’ll pay to license a separate OS for each VM. Also, running an entirely new OS is an unnecessary burden on system resources.
  4. Running microservices in containers with their necessary executables and libraries means that each microservice operates autonomously with reduced interdependency on the others. Moreover, multiple containers can run on a single OS instance, which eliminates licensing costs and reduces system resource burdens. 

Linux Features Make Containerized Microservices Possible

The primary Linux features that make containerized microservices possible are namespaces and cgroups features created by Google in 2007. Let’s take a look at these features and how they work in detail:

Namespaces: The Linux namespaces feature allows you to create an isolated environment. It packages all the components required for a microservice or application to run autonomously. You can run multiple namespace “containers” on the same Linux kernel or virtual machine.

From the container’s point of view, it does not know that it’s a “machine within a machine.” Microservices cannot access the system components that belong to the larger system (like process trees, filesystem mounts, user IDs, etc.). It also can’t see the other namespaces, containers, and applications operating on the system.

By isolating the execution environment for a microservice and its executables and libraries, you contain the microservice.  No need to quarantine the application code within a separate virtual machine. This reduces server workload and frees up processing power.

Cgroups: The Linux cgroups features complete the container “puzzle” by offering a mechanism to limit and control the system resources given to each containerized microservice.  cgroups lets you assign levels of processing power to different containers according to their need. 

You can also aggregate sets of tasks into hierarchical groups with clearly-defined behavior. This creates a more strategic workload placement. The result is a runtime environment that acts like a virtual machine without the processing burdens or costs of a virtual machine.  

Tools for Containerized Microservices

The most well-known tools for building and managing containerized microservices are Docker and Kubernetes. They automate the process of using Linux cgroups and namespaces to build and manage containers.

Docker focuses on creating containers, while Kubernetes focuses on container orchestration. Commonly abbreviated as CO, container orchestration is the automatic process of managing the work of individual containers for applications based on microservices within multiple clusters.

Here’s a detailed comparison of these two popular tools for containerized microservices. 

Docker

Docker was released in 2013 as the first large-scale, open-source containerization solution. Built to make Linux container features such as cgroups and namespaces more accessible and easier to use, the Docker platform has since become synonymous with containers and containerized microservices. 

Soon after Docker’s release, forward-thinking enterprises began using the platform to build containerized runtime environments. This helped support their cloud migration, digital transformation, and microservices efforts. Docker-built containers can immediately reduce cloud-compute overhead expenses for an enterprise by replacing VMs with containers.

Docker’s most popular benefits include:

  • Built-in security: Containerizing an app with Docker automatically reduces the chances of an app outside the container running remote code. This offers built-in application security without needing to code any audits.
  • Scalability: After running a web-based microservice in a Docker container, the application can run anywhere. Users can access the microservice via their smartphones, tablets, laptops, or PCs. This significantly reduces your deployment and scalability challenges.
  • Reliable deployment infrastructure: Docker’s hard-coded deployment infrastructure with version control ensures that everyone on your development team stays on the same page.
  • Options: Docker’s premium Enterprise edition offers powerful extensions, a choice of tools and languages, and globally consistent Kubernetes environments. The enterprise edition also includes commercial phone support.

Kubernetes

Kubernetes is another name that has become synonymous with containerization. It is a container orchestration tool that helps developers run and support containers in production. The open-source container workload platform lets you manage a group of containerized microservices as a “cluster.” Within a Kubernetes cluster, you can distribute available CPU and memory resources according to the requirements of each containerized service. You can also move containers to different virtual hosts according to their load.

Working together with Docker, Kubernetes wraps containers in “pods.” Then it automates container deployment and loads balancing with the following features:

  • Automatic bin-packing: Kubernetes packages your microservices or applications into containers and automatically assigns available resources to the containers based on their requirements.
  • Service discovery and load balancing: Kubernetes automatically configures IPs and ports, and manages traffic for your containers.
  • Storage orchestration: Kubernetes allows you to mount whatever kind of storage system you want to use, whether it’s cloud-based or on-premises.
  • Automatic “healing” to manage container crashes: Kubernetes automatically spins up and deploys an identical container on a different node to replace containers that crash or fail.
  • Autoscaling: Kubernetes includes a variety of features that automatically deploy new containers. They can expand the resources of container clusters and manage the resources assigned to containers within clusters. These automatically trigger according to preset thresholds to ensure overall system stability.

Kubernetes is a highly portable solution. They are now supported by the biggest cloud servers. These include Google Cloud Engine (GCE), Amazon Web Services (AWS), and Microsoft Azure Container Service. Private cloud providers – like OpenStack, Microsoft, Amazon, and Google – have also incorporated Kubernetes container services.

Two popular alternatives to Kubernetes include:

  • Docker Swarm: Swarm is a container orchestration tool native to the Docker ecosystem. Swarm is a simpler solution for teams that don’t require the advanced features of Kubernetes. Because of its simplicity, Swarm facilitates faster container deployment in response to new demands.
  • Apache Mesos: Mesos is an open-source container orchestration tool similar to Kubernetes. Unlike Kubernetes, Mesos orchestrates other types of applications in addition to containerized ones. That’s why Mesos calls its commercial product DC/OS (Data Center Operational System). As Dorothy Norris on Stratoscale points out, “Mesos understands that …we should use the best tools for each particular situation.”

Using Containerized Microservices: Today and Tomorrow

Containerized microservices have already enabled many of the apps and features people use daily. The abstraction of applications, APIs, and other development roles from the hardware layer has enabled tremendous growth for the container concept. Of course, technology never sits still and new trends emerge all the time. Here’s a look at some of the most exciting concepts that build on the ideas of containers and microservices: 

DevOps

DevOps is the merger of traditional development and IT operations teams. DevOps practices place the focus on collaboration across the entire IT organization. Key components of a DevOps organization are automated and standardized deployments, freeing staff from repetitive tasks. The speed of standard deployments that containers offer makes DevOps and containerized microservices a perfect match.

AIOps

Artificial Intelligence Operations, or AIOps, is the practice of bringing AI into the world of IT. Identifying system failures or security breaches has traditionally been a time-consuming process. The use of cloud and distributed containerization enables AI to solve these problems. AIOps can help in the identification and prevention of IT issues, along with automating security monitoring and intrusion detection.

Low-Code APIs

Low-code is a software development concept based on the idea of creating applications using a simple drag-and-drop UI. Emerging right along with this trend are low-code APIs, which are application frameworks that allow developers to build full-featured apps visually and with a minimal amount of writing code. Industry pundits and analysts are already pointing toward low-code APIs as the next evolution of microservices.

DreamFactory Hosted Trial Signup

Generate a full-featured,documented, and secure REST API in minutes.

Sign up for our free 14 day hosted trial to learn how.

Final Thoughts on Containerized Microservices

After reading this guide, you should know what containerized microservices are and why containers are a cost-effective alternative to virtual machines. You should also be familiar with the most popular tools for launching and orchestrating containerized microservices.

After launching your containerized microservices,  you can use DreamFactory iPaaS (Integration Platform as a Service) to establish data connections. This allows them to work together as an integrated whole. DreamFactory automatically generates REST APIs for any database, so you can securely establish data connections between your apps and microservices in minutes. Sign up today for a  free 14-day trial to see for yourself!