ClickHouse/docs/ja/sql-reference/dictionaries/external-dictionaries/external-dicts.md
Ivan Blinkov cd14f9ebcb
SQL reference refactoring (#10857)
* split up select.md

* array-join.md basic refactoring

* distinct.md basic refactoring

* format.md basic refactoring

* from.md basic refactoring

* group-by.md basic refactoring

* having.md basic refactoring

* additional index.md refactoring

* into-outfile.md basic refactoring

* join.md basic refactoring

* limit.md basic refactoring

* limit-by.md basic refactoring

* order-by.md basic refactoring

* prewhere.md basic refactoring

* adjust operators/index.md links

* adjust sample.md links

* adjust more links

* adjust operatots links

* fix some links

* adjust aggregate function article titles

* basic refactor of remaining select clauses

* absolute paths in make_links.sh

* run make_links.sh

* remove old select.md locations

* translate docs/es

* translate docs/fr

* translate docs/fa

* remove old operators.md location

* change operators.md links

* adjust links in docs/es

* adjust links in docs/es

* minor texts adjustments

* wip

* update machine translations to use new links

* fix changelog

* es build fixes

* get rid of some select.md links

* temporary adjust ru links

* temporary adjust more ru links

* improve curly brace handling

* adjust ru as well

* fa build fix

* ru link fixes

* zh link fixes

* temporary disable part of anchor checks
2020-05-15 07:34:54 +03:00

3.4 KiB

machine_translated machine_translated_rev toc_priority toc_title
true 72537a2d52 39 一般的な説明

外部辞書

さまざまなデータソースから独自の辞書を追加できます。 ディクショナリのデータソースには、ローカルテキストまたは実行可能ファイル、HTTPリソース、または別のDBMSを使用できます。 詳細については、 “外部辞書のソース”.

クリックハウス:

  • 完全または部分的にRAMに辞書を格納します。
  • 辞書を定期的に更新し、欠損値を動的に読み込みます。 つまり、辞書は動的に読み込むことができます。
  • Xmlファイルで外部辞書を作成することができます。 DDLクエリ.

外部辞書の構成は、一つ以上のxmlファイルに配置できます。 設定へのパスは dictionaries_config パラメータ。

辞書は、サーバーの起動時または最初の使用時に読み込むことができます。 dictionaries_lazy_load 設定。

その 辞書 システムテーブルについての情報が含まれて辞書に設定されます。 各辞書については、そこにあります:

  • 辞書の状態。
  • 設定パラメータ。
  • メトリクスのような量のメモリ割り当てのための辞書は多数のクエリからの辞書に成功したとみなされます。

辞書構成ファイルの形式は次のとおりです:

<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>

あなたはできる 設定 同じファイル内の任意の数の辞書。

辞書のDDLクエリ サーバー構成に追加のレコードは必要ありません。 この仕事を辞書として第一級の体のように、テーブルやビュー。

!!! attention "注意" 小さな辞書の値を変換するには、次のように記述します SELECT クエリ(参照 変換 機能)。 この機能は外部辞書とは関係ありません。

も参照。

元の記事