github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/intro/vs/ecs.mdx (about)

     1  ---
     2  layout: intro
     3  page_title: Nomad vs. AWS ECS
     4  sidebar_title: AWS ECS
     5  description: Comparison between Nomad and AWS ECS
     6  ---
     7  
     8  # Nomad vs. AWS ECS
     9  
    10  Amazon Web Services provides the Elastic Container Service (ECS), which is
    11  a cluster manager. The ECS service is only available within AWS and
    12  can only be used for Docker workloads. Amazon provides customers with
    13  the agent that is installed on EC2 instances, but does not provide
    14  the servers which are a hosted service of AWS.
    15  
    16  There are a number of fundamental differences between Nomad and ECS.
    17  Nomad is completely open source, including both the client and server
    18  components. By contrast, only the agent code for ECS is open and
    19  the servers are closed sourced and managed by Amazon.
    20  
    21  As a side effect of the ECS servers being managed by AWS, it is not possible
    22  to use ECS outside of AWS. Nomad is agnostic to the environment in which it is run,
    23  supporting public and private clouds, as well as bare metal datacenters.
    24  Clusters in Nomad can span multiple datacenters and regions, meaning
    25  a single cluster could be managing machines on AWS, Azure, and GCE simultaneously.
    26  
    27  The ECS service is specifically focused on containers and the Docker
    28  engine, while Nomad is more general purpose. Nomad supports virtualized,
    29  containerized, and standalone applications, including Docker. Nomad is
    30  designed with extensible drivers and support will be extended to all
    31  common drivers.