mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
7ef480e4de
* CLICKHOUSEDOCS-442: Translated docs for DDL query for creating external dictinaries. * CLICKHOUSEDOCS-442: Fixes. * Update docs/ru/query_language/show.md * CLICKHOUSEDOCS-442: Fixed failing build. Co-authored-by: Ivan Blinkov <github@blinkov.ru>
1.7 KiB
1.7 KiB
Настройка внешнего словаря
XML-конфигурация словаря имеет следующую структуру:
<dictionary>
<name>dict_name</name>
<structure>
<!-- Complex key configuration -->
</structure>
<source>
<!-- Source configuration -->
</source>
<layout>
<!-- Memory layout configuration -->
</layout>
<lifetime>
<!-- Lifetime of dictionary in memory -->
</lifetime>
</dictionary>
Соответствующий DDL-запрос имеет следующий вид:
CREATE DICTIONARY dict_name
(
... -- attributes
)
PRIMARY KEY ... -- complex or single key configuration
SOURCE(...) -- Source configuration
LAYOUT(...) -- Memory layout configuration
LIFETIME(...) -- Lifetime of dictionary in memory
name
— Идентификатор, под которым словарь будет доступен для использования. Используйте символы[a-zA-Z0-9_\-]
.- source — Источник словаря.
- layout — Размещение словаря в памяти.
- structure — Структура словаря. Ключ и атрибуты, которые можно получить по ключу.
- lifetime — Периодичность обновления словарей.