2020-10-26 10:29:30 +00:00
|
|
|
---
|
|
|
|
toc_priority: 40
|
|
|
|
toc_title: "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0020\u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e\u0020\u0441\u043b\u043e\u0432\u0430\u0440\u044f"
|
|
|
|
---
|
|
|
|
|
2020-03-20 18:20:59 +00:00
|
|
|
# Настройка внешнего словаря {#dicts-external-dicts-dict}
|
2017-10-25 05:27:09 +00:00
|
|
|
|
2020-02-20 06:31:06 +00:00
|
|
|
XML-конфигурация словаря имеет следующую структуру:
|
2017-10-25 05:27:09 +00:00
|
|
|
|
2020-03-20 18:20:59 +00:00
|
|
|
``` xml
|
2017-10-25 05:27:09 +00:00
|
|
|
<dictionary>
|
|
|
|
<name>dict_name</name>
|
|
|
|
|
2020-02-20 06:31:06 +00:00
|
|
|
<structure>
|
|
|
|
<!-- Complex key configuration -->
|
|
|
|
</structure>
|
|
|
|
|
2017-10-25 05:27:09 +00:00
|
|
|
<source>
|
|
|
|
<!-- Source configuration -->
|
|
|
|
</source>
|
|
|
|
|
|
|
|
<layout>
|
|
|
|
<!-- Memory layout configuration -->
|
|
|
|
</layout>
|
|
|
|
|
|
|
|
<lifetime>
|
|
|
|
<!-- Lifetime of dictionary in memory -->
|
|
|
|
</lifetime>
|
|
|
|
</dictionary>
|
|
|
|
```
|
|
|
|
|
2020-08-06 17:05:43 +00:00
|
|
|
Соответствующий [DDL-запрос](../../statements/create/dictionary.md#create-dictionary-query) имеет следующий вид:
|
2020-02-20 06:31:06 +00:00
|
|
|
|
2020-03-20 18:20:59 +00:00
|
|
|
``` sql
|
2020-02-20 06:31:06 +00:00
|
|
|
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
|
|
|
|
```
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
- `name` — Идентификатор, под которым словарь будет доступен для использования. Используйте символы `[a-zA-Z0-9_\-]`.
|
2020-04-30 18:19:18 +00:00
|
|
|
- [source](external-dicts-dict-sources.md) — Источник словаря.
|
|
|
|
- [layout](external-dicts-dict-layout.md) — Размещение словаря в памяти.
|
|
|
|
- [structure](external-dicts-dict-structure.md) — Структура словаря. Ключ и атрибуты, которые можно получить по ключу.
|
|
|
|
- [lifetime](external-dicts-dict-lifetime.md) — Периодичность обновления словарей.
|
2018-10-16 10:47:17 +00:00
|
|
|
|
2020-01-30 10:34:55 +00:00
|
|
|
[Оригинальная статья](https://clickhouse.tech/docs/ru/query_language/dicts/external_dicts_dict/) <!--hide-->
|