github.com/kardianos/nomad@v0.1.3-0.20151022182107-b13df73ee850/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](http://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/config.html#disable_anonymous_signature)
    20  and [`disable_update_check`](/docs/agent/config.html#disable_update_check).
    21  
    22  ## Q: How does Atlas integration work?
    23  
    24  Nomad makes use of a HashiCorp service called [SCADA](http://scada.hashicorp.com)
    25  (Supervisory Control And Data Acquisition). The SCADA system allows clients to maintain
    26  long-running connections to Atlas. Atlas can in turn provide auto-join facilities for
    27  Nomad agents (supervisory control) and an dashboard showing the state of the system (data acquisition).
    28  
    29  Using the SCADA service is optional. SCADA is only enabled by opt-in.
    30  
    31  ## Q: Is Nomad eventually or strongly consistent?
    32  
    33  Nomad makes use of both a [consensus protocol](/docs/internals/consensus.html) and
    34  a [gossip protocol](/docs/internals/gossip.html). The consensus protocol is strongly
    35  consistent, and is used for all state replication and scheduling. The gossip protocol
    36  is used to manage the addresses of servers for automatic clustering and multi-region
    37  federation. This means all data that managed by Nomad is strongly consistent.
    38