mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
57 lines
2.6 KiB
Markdown
57 lines
2.6 KiB
Markdown
|
---
|
||
|
machine_translated: true
|
||
|
machine_translated_rev: b111334d6614a02564cf32f379679e9ff970d9b1
|
||
|
toc_priority: 39
|
||
|
toc_title: "\u6982\u8FF0"
|
||
|
---
|
||
|
|
||
|
# 外部字典 {#dicts-external-dicts}
|
||
|
|
||
|
您可以从各种数据源添加自己的字典。 字典的数据源可以是本地文本或可执行文件、HTTP(s)资源或其他DBMS。 有关详细信息,请参阅 “[外部字典的来源](external_dicts_dict_sources.md)”.
|
||
|
|
||
|
ClickHouse:
|
||
|
|
||
|
- 完全或部分存储在RAM中的字典。
|
||
|
- 定期更新字典并动态加载缺失的值。 换句话说,字典可以动态加载。
|
||
|
- 允许创建外部字典与xml文件或 [DDL查询](../../statements/create.md#create-dictionary-query).
|
||
|
|
||
|
外部字典的配置可以位于一个或多个xml文件中。 配置的路径在指定 [dictionaries\_config](../../../operations/server_configuration_parameters/settings.md#server_configuration_parameters-dictionaries_config) 参数。
|
||
|
|
||
|
字典可以在服务器启动或首次使用时加载,具体取决于 [dictionaries\_lazy\_load](../../../operations/server_configuration_parameters/settings.md#server_configuration_parameters-dictionaries_lazy_load) 设置。
|
||
|
|
||
|
字典配置文件具有以下格式:
|
||
|
|
||
|
``` xml
|
||
|
<yandex>
|
||
|
<comment>An optional element with any content. Ignored by the ClickHouse server.</comment>
|
||
|
|
||
|
<!--Optional element. File name with substitutions-->
|
||
|
<include_from>/etc/metrika.xml</include_from>
|
||
|
|
||
|
|
||
|
<dictionary>
|
||
|
<!-- Dictionary configuration. -->
|
||
|
<!-- There can be any number of <dictionary> sections in the configuration file. -->
|
||
|
</dictionary>
|
||
|
|
||
|
</yandex>
|
||
|
```
|
||
|
|
||
|
你可以 [配置](external_dicts_dict.md) 同一文件中的任意数量的字典。
|
||
|
|
||
|
[字典的DDL查询](../../statements/create.md#create-dictionary-query) 在服务器配置中不需要任何其他记录。 它们允许使用字典作为一流的实体,如表或视图。
|
||
|
|
||
|
!!! attention "注意"
|
||
|
您可以通过在一个小字典中描述它来转换小字典的值 `SELECT` 查询(见 [变换](../../../sql_reference/functions/other_functions.md) 功能)。 此功能与外部字典无关。
|
||
|
|
||
|
## 另请参阅 {#ext-dicts-see-also}
|
||
|
|
||
|
- [配置外部字典](external_dicts_dict.md)
|
||
|
- [在内存中存储字典](external_dicts_dict_layout.md)
|
||
|
- [字典更新](external_dicts_dict_lifetime.md)
|
||
|
- [外部字典的来源](external_dicts_dict_sources.md)
|
||
|
- [字典键和字段](external_dicts_dict_structure.md)
|
||
|
- [使用外部字典的函数](../../../sql_reference/functions/ext_dict_functions.md)
|
||
|
|
||
|
[原始文章](https://clickhouse.tech/docs/en/query_language/dicts/external_dicts/) <!--hide-->
|