ClickHouse/docs/ru/query_language/dicts/external_dicts_dict.md
BayoNet 7ef480e4de
DOCS-442: RU translation of the docs on DDL queries creating extenal dictionary (#9141)
* 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>
2020-02-20 09:31:06 +03:00

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 — Периодичность обновления словарей.

Оригинальная статья