> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Page with deployment examples that are based on the advice provided to ClickHouse users by the ClickHouse Support and Services organization

The deployment examples in this section are based on the advice provided to ClickHouse users by
the ClickHouse Support and Services organization. These are working examples, and
we recommend that you try them and then adjust them to suit your needs. You may find
an example here that fits your requirements exactly.

We offer 'recipes' of a number of different topologies in the [example repo](https://github.com/ClickHouse/examples/tree/main/docker-compose-recipes/recipes)
and recommend taking a look at them if the examples in this section don't fit your
needs exactly.

<h2 id="terminology">
  Terminology
</h2>

<h3 id="replica">
  Replica
</h3>

A copy of data.  ClickHouse always has at least one copy of your data, and so the minimum number of **replicas** is one.  This is an important detail, you may not be used to counting the original copy of your data as a replica, but that is the term used in ClickHouse code and documentation.  Adding a second replica of your data provides fault tolerance.

<h3 id="shard">
  Shard
</h3>

A subset of data.  ClickHouse always has at least one shard for your data, so if you don't split the data across multiple servers, your data will be stored in one shard.  Sharding data across multiple servers can be used to divide the load if you exceed the capacity of a single server. The destination server is determined by the **sharding key**, and is defined when you create the distributed table. The sharding key can be random or as an output of a [hash function](/docs/reference/functions/regular-functions/hash-functions).  The deployment examples involving sharding will use `rand()` as the sharding key, and will provide further information on when and how to choose a different sharding key.

<h3 id="distributed-coordination">
  Distributed coordination
</h3>

ClickHouse Keeper provides the coordination system for data replication and distributed DDL queries execution. ClickHouse Keeper is compatible with Apache ZooKeeper.

<div class="vimeo-container">
  <Frame>
    <iframe
      src="//www.youtube.com/embed/vBjCJtw_Ei0"
      frameborder="0"
      allow="autoplay;
fullscreen;
picture-in-picture"
      allowfullscreen
    />
  </Frame>
</div>
