github.com/hhrutter/nomad@v0.6.0-rc2.0.20170723054333-80c4b03f0705/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.