From 77fd7b5f57ae7cf747e37742a261adfaddf40db6 Mon Sep 17 00:00:00 2001 From: Aliaksandr Pliutau Date: Wed, 29 Jun 2016 12:24:12 +0700 Subject: [PATCH] Fixed ordered list in Getting Started --- doc/tutorial.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/doc/tutorial.html b/doc/tutorial.html index 51be4fdf7c5..02bdea72d62 100644 --- a/doc/tutorial.html +++ b/doc/tutorial.html @@ -551,10 +551,13 @@ LIMIT 20

ClickHouse deployment to cluster

ClickHouse cluster is a homogenous cluster. Steps to set up: -1. Install ClickHouse server on all machines of the cluster -2. Set up cluster configs in configuration file -3. Create local tables on each instance -4. Create a Distributed table

+
    +
  1. Install ClickHouse server on all machines of the cluster
  2. +
  3. Set up cluster configs in configuration file
  4. +
  5. Create local tables on each instance
  6. +
  7. Create a Distributed table
  8. +
+

Distributed-table is actually a kind of "view" to local tables of ClickHouse cluster. SELECT query from a distributed table will be executed using resources of all cluster's shards. You may specify configs for multiple clusters and create multiple Distributed-tables providing views to different clusters.