ClickHouse/docs/ja/engines/table-engines/special/merge.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.6 KiB
Raw Blame History

machine_translated machine_translated_rev toc_priority toc_title
true 72537a2d52 36 マージ

マージ

その Merge エンジン(と混同しないように MergeTree)を格納していないデータそのものができるから、他のテーブルを同時に 読み取りは自動的に並列化されます。 表への書き込みはサポートされません。 読み取り時には、実際に読み取られているテーブルのインデックスが存在する場合に使用されます。 その Merge データベース名とテーブルの正規表現です。

例:

Merge(hits, '^WatchLog')

データはのテーブルから読まれます hits 正規表現に一致する名前を持つデータベース ^WatchLog.

データベース名の代わりに、文字列を返す定数式を使用できます。 例えば, currentDatabase().

Regular expressions — re2 (PCREのサブセットをサポート)、大文字と小文字を区別します。 正規表現におけるシンボルのエスケープに関する注意 “match” セクション

読み取るテーブルを選択するとき、 Merge 正規表現と一致しても、テーブル自体は選択されません。 これはループを避けるためです。 二つを作成することが可能です Merge 無限にお互いのデータを読み込もうとするテーブルですが、これは良い考えではありません。

使用する典型的な方法 Merge エンジンは多数を使用のためです TinyLog 単一のテーブルを持つかのようにテーブル。

例2:

古いテーブルWatchLog_oldがあり、データを新しいテーブルWatchLog_newに移動せずにパーティション分割を変更することにしたとしましょう。

CREATE TABLE WatchLog_old(date Date, UserId Int64, EventType String, Cnt UInt64)
ENGINE=MergeTree(date, (UserId, EventType), 8192);
INSERT INTO WatchLog_old VALUES ('2018-01-01', 1, 'hit', 3);

CREATE TABLE WatchLog_new(date Date, UserId Int64, EventType String, Cnt UInt64)
ENGINE=MergeTree PARTITION BY date ORDER BY (UserId, EventType) SETTINGS index_granularity=8192;
INSERT INTO WatchLog_new VALUES ('2018-01-02', 2, 'hit', 3);

CREATE TABLE WatchLog as WatchLog_old ENGINE=Merge(currentDatabase(), '^WatchLog');

SELECT *
FROM WatchLog
┌───────date─┬─UserId─┬─EventType─┬─Cnt─┐
│ 2018-01-01 │      1 │ hit       │   3 │
└────────────┴────────┴───────────┴─────┘
┌───────date─┬─UserId─┬─EventType─┬─Cnt─┐
│ 2018-01-02 │      2 │ hit       │   3 │
└────────────┴────────┴───────────┴─────┘

仮想列

  • _table — Contains the name of the table from which data was read. Type: 文字列.

    定数条件は次のように設定できます _tableWHERE/PREWHERE 句(例えば, WHERE _table='xyz'). この場合、読み取り操作は、条件がオンのテーブルに対してのみ実行されます _table は満足しているので、 _table 列は索引として機能します。

も参照。

元の記事