You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

**DRAFT**

Introduction

Both Docker Compose and Open Horizon are tools for managing the deployment and lifecycle management of containerized applications, but there are significant differences.  This article will attempt to explain service software lifecycle management, and then compare and contrast the approaches used by these two tools.  This article assumes familiarity with containerized software, Dockerfiles, Docker Compose files, and Open Horizon components.

Service software lifecycle management

For the purposes of this article, we will refer to the lifecycle as being comprised of the following stages: Deployment (Publishing), Initialization (Running), Operation (Updating, Monitoring, Restarting), and Removal (Retirement).  Deployment is about specifying a container registry service (e.g. DockerHub, quay.io, IBM Cloud Container Registry) and the credentials that may be required for authorization, pulling the image, and storing it at the destination.  Initialization covers optionally using any secrets, accessing well-known environment variables, and passing any configuration to a container engine for execution, then end result of which will be a running image.  Operation involves inspecting details about a running image, updating the image when and if needed, and restarting an image if the host restarts or the image crashes or otherwise terminates operation unexpectedly.  Removal includes stopping a running image and optionally removing any resources it may be using from the destination.

Docker Compose and Open Horizon may then be compared using the above lifecycle stages in a table:

StagesDocker ComposeOpen Horizon
Deployment

manually run "docker-compose pull" on destination

not typically needed since this is included in intialization

automatically triggered on destination by Agent when an agreement is formed
Initializationmanually run "docker-compose up" on destinationautomatically run on destination by Agent after deployment completes successfully
Operation

manually run "docker-compose ps" on destination

does not otherwise monitor or alert to runtime failures

docker-compose up to manually retart if application is updated

Agent automatically monitors running services and implements restarts and rollbacks as needed

If a service is updated, agreement is terminated and re-negotiated

Removalmanually run "docker-compose down" on destinationIf an agreement is terminated, Agent will automatically halt and remove running services

In summary, Docker Compose is a tool for an operator to manually administer the service software lifecycle directly on destination hosts.  Open Horizon is a tool for an operator to remotely specify the conditions under which the service software lifecycle should be automatically administered autonomously on each host by the Open Horizon Agent.

Operating environment

Docker Compose is designed for Linux Hosts and requires the Docker engine runtime.  It is not compatible with other container runtimes.  It can operate on macOS and Windows hosts using Docker Desktop.  It cannot be used to deploy containers to a Kubernetes cluster.  And it will only deploy and run Docker container images.

Open Horizon is designed for both Kubernetes clusters and Linux hosts, and is compatible with both Docker and podman runtimes.  It can deploy to Linux and macOS hosts using the Device Agent and to Kubernetes clusters using the Cluster Agent.  It can both deploy container images to, and bi-directionally synchronize machine learning assets with, the destination device or cluster.

Dependency management at load-time versus at run-time

Concepts to understand:

  1. Top-level service vs dependency (or required service): A top-level service is the functionality that you intend to deploy.  A dependency or required service is one that is only used because your intended top-level service needs it.
  2. Singleton vs Multiple (sharable property in Service Definition file): "The value of this field determines how many instances of the service’s containers will be running on a node when the service is deployed more than once to the same node."  You might use the `singleton` value if your environment is resource-constrained and you cannot run more than one instance of a service.  Another reason would be if a service is stateful (persists information between one invocation and the next).  If the service is stateless and you have the available resources to run more than one copy, you should choose `multiple` instead of `singleton`.
  3. Service Definition and Deployment Policies vs Node (Deployment) Pattern: Use the former when you have one or more top-level services that have independent lifecycles.  This is the recommended approach.  Use the latter only when you have a single application composed of multiple top-level services that have interdependent lifecycles.


  • No labels