github.com/smintz/nomad@v0.8.3/website/source/docs/faq.html.md (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Frequently Asked Questions"
     4  sidebar_current: "docs-faq"
     5  description: |-
     6      Frequently asked questions and answers for Nomad
     7  ---
     8  
     9  # Frequently Asked Questions
    10  
    11  ## Q: What is Checkpoint? / Does Nomad call home?
    12  
    13  Nomad makes use of a HashiCorp service called [Checkpoint](https://checkpoint.hashicorp.com)
    14  which is used to check for updates and critical security bulletins.
    15  Only anonymous information, which cannot be used to identify the user or host, is
    16  sent to Checkpoint. An anonymous ID is sent which helps de-duplicate warning messages.
    17  This anonymous ID can can be disabled. Using the Checkpoint service is optional and can be disabled.
    18  
    19  See [`disable_anonymous_signature`](/docs/agent/configuration/index.html#disable_anonymous_signature)
    20  and [`disable_update_check`](/docs/agent/configuration/index.html#disable_update_check).
    21  
    22  ## Q: Is Nomad eventually or strongly consistent?
    23  
    24  Nomad makes use of both a [consensus protocol](/docs/internals/consensus.html) and
    25  a [gossip protocol](/docs/internals/gossip.html). The consensus protocol is strongly
    26  consistent, and is used for all state replication and scheduling. The gossip protocol
    27  is used to manage the addresses of servers for automatic clustering and multi-region
    28  federation. This means all data that is managed by Nomad is strongly consistent.
    29  
    30  ## Q: Is Nomad's `datacenter` parameter the same as Consul's?
    31  
    32  No. For those familiar with Consul, [Consul's notion of a
    33  datacenter][consul_dc] is more equivalent to a [Nomad region][nomad_region].
    34  Nomad supports grouping nodes into multiple datacenters, which should reflect
    35  nodes being colocated, while being managed by a single set of Nomad servers.
    36  
    37  Consul on the other hand does not have this two-tier approach to servers and
    38  agents and instead [relies on federation to create larger logical
    39  clusters][consul_fed].
    40  
    41  [consul_dc]: https://www.consul.io/docs/agent/options.html#_datacenter
    42  [consul_fed]: https://www.consul.io/docs/guides/datacenters.html
    43  [nomad_region]: /docs/agent/configuration/index.html#datacenter