minor changes

This commit is contained in:
Evgeniia Sudarikova 2021-05-13 20:26:03 +03:00
parent 0b66aa0e85
commit 00d963d40f
2 changed files with 3 additions and 3 deletions

View File

@ -97,8 +97,8 @@ The dictionary is completely stored in memory in the form of a hash table. The d
If `preallocate` is `true` (default is `false`) the hash table will be preallocated (this will make the dictionary load faster). But note that you should use it only if:
- the source support an approximate number of elements (for now it is supported only by the `ClickHouse` source)
- there are no duplicates in the data (otherwise it may increase memory usage for the hashtable)
- The source support an approximate number of elements (for now it is supported only by the `ClickHouse` source).
- There are no duplicates in the data (otherwise it may increase memory usage for the hashtable).
All types of sources are supported. When updating, data (from a file or from a table) is read in its entirety.

View File

@ -97,7 +97,7 @@ sudo clickhouse-client-$LATEST_VERSION/install/doinst.sh
После скачивания, можно воспользоваться `clickhouse client` для подключения к серверу, или `clickhouse local` для обработки локальных данных.
Чтобы установить ClickHouse в рамках всей системы (с необходимыми конфигурационными файлами, настройками пользователей и т.д.), выполните `sudo ./clickhouse install`. Затем выполните команды `clickhouse start` (чтобы запустить сервер Clickhouse) и `clickhouse-client` (чтобы подключиться к нему).
Чтобы установить ClickHouse в рамках всей системы (с необходимыми конфигурационными файлами, настройками пользователей и т.д.), выполните `sudo ./clickhouse install`. Затем выполните команды `clickhouse start` (чтобы запустить сервер) и `clickhouse-client` (чтобы подключиться к нему).
Данные сборки не рекомендуются для использования в продакшене, так как они недостаточно тщательно протестированны. Также, в них присутствуют не все возможности ClickHouse.