メインコンテンツへスキップ
ClickHouse Cloud でのクエリこのシステムテーブルのデータは、ClickHouse Cloud の各ノードにローカルに保持されています。したがって、すべてのデータを完全に把握するには、clusterAllReplicas 関数を使用する必要があります。詳細については、こちらを参照してください。

説明

個々のクエリについて、system.events テーブルのメモリおよびメトリックの値の履歴が保存され、定期的にディスクへフラッシュされます。 クエリが開始されると、query_metric_log_interval ミリ秒間隔でデータが収集されます (デフォルトは 1000 です) 。また、クエリの実行時間が query_metric_log_interval より長い場合は、クエリ終了時にもデータが収集されます。

カラム

  • query_id (String) — クエリ ID。
  • hostname (LowCardinality(String)) — クエリを実行するサーバーのホスト名。
  • event_date (Date) — イベント日付。
  • event_time (DateTime) — イベント時刻。
  • event_time_microseconds (DateTime64(6)) — マイクロ秒精度のイベント時刻。
  • memory_usage (UInt64) — クエリが使用する RAM 量。専用メモリの一部は含まれない場合があります。
  • peak_memory_usage (UInt64) — クエリが使用した RAM の最大量。
  • ProfileEvent_Query (UInt64) — 解釈され、実行される可能性のあるクエリ数。パースに失敗したクエリ、AST サイズ制限、QUOTA 制限、または同時実行クエリ数の制限によって拒否されたクエリは含みません。ClickHouse 自身によって開始された内部クエリを含む場合があります。サブクエリはカウントしません。
  • ProfileEvent_SelectQuery (UInt64) — Query と同じですが、SELECT クエリのみが対象です。
  • ProfileEvent_InsertQuery (UInt64) — Query と同じですが、INSERT クエリのみが対象です。
  • ProfileEvent_InitialQuery (UInt64) — Query と同じですが、初期クエリのみをカウントします (is_initial_query を参照) 。
  • ProfileEvent_InitialSelectQuery (UInt64) — InitialQuery と同じですが、SELECT クエリのみが対象です。
  • ProfileEvent_QueriesWithSubqueries (UInt64) — すべてのサブクエリを含むクエリ数。
  • ProfileEvent_SelectQueriesWithSubqueries (UInt64) — すべてのサブクエリを含む SELECT クエリ数。
  • ProfileEvent_InsertQueriesWithSubqueries (UInt64) — すべてのサブクエリを含む INSERT クエリ数。
  • ProfileEvent_SelectQueriesWithPrimaryKeyUsage (UInt64) — WHERE 条件の評価に主キーを使用する SELECT クエリ数。
  • ProfileEvent_AsyncInsertQuery (UInt64) — InsertQuery と同じですが、非同期 INSERT クエリのみが対象です。
  • ProfileEvent_AsyncInsertBytes (UInt64) — 非同期 INSERT クエリのデータサイズ (バイト単位) 。
  • ProfileEvent_AsyncInsertRows (UInt64) — 非同期 INSERT クエリによって挿入された行数。
  • ProfileEvent_AsyncInsertCacheHits (UInt64) — 非同期 INSERT の hash id cache で重複する hash id が見つかった回数。
  • ProfileEvent_FailedInternalQuery (UInt64) — 失敗した内部クエリ数。
  • ProfileEvent_FailedInternalSelectQuery (UInt64) — FailedInternalQuery と同じですが、SELECT クエリのみが対象です。
  • ProfileEvent_FailedInternalInsertQuery (UInt64) — FailedInternalQuery と同じですが、INSERT クエリのみが対象です。
  • ProfileEvent_FailedInitialQuery (UInt64) — 失敗した初期クエリ数。
  • ProfileEvent_FailedInitialSelectQuery (UInt64) — FailedInitialQuery と同じですが、SELECT クエリのみが対象です。
  • ProfileEvent_FailedQuery (UInt64) — 失敗したクエリの総数 (内部クエリとユーザークエリの両方) 。
  • ProfileEvent_FailedSelectQuery (UInt64) — FailedQuery と同じですが、SELECT クエリのみを対象とします。
  • ProfileEvent_FailedInsertQuery (UInt64) — FailedQuery と同じですが、INSERT クエリのみを対象とします。
  • ProfileEvent_FailedAsyncInsertQuery (UInt64) — 失敗した非同期 INSERT クエリの数。
  • ProfileEvent_ASTFuzzerQueries (UInt64) — サーバー側 AST fuzzer が試行したファズクエリの数。
  • ProfileEvent_QueryTimeMicroseconds (UInt64) — すべてのクエリの合計時間。
  • ProfileEvent_SelectQueryTimeMicroseconds (UInt64) — SELECT クエリの合計時間。
  • ProfileEvent_InsertQueryTimeMicroseconds (UInt64) — INSERT クエリの合計時間。
  • ProfileEvent_OtherQueryTimeMicroseconds (UInt64) — SELECT または INSERT 以外のクエリの合計時間。
  • ProfileEvent_FileOpen (UInt64) — 開かれたファイルの数。
  • ProfileEvent_Seek (UInt64) — ‘lseek’ 関数が呼び出された回数。
  • ProfileEvent_ReadBufferFromFileDescriptorRead (UInt64) — ファイルディスクリプタからの読み取り (read/pread) の回数。ソケットは含みません。
  • ProfileEvent_ReadBufferFromFileDescriptorReadFailed (UInt64) — ファイルディスクリプタからの読み取り (read/pread) が失敗した回数。
  • ProfileEvent_ReadBufferFromFileDescriptorReadBytes (UInt64) — ファイルディスクリプタから読み取られたバイト数。ファイルが圧縮されている場合は、圧縮後のデータサイズを示します。
  • ProfileEvent_WriteBufferFromFileDescriptorWrite (UInt64) — ファイルディスクリプタへの書き込み (write/pwrite) の回数。ソケットは含みません。
  • ProfileEvent_WriteBufferFromFileDescriptorWriteFailed (UInt64) — ファイルディスクリプタへの書き込み (write/pwrite) が失敗した回数。
  • ProfileEvent_WriteBufferFromFileDescriptorWriteBytes (UInt64) — ファイルディスクリプタに書き込まれたバイト数。ファイルが圧縮されている場合は、圧縮後のデータサイズを示します。
  • ProfileEvent_FileSync (UInt64) — ファイルに対して F_FULLFSYNC/fsync/fdatasync 関数が呼び出された回数。
  • ProfileEvent_DirectorySync (UInt64) — ディレクトリに対して F_FULLFSYNC/fsync/fdatasync 関数が呼び出された回数。
  • ProfileEvent_FileSyncElapsedMicroseconds (UInt64) — ファイルに対する F_FULLFSYNC/fsync/fdatasync syscall の待機に費やした合計時間。
  • ProfileEvent_DirectorySyncElapsedMicroseconds (UInt64) — ディレクトリに対する F_FULLFSYNC/fsync/fdatasync syscall の待機に費やした合計時間。
  • ProfileEvent_ReadCompressedBytes (UInt64) — 圧縮されたソース (ファイル、ネットワーク) から読み取られたバイト数 (展開前のバイト数) 。
  • ProfileEvent_CompressedReadBufferBlocks (UInt64) — 圧縮されたソース (ファイル、ネットワーク) から読み取られた圧縮 block の数 (それぞれが独立して圧縮されたデータ block) 。
  • ProfileEvent_CompressedReadBufferBytes (UInt64) — 圧縮されたソース (ファイル、ネットワーク) から読み取られた非圧縮バイト数 (展開後のバイト数) 。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatch (UInt64) — 圧縮 block の checksum が一致しなかった回数。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatchSingleBitMismatch (UInt64) — 圧縮ブロックのチェックサム不一致が、1 ビットの差異によって発生した回数。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatchMicroseconds (UInt64) — 圧縮ブロックのチェックサム不一致によるビット反転の検出に費やした合計時間。
  • ProfileEvent_UncompressedCacheHits (UInt64) — データブロックが非圧縮キャッシュ内で見つかり、伸長を回避できた回数。
  • ProfileEvent_UncompressedCacheMisses (UInt64) — データブロックが非圧縮キャッシュ内で見つからず、伸長が必要になった回数。
  • ProfileEvent_UncompressedCacheWeightLost (UInt64) — 非圧縮キャッシュから追い出されたバイト数。
  • ProfileEvent_PageCacheHits (UInt64) — データブロックがユーザー空間ページキャッシュ内で見つかった回数。
  • ProfileEvent_PageCacheMisses (UInt64) — データブロックがユーザー空間ページキャッシュ内で見つからなかった回数。
  • ProfileEvent_PageCacheWeightLost (UInt64) — ユーザー空間ページキャッシュから追い出されたバイト数
  • ProfileEvent_PageCacheResized (UInt64) — ユーザー空間ページキャッシュが自動的にリサイズされた回数 (通常は 1 秒あたり数回発生し、memory_worker_period_ms によって制御されます) 。
  • ProfileEvent_PageCacheOvercommitResize (UInt64) — メモリ割り当て中にメモリを解放するため、ユーザー空間ページキャッシュが自動的にリサイズされた回数。
  • ProfileEvent_PageCacheReadBytes (UInt64) — ユーザー空間ページキャッシュから読み取られたバイト数。
  • ProfileEvent_MMappedFileCacheHits (UInt64) — ファイルが MMap キャッシュ内で見つかった回数 (‘mmap’ read_method 用) 。そのため、再度 mmap する必要がありませんでした。
  • ProfileEvent_MMappedFileCacheMisses (UInt64) — ファイルが MMap キャッシュ内で見つからなかった回数 (‘mmap’ read_method 用) 。そのため、再度 mmap する必要がありました。
  • ProfileEvent_OpenedFileCacheHits (UInt64) — ファイルがオープン済みファイルキャッシュ内で見つかり、再度開く必要がなかった回数。
  • ProfileEvent_OpenedFileCacheMisses (UInt64) — ファイルがオープン済みファイルキャッシュ内で見つからず、再度開く必要があった回数。
  • ProfileEvent_OpenedFileCacheMicroseconds (UInt64) — OpenedFileCache メソッドの実行に費やした時間。
  • ProfileEvent_AIOWrite (UInt64) — Linux または FreeBSD の AIO インターフェイスによる書き込み回数
  • ProfileEvent_AIOWriteBytes (UInt64) — Linux または FreeBSD の AIO インターフェイスで書き込まれたバイト数
  • ProfileEvent_AIORead (UInt64) — Linux または FreeBSD の AIO インターフェイスによる読み取り回数
  • ProfileEvent_AIOReadBytes (UInt64) — Linux または FreeBSD の AIO インターフェイスで読み取られたバイト数
  • ProfileEvent_IOBufferAllocs (UInt64) — I/O バッファ (ReadBuffer/WriteBuffer) の割り当て回数。
  • ProfileEvent_IOBufferAllocBytes (UInt64) — I/O バッファ (ReadBuffer/WriteBuffer) に割り当てられたバイト数。
  • ProfileEvent_ArenaAllocChunks (UInt64) — メモリアリーナに対して割り当てられた chunk 数 (GROUP BY および類似の操作で使用)
  • ProfileEvent_ArenaAllocBytes (UInt64) — メモリアリーナに対して割り当てられたバイト数 (GROUP BY および類似の操作で使用)
  • ProfileEvent_FunctionExecute (UInt64) — SQL の通常関数の呼び出し回数 (SQL 関数はブロック単位で呼び出されるため、この数値はブロック数を表します) 。
  • ProfileEvent_TableFunctionExecute (UInt64) — テーブル関数の呼び出し回数。
  • ProfileEvent_DefaultImplementationForNullsRows (UInt64) — 関数実行時に NULL 値向けのデフォルト実装で処理された行数。
  • ProfileEvent_DefaultImplementationForNullsRowsWithNulls (UInt64) — 関数実行時に NULL 値向けのデフォルト実装で処理された、NULL 値を含む行数。
  • ProfileEvent_MarkCacheHits (UInt64) — エントリが mark cache で見つかり、mark file を読み込む必要がなかった回数。
  • ProfileEvent_MarkCacheMisses (UInt64) — エントリが mark cache で見つからず、mark file をメモリに読み込む必要があった回数。これはコストの高い処理であり、クエリのレイテンシを増加させます。
  • ProfileEvent_PrimaryIndexCacheHits (UInt64) — エントリがプライマリインデックスキャッシュで見つかり、索引ファイルを読み込む必要がなかった回数。
  • ProfileEvent_PrimaryIndexCacheMisses (UInt64) — エントリがプライマリインデックスキャッシュで見つからず、索引ファイルをメモリに読み込む必要があった回数。これはコストの高い処理であり、クエリのレイテンシを増加させます。
  • ProfileEvent_IcebergMetadataFilesCacheHits (UInt64) — Iceberg metadata files が cache で見つかった回数。
  • ProfileEvent_IcebergMetadataFilesCacheMisses (UInt64) — Iceberg metadata files が Iceberg メタデータキャッシュで見つからず、 (リモート) ディスクから読み取る必要があった回数。
  • ProfileEvent_IcebergMetadataFilesCacheStaleMisses (UInt64) — Iceberg metadata files が cache で見つかったものの古いと見なされ、 (リモート) ディスクから読み取る必要があった回数。
  • ProfileEvent_IcebergMetadataFilesCacheWeightLost (UInt64) — Iceberg メタデータキャッシュから追い出されたおおよそのバイト数。
  • ProfileEvent_IcebergMetadataReadWaitTimeMicroseconds (UInt64) — データリーダーが Iceberg metadata files の読み取りと解析の完了を待機した合計時間。すべてのリーダースレッドの合計です。
  • ProfileEvent_ParquetMetadataCacheHits (UInt64) — Parquet メタデータが cache で見つかった回数。
  • ProfileEvent_ParquetMetadataCacheMisses (UInt64) — Parquet メタデータが cache で見つからず、ディスクから読み取る必要があった回数。
  • ProfileEvent_ParquetMetadataCacheWeightLost (UInt64) — Parquet メタデータキャッシュから追い出されたおおよそのバイト数。
  • ProfileEvent_IcebergIteratorInitializationMicroseconds (UInt64) — Iceberg データイテレーターの同期初期化に費やされた合計時間。
  • ProfileEvent_IcebergMetadataUpdateMicroseconds (UInt64) — Iceberg データイテレーターの同期初期化に費やされた合計時間。
  • ProfileEvent_IcebergMetadataReturnedObjectInfos (UInt64) — Iceberg イテレーターから返されたオブジェクト情報の総数。
  • ProfileEvent_IcebergMinMaxNonPrunedDeleteFiles (UInt64) — パーティション化と sequence number によって適合と判断された組のうち、minmax 解析で受理された data files と position delete file の組の総数。
  • ProfileEvent_IcebergMinMaxPrunedDeleteFiles (UInt64) — パーティション化と sequence number によって適合と判断された組のうち、minmax 解析で受理された data files と position delete file の組の総数。
  • ProfileEvent_VectorSimilarityIndexCacheHits (UInt64) — インデックスグラニュールがベクトル索引キャッシュで見つかった回数。
  • ProfileEvent_VectorSimilarityIndexCacheMisses (UInt64) — ベクトル索引 cache 内でインデックスグラニュールが見つからず、ディスクから読み取る必要があった回数。
  • ProfileEvent_VectorSimilarityIndexCacheWeightLost (UInt64) — ベクトル索引 cache から追い出された概算バイト数。
  • ProfileEvent_TextIndexReadDictionaryBlocks (UInt64) — テキスト索引の辞書ブロックがディスクから読み取られた回数。
  • ProfileEvent_TextIndexTokensCacheHits (UInt64) — テキスト索引のトークン情報が cache 内で見つかった回数。
  • ProfileEvent_TextIndexTokensCacheMisses (UInt64) — テキスト索引のトークン情報が cache 内で見つからなかった回数。
  • ProfileEvent_TextIndexHeaderCacheHits (UInt64) — ヘッダーが cache 内で見つかった回数。
  • ProfileEvent_TextIndexHeaderCacheMisses (UInt64) — ヘッダーが cache 内で見つからなかった回数。
  • ProfileEvent_TextIndexPostingsCacheHits (UInt64) — テキスト索引のポスティングリストが cache 内で見つかった回数。
  • ProfileEvent_TextIndexPostingsCacheMisses (UInt64) — テキスト索引のポスティングリストが cache 内で見つからなかった回数。
  • ProfileEvent_TextIndexReadSparseIndexBlocks (UInt64) — スパースインデックスブロックがテキスト索引から読み取られた回数。
  • ProfileEvent_TextIndexReaderTotalMicroseconds (UInt64) — テキスト索引の読み取りに費やされた合計時間。
  • ProfileEvent_TextIndexReadGranulesMicroseconds (UInt64) — テキスト索引のグラニュールの読み取りと解析に費やされた合計時間。
  • ProfileEvent_TextIndexReadPostings (UInt64) — ポスティングリストがテキスト索引から読み取られた回数。
  • ProfileEvent_TextIndexUsedEmbeddedPostings (UInt64) — 辞書に埋め込まれたポスティングリストが使用された回数。
  • ProfileEvent_TextIndexUseHint (UInt64) — テキスト索引からの直接読み取りがヒントとして追加され、実際に使用されたインデックスグラニュール数。
  • ProfileEvent_TextIndexDiscardHint (UInt64) — テキスト索引からの直接読み取りがヒントとして追加されたものの、選択性が低いため破棄されたインデックスグラニュール数。
  • ProfileEvent_TextIndexDiscardPatternScan (UInt64) — 読み取るポスティングリスト数がしきい値を超えたため、テキスト索引でのパターンベースの辞書スキャンが破棄された回数。
  • ProfileEvent_QueryConditionCacheHits (UInt64) — query condition cache 内でエントリが見つかった回数 (マークの読み取りをスキップ可能) 。SETTING use_query_condition_cache = 1 を指定した SELECT クエリでのみ更新されます。
  • ProfileEvent_QueryConditionCacheMisses (UInt64) — query condition cache 内でエントリが見つからなかった回数 (マークの読み取りをスキップ不可) 。SETTING use_query_condition_cache = 1 を指定した SELECT クエリでのみ更新されます。
  • ProfileEvent_QueryCacheHits (UInt64) — query cache 内でクエリ結果が見つかった回数 (クエリの実行を回避) 。SETTING use_query_cache = 1 を指定した SELECT クエリでのみ更新されます。
  • ProfileEvent_QueryCacheMisses (UInt64) — query cache 内でクエリ結果が見つからなかった回数 (クエリの実行が必要) 。SETTING use_query_cache = 1 を指定した SELECT クエリでのみ更新されます。
  • ProfileEvent_QueryCacheAgeSeconds (UInt64) — 見つかった query cache エントリの経過秒数の合計。この値はヒット時とミス時の両方で設定されます。
  • ProfileEvent_QueryCacheReadRows (UInt64) — query cache から読み取られた行数。
  • ProfileEvent_QueryCacheReadBytes (UInt64) — クエリキャッシュから読み取られた (非圧縮の) バイト数。
  • ProfileEvent_QueryCacheWrittenRows (UInt64) — クエリキャッシュに保存された行数。
  • ProfileEvent_QueryCacheWrittenBytes (UInt64) — クエリキャッシュに保存された (非圧縮の) バイト数
  • ProfileEvent_CreatedReadBufferOrdinary (UInt64) — データ読み取りのために通常の読み取りバッファが作成された回数 (他の読み取り方式との選択時) 。
  • ProfileEvent_CreatedReadBufferDirectIO (UInt64) — データ読み取りのために O_DIRECT を使用する読み取りバッファが作成された回数 (他の読み取り方式との選択時) 。
  • ProfileEvent_CreatedReadBufferDirectIOFailed (UInt64) — データ読み取りのために O_DIRECT を使用する読み取りバッファの作成が試行された回数 (他の読み取り方式との選択時) 。ただし、ファイルシステムのサポート不足などの理由で OS に許可されず、通常の読み取り方式にフォールバックした回数です。
  • ProfileEvent_CreatedReadBufferMMap (UInt64) — データ読み取りのために ‘mmap’ を使用する読み取りバッファが作成された回数 (他の読み取り方式との選択時) 。
  • ProfileEvent_CreatedReadBufferMMapFailed (UInt64) — データ読み取りのために ‘mmap’ を使用する読み取りバッファの作成が試行された回数 (他の読み取り方式との選択時) 。ただし、ファイルシステムのサポート不足などの理由で OS に許可されず、通常の読み取り方式にフォールバックした回数です。
  • ProfileEvent_DiskReadElapsedMicroseconds (UInt64) — read syscall の待機に費やされた合計時間。ページキャッシュからの読み取りも含まれます。
  • ProfileEvent_DiskWriteElapsedMicroseconds (UInt64) — write syscall の待機に費やされた合計時間。ページキャッシュへの書き込みも含まれます。
  • ProfileEvent_NetworkReceiveElapsedMicroseconds (UInt64) — ネットワークからのデータ受信を待機していた時間、または実際の受信に費やされた合計時間。ClickHouse 関連のネットワーク通信のみが含まれ、サードパーティライブラリによるものは含まれません。
  • ProfileEvent_NetworkSendElapsedMicroseconds (UInt64) — ネットワークへのデータ送信を待機していた時間、または実際の送信に費やされた合計時間。ClickHouse 関連のネットワーク通信のみが含まれ、サードパーティライブラリによるものは含まれません。
  • ProfileEvent_NetworkReceiveBytes (UInt64) — ネットワークから受信した合計バイト数。ClickHouse 関連のネットワーク通信のみが含まれ、サードパーティライブラリによるものは含まれません。
  • ProfileEvent_NetworkSendBytes (UInt64) — ネットワークへ送信した合計バイト数。ClickHouse 関連のネットワーク通信のみが含まれ、サードパーティライブラリによるものは含まれません。
  • ProfileEvent_FilterPartsByVirtualColumnsMicroseconds (UInt64) — filterPartsByVirtualColumns 関数で費やされた合計時間。
  • ProfileEvent_GlobalThreadPoolExpansions (UInt64) — グローバルスレッドプールに新しいスレッドが追加された合計回数を示します。このメトリクスは、処理需要の増加に対応するためにグローバルスレッドプールが拡張された頻度を表します。
  • ProfileEvent_GlobalThreadPoolShrinks (UInt64) — グローバルスレッドプールからスレッドが削除されて縮小した合計回数を示します。これは、アイドルスレッド数が max_thread_pool_free_size を超えたときに発生し、スレッド使用率の低下に応じてグローバルスレッドプールのサイズが調整されたことを表します。
  • ProfileEvent_GlobalThreadPoolThreadCreationMicroseconds (UInt64) — 新しいスレッドの起動待機に費やされた合計時間。
  • ProfileEvent_GlobalThreadPoolLockWaitMicroseconds (UInt64) — グローバルスレッドプール内でスレッドがロック待機に費やした合計時間。
  • ProfileEvent_GlobalThreadPoolJobs (UInt64) — グローバルスレッドプールに投入されたジョブ数を示します。
  • ProfileEvent_GlobalThreadPoolJobWaitTimeMicroseconds (UInt64) — ジョブがスレッドプールにスケジュールされてから、ワーカースレッドに取得されて実行されるまでの経過時間を測定します。このメトリクスはジョブ処理の遅延を特定するのに役立ち、新しいタスクに対するスレッドプールの応答性の指標となります。
  • ProfileEvent_LocalThreadPoolExpansions (UInt64) — ローカルスレッドプールを拡張するために、グローバルスレッドプールからスレッドが借り出された総回数をカウントします。
  • ProfileEvent_LocalThreadPoolShrinks (UInt64) — ローカルスレッドプールからグローバルスレッドプールにスレッドが返却された総回数をカウントします。
  • ProfileEvent_LocalThreadPoolThreadCreationMicroseconds (UInt64) — ローカルスレッドプールがグローバルプールからスレッドを借りるまで待機していた合計時間です。
  • ProfileEvent_LocalThreadPoolLockWaitMicroseconds (UInt64) — スレッドがローカルスレッドプール内でロック待機に費やした合計時間です。
  • ProfileEvent_LocalThreadPoolJobs (UInt64) — ローカルスレッドプールにプッシュされたジョブ数をカウントします。
  • ProfileEvent_LocalThreadPoolBusyMicroseconds (UInt64) — スレッドが実際の処理の実行に費やした合計時間です。
  • ProfileEvent_LocalThreadPoolJobWaitTimeMicroseconds (UInt64) — ジョブがスレッドプールにスケジュールされてから、ワーカースレッドに取得されて実行されるまでの経過時間を測定します。このメトリクスはジョブ処理の遅延を特定するのに役立ち、新しいタスクに対するスレッドプールの応答性の指標となります。
  • ProfileEvent_DiskS3GetRequestThrottlerCount (UInt64) — スロットラーを通過した DiskS3 の GET および SELECT リクエスト数です。ブロックされたものとブロックされなかったものの両方を含みます。
  • ProfileEvent_DiskS3GetRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた DiskS3 の GET および SELECT リクエスト数です。
  • ProfileEvent_DiskS3GetRequestThrottlerSleepMicroseconds (UInt64) — DiskS3 の GET および SELECT リクエストのスロットリング制限に従うために、クエリがスリープしていた合計時間です。
  • ProfileEvent_DiskS3PutRequestThrottlerCount (UInt64) — スロットラーを通過した DiskS3 の PUT、COPY、POST、LIST リクエスト数です。ブロックされたものとブロックされなかったものの両方を含みます。
  • ProfileEvent_DiskS3PutRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた DiskS3 の PUT、COPY、POST、LIST リクエスト数です。
  • ProfileEvent_DiskS3PutRequestThrottlerSleepMicroseconds (UInt64) — DiskS3 の PUT、COPY、POST、LIST リクエストのスロットリング制限に従うために、クエリがスリープしていた合計時間です。
  • ProfileEvent_S3GetRequestThrottlerCount (UInt64) — スロットラーを通過した S3 の GET および SELECT リクエスト数です。ブロックされたものとブロックされなかったものの両方を含みます。
  • ProfileEvent_S3GetRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた S3 の GET および SELECT リクエスト数です。
  • ProfileEvent_S3GetRequestThrottlerSleepMicroseconds (UInt64) — S3 の GET および SELECT リクエストのスロットリング制限に従うために、クエリがスリープしていた合計時間です。
  • ProfileEvent_S3PutRequestThrottlerCount (UInt64) — スロットラーを通過した S3 の PUT、COPY、POST、LIST リクエスト数です。ブロックされたものとブロックされなかったものの両方を含みます。
  • ProfileEvent_S3PutRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた S3 の PUT、COPY、POST、LIST リクエスト数です。
  • ProfileEvent_S3PutRequestThrottlerSleepMicroseconds (UInt64) — S3 の PUT、COPY、POST、LIST リクエストのスロットリング制限に従うために、クエリがスリープしていた合計時間です。
  • ProfileEvent_ACMEAPIRequests (UInt64) — 発行された ACME API リクエスト数です。
  • ProfileEvent_ACMECertificateOrders (UInt64) — 発行された ACME 証明書オーダー数です。
  • ProfileEvent_DiskAzureReadMicroseconds (UInt64) — Azure ディスクの読み取りリクエストの待機に費やされた合計時間。
  • ProfileEvent_DiskAzureReadRequestsCount (UInt64) — Azure ディスクの読み取りリクエスト数。
  • ProfileEvent_DiskAzureReadRequestsErrors (UInt64) — Azure ディスクの読み取りリクエストエラー数。
  • ProfileEvent_DiskAzureReadRequestsThrottling (UInt64) — スロットリングされた Azure ディスクの読み取りリクエスト数。
  • ProfileEvent_DiskAzureReadRequestsRedirects (UInt64) — Azure ディスクの読み取りリクエストのリダイレクト数。
  • ProfileEvent_DiskAzureWriteMicroseconds (UInt64) — Azure ディスクの書き込みリクエストの待機に費やされた合計時間。
  • ProfileEvent_DiskAzureWriteRequestsCount (UInt64) — Azure ディスクの書き込みリクエスト数。
  • ProfileEvent_DiskAzureWriteRequestsErrors (UInt64) — Azure ディスクの書き込みリクエストエラー数。
  • ProfileEvent_DiskAzureWriteRequestsThrottling (UInt64) — スロットリングされた Azure ディスクの書き込みリクエスト数。
  • ProfileEvent_DiskAzureWriteRequestsRedirects (UInt64) — Azure ディスクの書き込みリクエストのリダイレクト数。
  • ProfileEvent_AzureReadMicroseconds (UInt64) — Azure の読み取りリクエストの待機に費やされた合計時間。
  • ProfileEvent_AzureReadRequestsCount (UInt64) — Azure の読み取りリクエスト数。
  • ProfileEvent_AzureReadRequestsErrors (UInt64) — Azure の読み取りリクエストエラー数。
  • ProfileEvent_AzureReadRequestsThrottling (UInt64) — スロットリングされた Azure の読み取りリクエスト数。
  • ProfileEvent_AzureReadRequestsRedirects (UInt64) — Azure の読み取りリクエストのリダイレクト数。
  • ProfileEvent_AzureWriteMicroseconds (UInt64) — Azure の書き込みリクエストの待機に費やされた合計時間。
  • ProfileEvent_AzureWriteRequestsCount (UInt64) — Azure の書き込みリクエスト数。
  • ProfileEvent_AzureWriteRequestsErrors (UInt64) — Azure の書き込みリクエストエラー数。
  • ProfileEvent_AzureWriteRequestsThrottling (UInt64) — スロットリングされた Azure の書き込みリクエスト数。
  • ProfileEvent_AzureWriteRequestsRedirects (UInt64) — Azure の書き込みリクエストのリダイレクト数。
  • ProfileEvent_AzureGetRequestThrottlerCount (UInt64) — スロットラーを通過した Azure GET リクエスト数。ブロックされたものと、ブロックされなかったものの両方を含みます。
  • ProfileEvent_AzureGetRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた Azure GET リクエスト数。
  • ProfileEvent_AzureGetRequestThrottlerSleepMicroseconds (UInt64) — Azure GET リクエストのスロットリングに従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_DiskAzureGetRequestThrottlerCount (UInt64) — スロットラーを通過した Azure ディスクの GET リクエスト数。ブロックされたものと、ブロックされなかったものの両方を含みます。
  • ProfileEvent_DiskAzureGetRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた Azure ディスクの GET リクエスト数。
  • ProfileEvent_DiskAzureGetRequestThrottlerSleepMicroseconds (UInt64) — Azure ディスクの GET リクエスト スロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_AzurePutRequestThrottlerCount (UInt64) — スロットラーを通過した Azure PUT リクエスト数。ブロックされたものとブロックされなかったものを含みます。
  • ProfileEvent_AzurePutRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた Azure PUT リクエスト数。
  • ProfileEvent_AzurePutRequestThrottlerSleepMicroseconds (UInt64) — Azure PUT リクエスト スロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_DiskAzurePutRequestThrottlerCount (UInt64) — スロットラーを通過した Azure ディスク PUT リクエスト数。ブロックされたものとブロックされなかったものを含みます。
  • ProfileEvent_DiskAzurePutRequestThrottlerBlocked (UInt64) — スロットラーによってブロックされた Azure ディスク PUT リクエスト数。
  • ProfileEvent_DiskAzurePutRequestThrottlerSleepMicroseconds (UInt64) — Azure ディスク PUT リクエスト スロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_RemoteReadThrottlerBytes (UInt64) — ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_RemoteReadThrottlerSleepMicroseconds (UInt64) — ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ のスロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_RemoteWriteThrottlerBytes (UInt64) — ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_RemoteWriteThrottlerSleepMicroseconds (UInt64) — ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ のスロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_LocalReadThrottlerBytes (UInt64) — ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_LocalReadThrottlerSleepMicroseconds (UInt64) — ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ のスロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_LocalWriteThrottlerBytes (UInt64) — ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_LocalWriteThrottlerSleepMicroseconds (UInt64) — ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ のスロットリングに従うために、クエリがスリープしていた合計時間。
  • ProfileEvent_BackupThrottlerBytes (UInt64) — ‘max_backup_bandwidth_for_server’ スロットラーを通過したバイト数。
  • ProfileEvent_BackupThrottlerSleepMicroseconds (UInt64) — ‘max_backup_bandwidth_for_server’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_MergesThrottlerBytes (UInt64) — ‘max_merges_bandwidth_for_server’ スロットラーを通過したバイト数。
  • ProfileEvent_MergesThrottlerSleepMicroseconds (UInt64) — ‘max_merges_bandwidth_for_server’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_MutationsThrottlerBytes (UInt64) — ‘max_mutations_bandwidth_for_server’ スロットラーを通過したバイト数。
  • ProfileEvent_MutationsThrottlerSleepMicroseconds (UInt64) — ‘max_mutations_bandwidth_for_server’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_UserThrottlerBytes (UInt64) — ‘max_network_bandwidth_for_user’ スロットラーを通過したバイト数。
  • ProfileEvent_UserThrottlerSleepMicroseconds (UInt64) — ‘max_network_bandwidth_for_user’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_AllUsersThrottlerBytes (UInt64) — ‘max_network_bandwidth_for_all_users’ スロットラーを通過したバイト数。
  • ProfileEvent_AllUsersThrottlerSleepMicroseconds (UInt64) — ‘max_network_bandwidth_for_all_users’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_QueryRemoteReadThrottlerBytes (UInt64) — ‘max_remote_read_network_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_QueryRemoteReadThrottlerSleepMicroseconds (UInt64) — ‘max_remote_read_network_bandwidth’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_QueryRemoteWriteThrottlerBytes (UInt64) — ‘max_remote_write_network_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_QueryRemoteWriteThrottlerSleepMicroseconds (UInt64) — ‘max_remote_write_network_bandwidth’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_QueryLocalReadThrottlerBytes (UInt64) — ‘max_local_read_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_QueryLocalReadThrottlerSleepMicroseconds (UInt64) — ‘max_local_read_bandwidth’ のスロットリングに従うために、クエリが待機していた合計時間。
  • ProfileEvent_QueryLocalWriteThrottlerBytes (UInt64) — ‘max_local_write_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_QueryLocalWriteThrottlerSleepMicroseconds (UInt64) — ‘max_local_write_bandwidth’ のスロットリングに従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_QueryBackupThrottlerBytes (UInt64) — ‘max_backup_bandwidth’ スロットラーを通過したバイト数。
  • ProfileEvent_QueryBackupThrottlerSleepMicroseconds (UInt64) — ‘max_backup_bandwidth’ のスロットリングに従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_DistrCacheReadThrottlerBytes (UInt64) — ‘max_distributed_cache_read_bandwidth_for_server’ スロットラーを通過したバイト数。
  • ProfileEvent_DistrCacheReadThrottlerSleepMicroseconds (UInt64) — ‘max_distributed_cache_read_bandwidth_for_server’ のスロットリングに従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_DistrCacheWriteThrottlerBytes (UInt64) — ‘max_distributed_cache_write_bandwidth_for_server’ スロットラーを通過したバイト数。
  • ProfileEvent_DistrCacheWriteThrottlerSleepMicroseconds (UInt64) — ‘max_distributed_cache_write_bandwidth_for_server’ のスロットリングに従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_ThrottlerSleepMicroseconds (UInt64) — すべてのスロットリング設定に従うためにクエリがスリープしていた合計時間。
  • ProfileEvent_ReadTasksWithAppliedPatches (UInt64) — 何らかのパッチパートが適用された読み取りタスクの総数
  • ProfileEvent_PatchesAppliedInAllReadTasks (UInt64) — すべての読み取りタスクにおいて適用されたパッチパートの総数
  • ProfileEvent_PatchesMergeAppliedInAllReadTasks (UInt64) — すべての読み取りタスクにおいて Merge モードで適用されたパッチパートの総数
  • ProfileEvent_PatchesJoinAppliedInAllReadTasks (UInt64) — すべての読み取りタスクにおいて Join モードで適用されたパッチパートの総数
  • ProfileEvent_PatchesReadRows (UInt64) — パッチパートから読み取られた行の総数
  • ProfileEvent_PatchesReadUncompressedBytes (UInt64) — パッチパートから読み取られた非圧縮バイト数の総数
  • ProfileEvent_PatchesJoinRowsAddedToHashTable (UInt64) — Join モードでパッチパートを適用する際に hash table に追加された行の総数
  • ProfileEvent_ApplyPatchesMicroseconds (UInt64) — パッチパートをブロックに適用するのに費やされた合計時間
  • ProfileEvent_ReadPatchesMicroseconds (UInt64) — パッチパートの読み取りに費やされた合計時間
  • ProfileEvent_BuildPatchesMergeMicroseconds (UInt64) — Merge モードでパッチパートを適用するための索引の構築に費やされた合計時間
  • ProfileEvent_BuildPatchesJoinMicroseconds (UInt64) — Join モードでパッチパートを適用するための索引と hash table の構築に費やされた合計時間
  • ProfileEvent_AnalyzePatchRangesMicroseconds (UInt64) — パッチパートの索引の分析に費やされた合計時間
  • ProfileEvent_ReadTasksWithAppliedMutationsOnFly (UInt64) — 何らかの mutation がオンザフライで適用された読み取りタスクの総数
  • ProfileEvent_MutationsAppliedOnFlyInAllReadTasks (UInt64) — すべての読み取りタスクにおいてオンザフライで適用された mutation の総数
  • ProfileEvent_PatchesAcquireLockTries (UInt64) — 論理更新の実行に必要なロック取得の試行回数の総数
  • ProfileEvent_PatchesAcquireLockMicroseconds (UInt64) — 論理更新の実行でロックの取得に費やした合計マイクロ秒数
  • ProfileEvent_DiskObjectStorageWaitBlobRemovalMicroseconds (UInt64) — メタデータトランザクションの commit 後に、保留中のブロブ削除の完了を待機した時間
  • ProfileEvent_SchedulerIOReadRequests (UInt64) — I/O 読み取りについて scheduler を通過したリソース要求数。
  • ProfileEvent_SchedulerIOReadBytes (UInt64) — I/O 読み取りについて scheduler を通過したバイト数。
  • ProfileEvent_SchedulerIOReadWaitMicroseconds (UInt64) — クエリが I/O 読み取り用のリソース要求を待機していた合計時間。
  • ProfileEvent_SchedulerIOWriteRequests (UInt64) — I/O 書き込みについて scheduler を通過したリソース要求数。
  • ProfileEvent_SchedulerIOWriteBytes (UInt64) — I/O 書き込みについて scheduler を通過したバイト数。
  • ProfileEvent_SchedulerIOWriteWaitMicroseconds (UInt64) — クエリが I/O 書き込み用のリソース要求を待機していた合計時間。
  • ProfileEvent_QueryMaskingRulesMatch (UInt64) — クエリマスキングルールに正常に一致した回数。
  • ProfileEvent_ReplicatedPartFetches (UInt64) — ReplicatedMergeTree テーブルのレプリカからデータパーツをダウンロードした回数。
  • ProfileEvent_ReplicatedPartFailedFetches (UInt64) — ReplicatedMergeTree テーブルのレプリカからデータパーツをダウンロードできなかった回数。
  • ProfileEvent_ObsoleteReplicatedParts (UInt64) — データパーツが、レプリカから fetch した別のデータパーツに包含された回数 (この場合、包含されたデータパーツは廃止されたものとしてマークされ、不要になります) 。
  • ProfileEvent_ReplicatedPartMerges (UInt64) — ReplicatedMergeTree テーブルのデータパーツが正常に merge された回数。
  • ProfileEvent_ReplicatedPartFetchesOfMerged (UInt64) — merge を自分で実行する代わりに、ReplicatedMergeTree テーブルのレプリカから、すでに merge 済みのパーツをダウンロードすることを選択した回数 (通常はネットワークトラフィックを節約するため、自分で merge する方を選びます) 。これは、merge を実行するためのソースパーツがすべてそろっていない場合や、データパーツが十分に古い場合に発生します。
  • ProfileEvent_ReplicatedPartMutations (UInt64) — ReplicatedMergeTree テーブルのデータパーツに mutation が正常に適用された回数。
  • ProfileEvent_ReplicatedPartChecks (UInt64) — レプリカ上のデータパーツに対して advanced search を実行する必要があった回数、または既存のデータパーツが必要かどうかを確認する必要があった回数。
  • ProfileEvent_ReplicatedPartChecksFailed (UInt64) — レプリカ上のデータパーツに対する advanced search で結果が得られなかった回数、または Unexpected なパーツが見つかって移動された回数。
  • ProfileEvent_ReplicatedDataLoss (UInt64) — 必要としていたデータパーツがどのレプリカにも存在しなかった回数 (現在オフラインのレプリカも含む) 。それらのデータパーツは確実に失われています。これは非同期レプリケーション (クォーラム inserts が有効になっていない場合) では正常に起こりうるもので、データパーツの書き込み先レプリカが Failed し、その後オンラインに戻ってもそのデータパーツを保持していない場合に発生します。
  • ProfileEvent_ReplicatedCoveredPartsInZooKeeperOnStart (UInt64) — debugging 用。包含元のパーツがある一方でディスク上には存在しない ZooKeeper 内のパーツ数。server 起動時に確認されます。
  • ProfileEvent_QuorumParts (UInt64) — クォーラム付きで書き込まれたデータパーツ数。sync insert では 1 パーツとして数えられ、非同期 INSERT を flush する insert では、最大で非同期 INSERT の回数分まで数えられる場合があります。
  • ProfileEvent_QuorumWaitMicroseconds (UInt64) — inserts 中にクォーラムを待機していた合計時間。
  • ProfileEvent_QuorumFailedInserts (UInt64) — クォーラムに達しなかったために失敗した inserts 数。
  • ProfileEvent_InsertedRows (UInt64) — すべてのテーブルに INSERT された行数。
  • ProfileEvent_InsertedBytes (UInt64) — すべてのテーブルに INSERT されたバイト数 (非圧縮。メモリ上に格納されている状態のカラムに対する値) 。
  • ProfileEvent_DelayedInserts (UInt64) — パーティション内のアクティブな data part 数が多いために、MergeTree テーブルへの block の INSERT が抑制された回数。
  • ProfileEvent_RejectedInserts (UInt64) — パーティション内のアクティブな data part 数が多いために、MergeTree テーブルへの block の INSERT が ‘Too many parts’ 例外で拒否された回数。
  • ProfileEvent_DelayedInsertsMilliseconds (UInt64) — パーティション内のアクティブな data part 数が多いために、MergeTree テーブルへの block の INSERT が抑制されていた合計 Milliseconds。
  • ProfileEvent_DelayedMutations (UInt64) — テーブル内の未完了 mutation 数が多いために、MergeTree テーブルの mutation が抑制された回数。
  • ProfileEvent_RejectedMutations (UInt64) — テーブル内の未完了 mutation 数が多いために、MergeTree テーブルの mutation が ‘Too many mutations’ 例外で拒否された回数。
  • ProfileEvent_DelayedMutationsMilliseconds (UInt64) — テーブル内の未完了 mutation 数が多いために、MergeTree テーブルの mutation が抑制されていた合計 Milliseconds。
  • ProfileEvent_RejectedLightweightUpdates (UInt64) — patches 内の非圧縮バイト数が多すぎるために、論理更新が拒否された回数。
  • ProfileEvent_DistributedDelayedInserts (UInt64) — 保留中のバイト数が多いために、分散テーブルへの block の INSERT が抑制された回数。
  • ProfileEvent_DistributedRejectedInserts (UInt64) — 保留中のバイト数が多いために、分散テーブルへの block の INSERT が ‘Too many bytes’ 例外で拒否された回数。
  • ProfileEvent_DistributedDelayedInsertsMilliseconds (UInt64) — 保留中のバイト数が多いために、分散テーブルへの block の INSERT が抑制されていた合計 Milliseconds。
  • ProfileEvent_DuplicatedInsertedBlocks (UInt64) — *MergeTree テーブルへの同期 INSERT のうち、重複排除された数。
  • ProfileEvent_SelfDuplicatedAsyncInserts (UInt64) — ReplicatedMergeTree テーブルに INSERT された block 内の非同期 INSERT のうち、自己重複排除された数。
  • ProfileEvent_DuplicatedAsyncInserts (UInt64) — ReplicatedMergeTree テーブルに INSERT された block 内の非同期 INSERT のうち、重複排除された数。
  • ProfileEvent_DuplicationElapsedMicroseconds (UInt64) — *MergeTree テーブルに INSERT された block の重複確認に費やされた合計時間。
  • ProfileEvent_ZooKeeperInit (UInt64) — ZooKeeper との connection が確立された回数。
  • ProfileEvent_ZooKeeperTransactions (UInt64) — 読み取り・書き込み操作および複数トランザクションを含む ZooKeeper 操作の回数。
  • ProfileEvent_ZooKeeperList (UInt64) — ZooKeeper への ‘list’ (getChildren) リクエスト回数。
  • ProfileEvent_ZooKeeperListRecursive (UInt64) — ZooKeeper への ‘listRecursive’ リクエスト回数。
  • ProfileEvent_ZooKeeperCreate (UInt64) — ZooKeeper への ‘create’ リクエスト回数。
  • ProfileEvent_ZooKeeperRemove (UInt64) — ZooKeeper への ‘remove’ リクエスト回数。
  • ProfileEvent_ZooKeeperExists (UInt64) — ZooKeeper への ‘exists’ リクエスト回数。
  • ProfileEvent_ZooKeeperGet (UInt64) — ZooKeeper への get リクエスト数。
  • ProfileEvent_ZooKeeperSet (UInt64) — ZooKeeper への set リクエスト数。
  • ProfileEvent_ZooKeeperMulti (UInt64) — ZooKeeper への multi リクエスト数 (複合トランザクション) 。
  • ProfileEvent_ZooKeeperMultiRead (UInt64) — ZooKeeper への読み取り multi リクエスト数 (複合トランザクション) 。
  • ProfileEvent_ZooKeeperMultiWrite (UInt64) — ZooKeeper への書き込み multi リクエスト数 (複合トランザクション) 。
  • ProfileEvent_ZooKeeperCheck (UInt64) — ZooKeeper への check リクエスト数。通常、これらは単独では意味をなさず、複雑なトランザクションの一部としてのみ使われます。
  • ProfileEvent_ZooKeeperSync (UInt64) — ZooKeeper への sync リクエスト数。これらのリクエストが必要になったり有用だったりすることはまれです。
  • ProfileEvent_ZooKeeperReconfig (UInt64) — ZooKeeper への reconfig リクエスト数。
  • ProfileEvent_ZooKeeperClose (UInt64) — ZooKeeper との接続が自発的に閉じられた回数。
  • ProfileEvent_ZooKeeperGetACL (UInt64) — ZooKeeper への getACL リクエスト数。
  • ProfileEvent_ZooKeeperWatchResponse (UInt64) — ZooKeeper から watch 通知を受信した回数。
  • ProfileEvent_ZooKeeperUserExceptions (UInt64) — ZooKeeper の操作中に、データ関連で発生した例外数 (ノードが存在しない、バージョン不一致など) 。
  • ProfileEvent_ZooKeeperHardwareExceptions (UInt64) — ZooKeeper の操作中に、ネットワーク関連で発生した例外数 (接続喪失など) 。
  • ProfileEvent_ZooKeeperOtherExceptions (UInt64) — ZooKeeper の操作中に発生した、ZooKeeperUserExceptions および ZooKeeperHardwareExceptions 以外の例外数。
  • ProfileEvent_ZooKeeperWaitMicroseconds (UInt64) — リクエスト作成後、ZooKeeper からの応答待ちに費やしたマイクロ秒数。すべての要求元スレッドの合計です。
  • ProfileEvent_ZooKeeperBytesSent (UInt64) — ZooKeeper との通信中にネットワーク経由で送信したバイト数。
  • ProfileEvent_ZooKeeperBytesReceived (UInt64) — ZooKeeper との通信中にネットワーク経由で受信したバイト数。
  • ProfileEvent_DistributedConnectionTries (UInt64) — 分散接続の試行総数。
  • ProfileEvent_DistributedConnectionUsable (UInt64) — 使用可能なサーバー (必要なテーブルはあるが、古い可能性はある) への分散接続に成功した総数。
  • ProfileEvent_DistributedConnectionFailTry (UInt64) — 分散接続が再試行付きで失敗した総数。
  • ProfileEvent_DistributedConnectionMissingTable (UInt64) — 分散クエリでレプリカを除外した回数。クエリに必要なテーブルがそのレプリカになかったためです。
  • ProfileEvent_DistributedConnectionStaleReplica (UInt64) — 分散クエリでレプリカを除外した回数。クエリに必要なテーブルのいずれかで、レプリケーションラグが設定されたしきい値を超えていたためです。
  • ProfileEvent_DistributedConnectionSkipReadOnlyReplica (UInt64) — 分散テーブルへの INSERT 中に、レプリカが読み取り専用だったためスキップされた回数
  • ProfileEvent_DistributedConnectionFailAtAll (UInt64) — すべての再試行が完了した後も分散接続に失敗した総数。
  • ProfileEvent_Shards (UInt64) — クエリに関与した分片数。すべての分散テーブルおよびテーブル関数にまたがって合計されます。同じホストが複数のテーブルに現れる場合、そのホストは複数回カウントされます。この値は、skip_unavailable_shards 設定によってスキップされた分片を含む、想定される分片の総数を表します。
  • ProfileEvent_HedgedRequestsChangeReplica (UInt64) — ヘッジドリクエストで、レプリカ切り替え用タイムアウトが失効した回数の合計。
  • ProfileEvent_SuspendSendingQueryToShard (UInt64) — async_query_sending_for_remote が有効な場合に、分片へのクエリ送信が中断された回数の合計。
  • ProfileEvent_CompileFunction (UInt64) — 生成された LLVM コード (複雑な式の fused function を作成するためのもの) のコンパイルが開始された回数。
  • ProfileEvent_CompiledFunctionExecute (UInt64) — コンパイル済み関数が実行された回数。
  • ProfileEvent_CompileExpressionsMicroseconds (UInt64) — 式を LLVM コードにコンパイルするのに費やされた合計時間。
  • ProfileEvent_CompileExpressionsBytes (UInt64) — 式のコンパイルに使用されたバイト数。
  • ProfileEvent_ExecuteShellCommand (UInt64) — シェルコマンドが実行された回数。
  • ProfileEvent_ExternalProcessingCompressedBytesTotal (UInt64) — 外部処理 (ソート / 集約 / JOIN) によって書き込まれた圧縮バイト数。
  • ProfileEvent_ExternalProcessingUncompressedBytesTotal (UInt64) — 外部処理 (ソート / 集約 / JOIN) によって書き込まれたデータ量 (非圧縮、圧縮前) 。
  • ProfileEvent_ExternalProcessingFilesTotal (UInt64) — 外部処理 (ソート / 集約 / JOIN) で使用されたファイル数。
  • ProfileEvent_ExternalSortWritePart (UInt64) — 外部メモリでソートを行うために、一時ファイルがディスクに書き込まれた回数。
  • ProfileEvent_ExternalSortMerge (UInt64) — 外部メモリでソートを行う際に、一時ファイルがマージされた回数。
  • ProfileEvent_ExternalSortCompressedBytes (UInt64) — 外部メモリでのソートのために書き込まれた圧縮バイト数。
  • ProfileEvent_ExternalSortUncompressedBytes (UInt64) — 外部メモリでのソートのために書き込まれたデータ量 (非圧縮、圧縮前) 。
  • ProfileEvent_ExternalAggregationWritePart (UInt64) — 外部メモリで集約を行うために、一時ファイルがディスクに書き込まれた回数。
  • ProfileEvent_ExternalAggregationMerge (UInt64) — 外部メモリで集約を行う際に、一時ファイルがマージされた回数。
  • ProfileEvent_ExternalAggregationCompressedBytes (UInt64) — 外部メモリでの集約のためにディスクへ書き込まれたバイト数。
  • ProfileEvent_ExternalAggregationUncompressedBytes (UInt64) — 外部メモリでの集約のためにディスクへ書き込まれたデータ量 (非圧縮、圧縮前) 。
  • ProfileEvent_ExternalJoinWritePart (UInt64) — 外部メモリで JOIN を行うために、一時ファイルがディスクに書き込まれた回数。
  • ProfileEvent_ExternalJoinMerge (UInt64) — 外部メモリで JOIN を行う際に、一時ファイルがマージされた回数。
  • ProfileEvent_ExternalJoinCompressedBytes (UInt64) — 外部メモリでの JOIN のために書き込まれた圧縮バイト数。
  • ProfileEvent_ExternalJoinUncompressedBytes (UInt64) — 外部メモリでの JOIN のために書き込まれたデータ量 (非圧縮、圧縮前) 。
  • ProfileEvent_IcebergPartitionPrunedFiles (UInt64) — Iceberg のパーティションプルーニングでスキップされたファイル数
  • ProfileEvent_IcebergTrivialCountOptimizationApplied (UInt64) — Iceberg の読み取り時に単純な count 最適化が適用された回数
  • ProfileEvent_IcebergVersionHintUsed (UInt64) — version-hint.text が使用された回数。
  • ProfileEvent_IcebergMinMaxIndexPrunedFiles (UInt64) — Iceberg で MinMax index を使用してスキップされたファイル数。
  • ProfileEvent_JoinBuildTableRowCount (UInt64) — JOIN 演算における build table の行の総数。
  • ProfileEvent_JoinProbeTableRowCount (UInt64) — JOIN 演算における probe table の行の総数。
  • ProfileEvent_JoinResultRowCount (UInt64) — JOIN 演算の結果の行の総数。
  • ProfileEvent_JoinNonJoinedTransformBlockCount (UInt64) — NonJoinedBlocksTransform によって出力されたブロック数。
  • ProfileEvent_JoinNonJoinedTransformRowCount (UInt64) — NonJoinedBlocksTransform によって出力された、JOIN されなかった行数。
  • ProfileEvent_JoinDelayedJoinedTransformBlockCount (UInt64) — DelayedJoinedBlocksWorkerTransform によって出力されたブロック数。
  • ProfileEvent_JoinDelayedJoinedTransformRowCount (UInt64) — DelayedJoinedBlocksWorkerTransform によって出力された行数。
  • ProfileEvent_JoinSpillingHashJoinSwitchedToGraceJoin (UInt64) — SpillingHashJoin において、メモリ制限により (Concurrent)HashJoin から GraceHashJoin に切り替えられた回数。
  • ProfileEvent_JoinReorderMicroseconds (UInt64) — JOIN の並べ替えアルゴリズムの実行に費やされた総時間。
  • ProfileEvent_JoinOptimizeMicroseconds (UInt64) — JOIN プラン最適化の実行に費やされた総時間。
  • ProfileEvent_QueryPlanOptimizeMicroseconds (UInt64) — クエリプラン最適化の実行に費やされた総時間。
  • ProfileEvent_DeltaLakePartitionPrunedFiles (UInt64) — Delta Lake のパーティション pruning 中にスキップされたファイル数。
  • ProfileEvent_DeltaLakeSnapshotInitializations (UInt64) — Delta Lake テーブルの snapshot が初期化された (object storage から読み込まれた) 回数。
  • ProfileEvent_DeltaLakeScannedFiles (UInt64) — Delta Lake の scan callbacks 中にスキャンされたファイル数。
  • ProfileEvent_SlowRead (UInt64) — ファイルからの読み取りが遅かった回数。これはシステムの過負荷を示します。閾値は read_backoff_* settings で制御されます。
  • ProfileEvent_ReadBackoff (UInt64) — 読み取りが遅かったために、クエリ処理 threads の数が減らされた回数。
  • ProfileEvent_ReplicaPartialShutdown (UInt64) — ZooKeeper で session の有効期限が切れたために、Replicated table が state を解放しなければならなかった回数。ZooKeeper が再び利用可能になるたびに、state は再初期化されます。
  • ProfileEvent_IndexAnalysisRounds (UInt64) — クエリ内で索引解析が実行された回数。
  • ProfileEvent_SelectedParts (UInt64) — MergeTree table から読み取る対象として選択された data parts の数。
  • ProfileEvent_SelectedPartsTotal (UInt64) — MergeTree table から読み取る対象を選択する前の data parts の総数。
  • ProfileEvent_SelectedRanges (UInt64) — MergeTree table から読み取る対象として選択された、すべての data parts にわたる (隣接しない) 範囲の数。
  • ProfileEvent_SelectedMarks (UInt64) — MergeTree table から読み取る対象として選択された marks (インデックスグラニュール) の数。
  • ProfileEvent_SelectedMarksTotal (UInt64) — MergeTree table から読み取る対象を選択する前の marks (インデックスグラニュール) の総数。
  • ProfileEvent_SelectedRows (UInt64) — すべてのテーブルから SELECT された行数。
  • ProfileEvent_SelectedBytes (UInt64) — すべてのテーブルから SELECT されたバイト数 (非圧縮、カラムがメモリ内に格納されている状態での値) 。
  • ProfileEvent_RowsReadByMainReader (UInt64) — メインリーダーが MergeTree テーブルから読み取った行数 (PREWHERE ステップ後) 。
  • ProfileEvent_RowsReadByPrewhereReaders (UInt64) — prewhere リーダーが MergeTree テーブルから読み取った行数 (合計) 。
  • ProfileEvent_LoadedDataParts (UInt64) — 初期化時に MergeTree テーブルによって読み込まれたデータパーツ数。
  • ProfileEvent_LoadedDataPartsMicroseconds (UInt64) — 初期化時のデータパーツ読み込みに MergeTree テーブルが費やした時間 (マイクロ秒) 。
  • ProfileEvent_FilteringMarksWithPrimaryKeyProcessedMarks (UInt64) — PK 解析中に処理されたマークの総数。
  • ProfileEvent_FilteringMarksWithPrimaryKeyMicroseconds (UInt64) — PK によるパーツのフィルタリングに費やした時間。
  • ProfileEvent_FilteringMarksWithSecondaryKeysMicroseconds (UInt64) — スキップ索引によるパーツのフィルタリングに費やした時間。
  • ProfileEvent_DistributedIndexAnalysisMicroseconds (UInt64) — 分散索引解析に費やした合計時間
  • ProfileEvent_DistributedIndexAnalysisScheduledReplicas (UInt64) — 分散索引解析がスケジュールされたレプリカ数 (ローカルレプリカは 1 回だけ計上)
  • ProfileEvent_DistributedIndexAnalysisReplicaUnavailable (UInt64) — フォールバックなしで、いずれかのレプリカで分散索引解析が失敗した回数 (接続中に失敗)
  • ProfileEvent_DistributedIndexAnalysisReplicaFallback (UInt64) — いずれかのレプリカで分散索引解析が失敗し、ローカルレプリカにフォールバックした回数
  • ProfileEvent_DistributedIndexAnalysisParts (UInt64) — 分散索引解析のために送信されたパーツ数
  • ProfileEvent_DistributedIndexAnalysisMissingParts (UInt64) — 分散索引解析中に見つからず、ローカルで解決されるパーツ数
  • ProfileEvent_WaitMarksLoadMicroseconds (UInt64) — マークの読み込みに費やした時間
  • ProfileEvent_BackgroundLoadingMarksTasks (UInt64) — マーク読み込み用バックグラウンドタスクの数
  • ProfileEvent_MarksTasksFromCache (UInt64) — すでに cache 内に存在していたため、マークが同期的に読み込まれた回数。
  • ProfileEvent_LoadingMarksTasksCanceled (UInt64) — マーク読み込み用バックグラウンドタスクがキャンセルされた回数
  • ProfileEvent_LoadedMarksFiles (UInt64) — 読み込まれたマークファイル数。
  • ProfileEvent_LoadedMarksCount (UInt64) — 読み込まれたマーク数 (全カラムの合計) 。
  • ProfileEvent_LoadedMarksMemoryBytes (UInt64) — 読み込まれたマークのメモリ内表現のサイズ。
  • ProfileEvent_MarkCacheEvictedBytes (UInt64) — mark cache から追い出されたバイト数。
  • ProfileEvent_MarkCacheEvictedMarks (UInt64) — mark cache から追い出されたマーク数。
  • ProfileEvent_MarkCacheEvictedFiles (UInt64) — mark cache から追い出されたマークファイル数。
  • ProfileEvent_LoadedPrimaryIndexFiles (UInt64) — 読み込まれたプライマリインデックスファイル数。
  • ProfileEvent_LoadedPrimaryIndexRows (UInt64) — 読み込まれた主キーの行数。
  • ProfileEvent_LoadedPrimaryIndexBytes (UInt64) — 読み込まれた主キーのバイト数。
  • ProfileEvent_Merge (UInt64) — 開始されたバックグラウンドマージの回数。
  • ProfileEvent_MergeSourceParts (UInt64) — マージ対象としてスケジュールされたソースパーツ数。
  • ProfileEvent_MergedRows (UInt64) — バックグラウンドマージのために読み取られた行数。これはマージ前の行数です。
  • ProfileEvent_MergedColumns (UInt64) — マージの水平ステージでマージされたカラム数。
  • ProfileEvent_GatheredColumns (UInt64) — マージの垂直ステージで収集されたカラム数。
  • ProfileEvent_MergedProjections (UInt64) — MergeTree のマージ中にマージされた (再構築ではない) プロジェクション数。
  • ProfileEvent_RebuiltProjections (UInt64) — MergeTree のマージ中にゼロから再構築されたプロジェクション数。
  • ProfileEvent_MergedUncompressedBytes (UInt64) — バックグラウンドマージのために読み取られた非圧縮バイト数 (メモリ内に格納されたカラムの状態での値) 。これはマージ前の値です。
  • ProfileEvent_MergeWrittenRows (UInt64) — マージ中に書き込まれた行数。
  • ProfileEvent_MergeTotalMilliseconds (UInt64) — バックグラウンドマージに費やされた合計時間
  • ProfileEvent_MergeExecuteMilliseconds (UInt64) — バックグラウンドマージの実行に費やされた合計稼働時間
  • ProfileEvent_MergeCommitMilliseconds (UInt64) — マージ結果のコミット (パーツ名の変更、チェックサムの検証、ZooKeeper の更新) に費やされた合計時間
  • ProfileEvent_MergeHorizontalStageTotalMilliseconds (UInt64) — バックグラウンドマージの水平ステージに費やされた合計時間
  • ProfileEvent_MergeHorizontalStageExecuteMilliseconds (UInt64) — バックグラウンドマージの水平ステージの実行に費やされた合計稼働時間
  • ProfileEvent_MergeVerticalStageTotalMilliseconds (UInt64) — バックグラウンドマージの垂直ステージに費やされた合計時間
  • ProfileEvent_MergeVerticalStageExecuteMilliseconds (UInt64) — バックグラウンドマージの垂直ステージの実行に費やされた合計稼働時間
  • ProfileEvent_MergeTextIndexStageTotalMilliseconds (UInt64) — バックグラウンドマージのテキスト索引ステージに費やされた合計時間
  • ProfileEvent_MergeTextIndexStageExecuteMilliseconds (UInt64) — バックグラウンドマージのテキスト索引ステージの実行に費やされた合計稼働時間
  • ProfileEvent_MergeProjectionStageTotalMilliseconds (UInt64) — バックグラウンドマージのプロジェクションステージに費やされた合計時間
  • ProfileEvent_MergeProjectionStageExecuteMilliseconds (UInt64) — バックグラウンドマージのプロジェクションステージの実行に費やされた合計稼働時間
  • ProfileEvent_MergePrewarmStageTotalMilliseconds (UInt64) — バックグラウンドマージのプリウォームステージに費やされた合計時間
  • ProfileEvent_MergePrewarmStageExecuteMilliseconds (UInt64) — バックグラウンドマージのプリウォームステージの実行に費やされた合計稼働時間
  • ProfileEvent_MergesRejectedByMemoryLimit (UInt64) — メモリ制限により拒否されたバックグラウンドマージの回数
  • ProfileEvent_MergingSortedMilliseconds (UInt64) — ソート済みカラムのマージに費やされた合計時間
  • ProfileEvent_AggregatingSortedMilliseconds (UInt64) — ソート済みカラムの集約に費やされた合計時間
  • ProfileEvent_CoalescingSortedMilliseconds (UInt64) — ソート済みカラムの結合に費やされた合計時間
  • ProfileEvent_CollapsingSortedMilliseconds (UInt64) — ソート済みカラムの折りたたみに費やされた合計時間
  • ProfileEvent_ReplacingSortedMilliseconds (UInt64) — ソート済みカラムの置換に費やされた合計時間
  • ProfileEvent_SummingSortedMilliseconds (UInt64) — ソート済みカラムの合計計算に費やされた合計時間
  • ProfileEvent_VersionedCollapsingSortedMilliseconds (UInt64) — ソート済みカラムのバージョン付き折りたたみに費やされた合計時間
  • ProfileEvent_GatheringColumnMilliseconds (UInt64) — 垂直マージ用にカラムを収集する際に費やされた合計時間
  • ProfileEvent_MutationTotalParts (UInt64) — mutation の適用が試みられたパーツの総数
  • ProfileEvent_MutationUntouchedParts (UInt64) — mutation の適用が試みられたものの、predicate に基づいて完全にスキップされたパーツの総数
  • ProfileEvent_MutationCreatedEmptyParts (UInt64) — mutation を実行する代わりに空のパーツへ置き換えられたパーツの総数
  • ProfileEvent_MutatedRows (UInt64) — mutation のために読み取られた行数。これは mutation 前の行数です
  • ProfileEvent_MutatedUncompressedBytes (UInt64) — mutation のために読み取られた非圧縮バイト数 (カラムがメモリ内に格納されている形式) 。これは mutation 前の値です。
  • ProfileEvent_MutationAffectedRowsUpperBound (UInt64) — mutation の影響を受けた行数の上限 (たとえば、UPDATE または DELETE mutation の predicate を満たす行数) 。実際の数はこれよりわずかに少ない場合があります
  • ProfileEvent_MutationTotalMilliseconds (UInt64) — mutation に費やされた合計時間。
  • ProfileEvent_MutationExecuteMilliseconds (UInt64) — mutation の実行に費やされた合計 busy time。
  • ProfileEvent_MutationCommitMilliseconds (UInt64) — mutation 結果のコミット (パーツ名の変更、チェックサムの検証、ZooKeeper の更新) に費やされた合計時間
  • ProfileEvent_MutationAllPartColumns (UInt64) — パーツ内のすべてのカラムを mutation する task が作成された回数
  • ProfileEvent_MutationSomePartColumns (UInt64) — パーツ内の一部のカラムを mutation する task が作成された回数
  • ProfileEvent_MutateTaskProjectionsCalculationMicroseconds (UInt64) — mutation におけるプロジェクションの計算に費やされた時間
  • ProfileEvent_MergeTreeDataWriterRows (UInt64) — MergeTree テーブルに INSERT された行数。
  • ProfileEvent_MergeTreeDataWriterUncompressedBytes (UInt64) — MergeTree テーブルに INSERT された非圧縮バイト数 (カラムがメモリ内に格納されている形式) 。
  • ProfileEvent_MergeTreeDataWriterCompressedBytes (UInt64) — MergeTree テーブルに INSERT されたデータについて、ファイルシステムに書き込まれたバイト数。
  • ProfileEvent_MergeTreeDataWriterBlocks (UInt64) — MergeTree テーブルに INSERT されたブロック数。各ブロックはレベル 0 のデータパーツを形成します。
  • ProfileEvent_MergeTreeDataWriterBlocksAlreadySorted (UInt64) — すでにソート済みとみなされた、MergeTree テーブルに INSERT されたブロック数。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — MergeMutate executor のタスクで executeStep() に費やされた時間。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskCancelMicroseconds (UInt64) — MergeMutate executor のタスクで cancel() に費やされた時間。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskResetMicroseconds (UInt64) — MergeMutate executor のタスクのリセットに費やされた時間。
  • ProfileEvent_MergeMutateBackgroundExecutorWaitMicroseconds (UInt64) — MergeMutate executor で完了待機に費やされた時間。
  • ProfileEvent_MoveBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — Move executor のタスクで executeStep() に費やされた時間。
  • ProfileEvent_MoveBackgroundExecutorTaskCancelMicroseconds (UInt64) — Move executor のタスクで cancel() に費やされた時間。
  • ProfileEvent_MoveBackgroundExecutorTaskResetMicroseconds (UInt64) — Move executor のタスクのリセットに費やされた時間。
  • ProfileEvent_MoveBackgroundExecutorWaitMicroseconds (UInt64) — Move executor で完了待機に費やされた時間。
  • ProfileEvent_FetchBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — Fetch executor のタスクで executeStep() に費やされた時間。
  • ProfileEvent_FetchBackgroundExecutorTaskCancelMicroseconds (UInt64) — Fetch executor のタスクで cancel() に費やされた時間。
  • ProfileEvent_FetchBackgroundExecutorTaskResetMicroseconds (UInt64) — Fetch executor のタスクのリセットに費やされた時間。
  • ProfileEvent_FetchBackgroundExecutorWaitMicroseconds (UInt64) — Fetch executor で完了待機に費やされた時間。
  • ProfileEvent_CommonBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — Common executor のタスクで executeStep() に費やされた時間。
  • ProfileEvent_CommonBackgroundExecutorTaskCancelMicroseconds (UInt64) — Common executor のタスクで cancel() に費やされた時間。
  • ProfileEvent_CommonBackgroundExecutorTaskResetMicroseconds (UInt64) — Common executor のタスクのリセットに費やされた時間。
  • ProfileEvent_CommonBackgroundExecutorWaitMicroseconds (UInt64) — Common executor で完了待機に費やされた時間。
  • ProfileEvent_MergeTreeDataWriterSkipIndicesCalculationMicroseconds (UInt64) — スキップインデックスの計算に費やされた時間
  • ProfileEvent_MergeTreeDataWriterStatisticsCalculationMicroseconds (UInt64) — 統計情報の計算に費やされた時間
  • ProfileEvent_MergeTreeDataWriterSortingBlocksMicroseconds (UInt64) — ブロックのソートに費やされた時間
  • ProfileEvent_MergeTreeDataWriterMergingBlocksMicroseconds (UInt64) — 入力ブロックのマージに費やされた時間 (特殊な MergeTree エンジン向け)
  • ProfileEvent_MergeTreeDataWriterProjectionsCalculationMicroseconds (UInt64) — プロジェクションの計算に費やされた時間
  • ProfileEvent_MergeTreeDataProjectionWriterSortingBlocksMicroseconds (UInt64) — ブロックのソートに費やされた時間 (プロジェクションでは、テーブルの sorting key とは異なるキーになる場合があります)
  • ProfileEvent_MergeTreeDataProjectionWriterMergingBlocksMicroseconds (UInt64) — ブロックのマージに費やされた時間
  • ProfileEvent_InsertedWideParts (UInt64) — ワイド形式で挿入されたパーツ数。
  • ProfileEvent_InsertedCompactParts (UInt64) — Compact 形式で挿入されたパーツ数。
  • ProfileEvent_MergedIntoWideParts (UInt64) — Wide 形式にマージされたパーツ数。
  • ProfileEvent_MergedIntoCompactParts (UInt64) — Compact 形式にマージされたパーツ数。
  • ProfileEvent_MergeTreeDataProjectionWriterRows (UInt64) — MergeTree テーブルのプロジェクションに INSERT された行数。
  • ProfileEvent_MergeTreeDataProjectionWriterUncompressedBytes (UInt64) — MergeTree テーブルのプロジェクションに INSERT された非圧縮バイト数 (カラムがメモリ内に格納されている状態での値) 。
  • ProfileEvent_MergeTreeDataProjectionWriterCompressedBytes (UInt64) — MergeTree テーブルのプロジェクションに INSERT されたデータについて、filesystem に書き込まれたバイト数。
  • ProfileEvent_MergeTreeDataProjectionWriterBlocks (UInt64) — MergeTree テーブルのプロジェクションに INSERT された block 数。各 block はレベル 0 の data part を形成します。
  • ProfileEvent_MergeTreeDataProjectionWriterBlocksAlreadySorted (UInt64) — MergeTree テーブルのプロジェクションに INSERT された block のうち、すでにソート済みだったものの数。
  • ProfileEvent_CannotRemoveEphemeralNode (UInt64) — ephemeral ノードの削除を試みた際に error が発生した回数。ZooKeeper ライブラリの実装では session が失効し、ノードは削除されることが保証されているため、これは issue ではありません。
  • ProfileEvent_RegexpWithMultipleNeedlesCreated (UInt64) — multiple needles を含む regular expression (VectorScan ライブラリ) がコンパイルされた回数。
  • ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheHit (UInt64) — multiple needles を含むコンパイル済み regular expression (VectorScan ライブラリ) をグローバル cache から取得した回数。
  • ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheMiss (UInt64) — multiple needles を含むコンパイル済み regular expression (VectorScan ライブラリ) をグローバル cache から取得できなかった回数。
  • ProfileEvent_RegexpLocalCacheHit (UInt64) — コンパイル済み regular expression をローカル cache から取得した回数。
  • ProfileEvent_RegexpLocalCacheMiss (UInt64) — コンパイル済み regular expression をローカル cache から取得できなかった回数。
  • ProfileEvent_ContextLock (UInt64) — Context のロックが取得された、または取得が試みられた回数。これはグローバルロックです。
  • ProfileEvent_ContextLockWaitMicroseconds (UInt64) — Context ロックの待機時間 (マイクロ秒)
  • ProfileEvent_StorageBufferFlush (UInt64) — ‘Buffer’ テーブル内の buffer が flush された回数。
  • ProfileEvent_StorageBufferErrorOnFlush (UInt64) — 宛先テーブルへの書き込み時の error により、‘Buffer’ テーブル内の buffer を flush できなかった回数。
  • ProfileEvent_StorageBufferPassedAllMinThresholds (UInt64) — ‘Buffer’ テーブル内の buffer を flush するための最小 thresholds の条件が満たされた回数。
  • ProfileEvent_StorageBufferPassedTimeMaxThreshold (UInt64) — ‘Buffer’ テーブル内の buffer を flush するための最大時間 threshold の条件が満たされた回数。
  • ProfileEvent_StorageBufferPassedRowsMaxThreshold (UInt64) — ‘Buffer’ テーブル内の buffer を flush するための最大 rows threshold の条件が満たされた回数。
  • ProfileEvent_StorageBufferPassedBytesMaxThreshold (UInt64) — ‘Buffer’ テーブル内の buffer を flush するための最大バイト threshold の条件が満たされた回数。
  • ProfileEvent_StorageBufferPassedTimeFlushThreshold (UInt64) — ‘Buffer’ テーブル内の buffer を flush するための、時間ベースのバックグラウンド専用 flush threshold に達した回数。これはエキスパート専用の metric です。これを読んでいて、エキスパートでない場合は、ここで読むのをやめてください。
  • ProfileEvent_StorageBufferPassedRowsFlushThreshold (UInt64) — ‘Buffer’ テーブルでバッファをフラッシュするための、行数に関するバックグラウンド専用のフラッシュしきい値に達した回数。これはエキスパート専用のメトリックです。エキスパートでない場合は、ここで読むのをやめてください。
  • ProfileEvent_StorageBufferPassedBytesFlushThreshold (UInt64) — ‘Buffer’ テーブルでバッファをフラッシュするための、バイト数に関するバックグラウンド専用のフラッシュしきい値に達した回数。これはエキスパート専用のメトリックです。エキスパートでない場合は、ここで読むのをやめてください。
  • ProfileEvent_StorageBufferLayerLockReadersWaitMilliseconds (UInt64) — 読み取り時に Buffer layer の待機に費やした時間。
  • ProfileEvent_StorageBufferLayerLockWritersWaitMilliseconds (UInt64) — 書き込み先として利用可能な Buffer layer の待機に費やした時間 (Buffer layer の調整に使用できます) 。
  • ProfileEvent_SystemLogErrorOnFlush (UInt64) — いずれかのシステムログの、対応するシステムテーブルへのフラッシュが失敗した回数。フラッシュは繰り返し試行されます。
  • ProfileEvent_DictCacheKeysRequested (UInt64) — ‘cache’ タイプの Dictionaries について、データソースに要求されたキーの数。
  • ProfileEvent_DictCacheKeysRequestedMiss (UInt64) — ‘cache’ タイプの Dictionaries について、データソースに要求されたものの、データソース内で見つからなかったキーの数。
  • ProfileEvent_DictCacheKeysRequestedFound (UInt64) — ‘cache’ タイプの Dictionaries について、データソースに要求され、データソース内で見つかったキーの数。
  • ProfileEvent_DictCacheKeysExpired (UInt64) — ‘cache’ タイプの Dictionaries でルックアップされ、cache 内で見つかったものの、古くなっていたキーの数。
  • ProfileEvent_DictCacheKeysNotFound (UInt64) — ‘cache’ タイプの Dictionaries でルックアップされたが、見つからなかったキーの数。
  • ProfileEvent_DictCacheKeysHit (UInt64) — ‘cache’ タイプの Dictionaries でルックアップされ、cache 内で見つかったキーの数。
  • ProfileEvent_DictCacheRequestTimeNs (UInt64) — ‘cache’ タイプの Dictionaries について、外部データソースへのクエリに費やしたナノ秒数。
  • ProfileEvent_DictCacheRequests (UInt64) — ‘cache’ タイプの Dictionaries について、外部データソースに対する一括リクエストの回数。
  • ProfileEvent_DictCacheLockWriteNs (UInt64) — ‘cache’ タイプの Dictionaries について、データ更新のための書き込みロック待機に費やしたナノ秒数。
  • ProfileEvent_DictCacheLockReadNs (UInt64) — ‘cache’ タイプの Dictionaries について、データをルックアップするための読み取りロック待機に費やしたナノ秒数。
  • ProfileEvent_DistributedSyncInsertionTimeoutExceeded (UInt64) — Distributed テーブルへの同期挿入中 (‘distributed_foreground_insert’ = 1) に、分片の待機でタイムアウトを超過した回数
  • ProfileEvent_DistributedAsyncInsertionFailures (UInt64) — Distributed テーブルへの非同期挿入で失敗した回数 (‘distributed_foreground_insert’ = 0)
  • ProfileEvent_DataAfterMergeDiffersFromReplica (UInt64) — マージ後のデータが他のレプリカ上のデータとバイト単位で同一ではなかった回数。これにはいくつかの理由が考えられます。
    1. サーバーの更新後に、より新しいバージョンの圧縮ライブラリを使用している。
    2. 別の圧縮方式を使用している。
    3. 圧縮アルゴリズムが決定論的でない (可能性はきわめて低い) 。
    4. コード内の論理エラーにより、マージアルゴリズムが決定論的でなくなっている。
    5. コードのバグにより、メモリ内のデータが破損している。
    6. ハードウェアの問題により、メモリ内のデータが破損している。
    7. サーバー起動後にソースデータを手動で変更した。
    8. ZooKeeper に保存されているチェックサムを手動で変更した。
    9. ‘enable_mixed_granularity_parts’ のようなパーツのフォーマット関連設定が、レプリカごとに異なっている。 サーバーはこの状況を正常に検出し、バイト単位で同一の結果を得るため、レプリカからマージ済みパーツをダウンロードします。
  • ProfileEvent_DataAfterMutationDiffersFromReplica (UInt64) — mutation 後のデータが他のレプリカ上のデータとバイト単位で一致しなかった回数。‘DataAfterMergeDiffersFromReplica’ で説明されている理由に加え、非決定論的な mutation が原因で発生することもあります。
  • ProfileEvent_PolygonsAddedToPool (UInt64) — ‘pointInPolygon’ 関数用の cache (pool) にポリゴンが追加された回数。
  • ProfileEvent_PolygonsInPoolAllocatedBytes (UInt64) — ‘pointInPolygon’ 関数用の cache (pool) に追加されたポリゴンに割り当てられたバイト数。
  • ProfileEvent_NaiveBayesClassifierModelsLoaded (UInt64) — 読み込まれた Naive Bayes Classifier モデルの数。
  • ProfileEvent_NaiveBayesClassifierModelsAllocatedBytes (UInt64) — Naive Bayes Classifier モデルに割り当てられたバイト数。
  • ProfileEvent_USearchAddCount (UInt64) — usearch 索引に追加されたベクトルの数。
  • ProfileEvent_USearchAddVisitedMembers (UInt64) — usearch 索引にベクトルを追加する際に訪問したノードの数。
  • ProfileEvent_USearchAddComputedDistances (UInt64) — usearch 索引にベクトルを追加する際に距離を計算した回数。
  • ProfileEvent_USearchSearchCount (UInt64) — usearch 索引で実行された検索操作の回数。
  • ProfileEvent_USearchSearchVisitedMembers (UInt64) — usearch 索引の検索時に訪問したノードの数。
  • ProfileEvent_USearchSearchComputedDistances (UInt64) — usearch 索引の検索時に距離を計算した回数。
  • ProfileEvent_RWLockAcquiredReadLocks (UInt64) — 読み取りロックを取得した回数 (heavy RWLock 内) 。
  • ProfileEvent_RWLockAcquiredWriteLocks (UInt64) — 書き込みロックを取得した回数 (heavy RWLock 内) 。
  • ProfileEvent_RWLockReadersWaitMilliseconds (UInt64) — 読み取りロックの取得待機に費やされた合計時間 (heavy RWLock 内) 。
  • ProfileEvent_RWLockWritersWaitMilliseconds (UInt64) — 書き込みロックの取得待機に費やされた合計時間 (heavy RWLock 内) 。
  • ProfileEvent_DNSError (UInt64) — DNS 名前解決で発生したエラーの総数
  • ProfileEvent_PartsLockHoldMicroseconds (UInt64) — MergeTree テーブルでデータパーツロックを保持していた合計時間
  • ProfileEvent_PartsLockWaitMicroseconds (UInt64) — MergeTree テーブルでデータパーツロックの取得待機に費やされた合計時間
  • ProfileEvent_PartsLocks (UInt64) — MergeTree テーブルでデータパーツロックを取得した回数
  • ProfileEvent_SharedPartsLockHoldMicroseconds (UInt64) — MergeTree テーブルで共有データパーツロックを保持していた合計時間
  • ProfileEvent_SharedPartsLockWaitMicroseconds (UInt64) — MergeTree テーブルで共有データパーツロックの取得待機に費やされた合計時間
  • ProfileEvent_SharedPartsLocks (UInt64) — MergeTree テーブルで共有データパーツロックを取得した回数
  • ProfileEvent_RealTimeMicroseconds (UInt64) — 処理スレッド (クエリやその他のタスク) で費やされた合計時間 (実時間) 。なお、これは合計値です。
  • ProfileEvent_UserTimeMicroseconds (UInt64) — 処理スレッド (クエリやその他のタスク) がユーザーモードで CPU 命令を実行するのに費やした合計時間。これには、メインメモリへのアクセス、cache ミス、ブランチ予測ミス、ハイパースレッディングなどにより CPU パイプラインが停止していた時間も含まれます。
  • ProfileEvent_SystemTimeMicroseconds (UInt64) — OSカーネルモードでCPU命令を実行する処理スレッド (クエリやその他のタスク) で費やされた合計時間です。これはシステムコールに費やされた時間であり、ブロッキングシステムコール中の待機時間は含みません。
  • ProfileEvent_MemoryOvercommitWaitTimeMicroseconds (UInt64) — OvercommitTracker でメモリが解放されるのを待機した合計時間です。
  • ProfileEvent_MemoryAllocatorPurge (UInt64) — メモリ アロケータ の purge が要求された合計回数
  • ProfileEvent_MemoryAllocatorPurgeTimeMicroseconds (UInt64) — メモリ アロケータ の purge に費やされた合計時間
  • ProfileEvent_SoftPageFaults (UInt64) — クエリ実行スレッドにおけるソフトページフォールト数です。ソフトページフォールトは通常、メモリ アロケータ の cache ミスを意味し、その場合は OS からの新しいメモリマッピングと、それに続く物理メモリページの割り当てが必要になります。
  • ProfileEvent_HardPageFaults (UInt64) — クエリ実行スレッドにおけるハードページフォールト数です。値が高い場合は、サーバーでスワップを無効化し忘れているか、非常に高いメモリ負荷時に ClickHouse バイナリのメモリページでエビクションが発生しているか、またはテーブルデータに対して ‘mmap’ 読み取りメソッドが正常に使用されていることを示します。
  • ProfileEvent_OSIOWaitMicroseconds (UInt64) — OS の観点で、スレッドが I/O 操作の結果を待機するために費やした合計時間です。これは page cache を含まない実際の I/O です。
  • ProfileEvent_OSCPUWaitMicroseconds (UInt64) — OS の観点で、スレッドが実行可能な状態にありながら、OS によってスケジューリングされるのを待っていた合計時間です。
  • ProfileEvent_OSCPUVirtualTimeMicroseconds (UInt64) — OS から見た CPU 時間です。仮想化による非自発的な待機は含みません。
  • ProfileEvent_OSReadBytes (UInt64) — ディスクまたはブロックデバイスから読み取られたバイト数です。page cache から読み取られたバイトは含みません。ブロックサイズや先読みなどにより、余分なデータが含まれる場合があります。
  • ProfileEvent_OSWriteBytes (UInt64) — ディスクまたはブロックデバイスに書き込まれたバイト数です。page cache の dirty pages 内にあるバイトは含みません。OS によって非同期に書き込まれたデータは含まれない場合があります。
  • ProfileEvent_OSReadChars (UInt64) — ファイルシステムから読み取られたバイト数です。page cache に加え、ネットワークやその他のファイルも含みます。
  • ProfileEvent_OSWriteChars (UInt64) — ファイルシステムに書き込まれたバイト数です。page cache に加え、ネットワークやその他のファイルも含みます。
  • ProfileEvent_ParallelReplicasHandleRequestMicroseconds (UInt64) — レプリカ からのマーク要求の処理に費やされた時間
  • ProfileEvent_ParallelReplicasHandleAnnouncementMicroseconds (UInt64) — レプリカ のアナウンスの処理に費やされた時間
  • ProfileEvent_ParallelReplicasAnnouncementMicroseconds (UInt64) — アナウンスの送信に費やされた時間
  • ProfileEvent_ParallelReplicasReadRequestMicroseconds (UInt64) — read request に費やされた時間
  • ProfileEvent_ParallelReplicasReadAssignedMarks (UInt64) — すべての レプリカ にわたり、scheduled marks のうちコンシステントハッシュによって割り当てられた数の合計
  • ProfileEvent_ParallelReplicasReadUnassignedMarks (UInt64) — すべての レプリカ にわたり、未割り当ての marks がスケジュールされた数の合計
  • ProfileEvent_ParallelReplicasReadAssignedForStealingMarks (UInt64) — すべての レプリカ にわたり、scheduled marks のうちコンシステントハッシュによって stealing 用に割り当てられた数の合計
  • ProfileEvent_ParallelReplicasReadMarks (UInt64) — 指定された レプリカ によって読み取られた marks の数
  • ProfileEvent_ParallelReplicasStealingByHashMicroseconds (UInt64) — hash による stealing の対象となる segments の収集に費やされた時間
  • ProfileEvent_ParallelReplicasProcessingPartsMicroseconds (UInt64) — データパーツの処理に費やされた時間
  • ProfileEvent_ParallelReplicasStealingLeftoversMicroseconds (UInt64) — 孤立したセグメントの収集に費やされた時間
  • ProfileEvent_ParallelReplicasCollectingOwnedSegmentsMicroseconds (UInt64) — hash によって割り当てられたセグメントの収集に費やされた時間
  • ProfileEvent_ParallelReplicasNumRequests (UInt64) — イニシエーターへのリクエスト数
  • ProfileEvent_ParallelReplicasDeniedRequests (UInt64) — イニシエーターへのリクエストが完全に拒否された回数
  • ProfileEvent_CacheWarmerBytesDownloaded (UInt64) — 専用のバックグラウンドスレッドによってファイルシステムキャッシュに取り込まれたデータ量
  • ProfileEvent_CacheWarmerDataPartsDownloaded (UInt64) — CacheWarmer によって完全に取得されたデータパーツ数
  • ProfileEvent_IgnoredColdParts (UInt64) — 設定 ignore_cold_parts_seconds を参照してください。読み取りクエリが、CacheWarmer にまだ cache へ取り込まれていない非常に新しいパーツを無視した回数
  • ProfileEvent_PreferredWarmedUnmergedParts (UInt64) — 設定 prefer_warmed_unmerged_parts_seconds を参照してください。読み取りクエリが、CacheWarmer にまだ cache へ取り込まれていないマージ済みパーツではなく、cache 内にあるマージ前の古いパーツを使用した回数
  • ProfileEvent_PerfCPUCycles (UInt64) — 総サイクル数。CPU のスケーリング時の挙動に注意してください
  • ProfileEvent_PerfInstructions (UInt64) — リタイア済み命令数。さまざまな要因、特にハードウェア割り込み回数の影響を受ける可能性があるため、注意してください
  • ProfileEvent_PerfCacheReferences (UInt64) — Cache アクセス数。通常は Last Level Cache へのアクセスを示しますが、CPU によって異なる場合があります。prefetches やコヒーレンシメッセージが含まれることもありますが、これも CPU の設計に依存します
  • ProfileEvent_PerfCacheMisses (UInt64) — Cache ミス数。通常は Last Level Cache ミスを示します。cache miss 率の計算では、PERFCOUNTHWCACHEREFERENCES イベントとあわせて使用することを意図しています
  • ProfileEvent_PerfBranchInstructions (UInt64) — リタイア済み分岐命令数。Linux 2.6.35 より前では、AMD プロセッサで誤ったイベントが使用されていました
  • ProfileEvent_PerfBranchMisses (UInt64) — 分岐予測ミスとなった命令数
  • ProfileEvent_PerfBusCycles (UInt64) — バスサイクル数。これは総サイクル数とは異なる場合があります
  • ProfileEvent_PerfStalledCyclesFrontend (UInt64) — issue 中に停止したサイクル数
  • ProfileEvent_PerfStalledCyclesBackend (UInt64) — リタイア中に停止したサイクル数
  • ProfileEvent_PerfRefCPUCycles (UInt64) — 総サイクル数。CPU の周波数スケーリングの影響を受けません
  • ProfileEvent_PerfCPUClock (UInt64) — CPU クロック。CPU ごとの高分解能タイマー
  • ProfileEvent_PerfTaskClock (UInt64) — 実行中のタスクに固有のクロックカウント
  • ProfileEvent_PerfContextSwitches (UInt64) — コンテキストスイッチ数
  • ProfileEvent_PerfCPUMigrations (UInt64) — プロセスが新しい CPU へ移動した回数
  • ProfileEvent_PerfAlignmentFaults (UInt64) — アラインメントフォールト数。これは、アラインされていないメモリアクセスが発生した場合に起こります。カーネルはこれを処理できますが、性能は低下します。これは一部のアーキテクチャでのみ発生します (x86 では発生しません)
  • ProfileEvent_PerfEmulationFaults (UInt64) — エミュレーションフォールト数。カーネルは、未実装の命令をトラップしてユーザー空間向けにエミュレートすることがあります。これは性能に悪影響を与える可能性があります
  • ProfileEvent_PerfMinEnabledTime (UInt64) — すべてのイベントのうち、イベントが有効化されていた最小時間。イベント多重化の影響を追跡するために使用されます
  • ProfileEvent_PerfMinEnabledRunningTime (UInt64) — 有効化時間が最小のイベントの実行時間。イベント多重化の度合いを追跡するために使用されます
  • ProfileEvent_PerfDataTLBReferences (UInt64) — Data TLB の参照数
  • ProfileEvent_PerfDataTLBMisses (UInt64) — Data TLB のミス数
  • ProfileEvent_PerfInstructionTLBReferences (UInt64) — Instruction TLB の参照数
  • ProfileEvent_PerfInstructionTLBMisses (UInt64) — Instruction TLB のミス数
  • ProfileEvent_PerfLocalMemoryReferences (UInt64) — ローカル NUMA ノードメモリの読み取り数
  • ProfileEvent_PerfLocalMemoryMisses (UInt64) — ローカル NUMA ノードメモリ読み取りのミス数
  • ProfileEvent_CannotWriteToWriteBufferDiscard (UInt64) — パイプがいっぱいであるか、パイプに書き込めないために、クエリプロファイラまたはシグナルハンドラーによって破棄されたスタックトレース数。
  • ProfileEvent_QueryProfilerSignalOverruns (UInt64) — オーバーランによりクエリプロファイラのシグナル処理を破棄した回数と、オーバーランにより OS が配信しなかったシグナル数の合計。
  • ProfileEvent_QueryProfilerConcurrencyOverruns (UInt64) — 他のスレッドで同時実行中のクエリプロファイラが多すぎるために、クエリプロファイラのシグナル処理を破棄した回数。過負荷の可能性があります。
  • ProfileEvent_QueryProfilerRuns (UInt64) — クエリプロファイラが実行された回数。
  • ProfileEvent_QueryProfilerErrors (UInt64) — 非同期スタックアンワインド中に発生した無効なメモリアクセス数。
  • ProfileEvent_CreatedLogEntryForMerge (UInt64) — ReplicatedMergeTree でパーツをマージするためのログエントリの作成に成功した回数。
  • ProfileEvent_NotCreatedLogEntryForMerge (UInt64) — 別のレプリカによる同時ログ更新のため、ReplicatedMergeTree でパーツをマージするためのログエントリが作成されなかった回数。
  • ProfileEvent_CreatedLogEntryForMutation (UInt64) — ReplicatedMergeTree でパーツをミューテーションするためのログエントリの作成に成功した回数。
  • ProfileEvent_NotCreatedLogEntryForMutation (UInt64) — 別のレプリカによる同時ログ更新のため、ReplicatedMergeTree でパーツをミューテーションするためのログエントリが作成されなかった回数。
  • ProfileEvent_S3ReadMicroseconds (UInt64) — S3 ストレージへの GET および HEAD リクエストにかかった時間。
  • ProfileEvent_S3ReadRequestsCount (UInt64) — S3 ストレージへの GET および HEAD リクエスト数。
  • ProfileEvent_S3ReadRequestsErrors (UInt64) — S3 ストレージへの GET および HEAD リクエストにおける、スロットリング以外のエラー数。
  • ProfileEvent_S3ReadRequestsThrottling (UInt64) — S3 ストレージへの GET および HEAD リクエストにおける、429 および 503 エラー数。
  • ProfileEvent_S3ReadRequestsRedirects (UInt64) — S3 ストレージへの GET および HEAD リクエストにおけるリダイレクト数。
  • ProfileEvent_S3ReadRequestAttempts (UInt64) — GET および HEAD リクエストの試行回数。初回の試行とすべての再試行を含みますが、S3 の再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_S3ReadRequestRetryableErrors (UInt64) — GET および HEAD リクエストにおける再試行可能なエラー数。S3 の再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_S3WriteMicroseconds (UInt64) — S3 ストレージへの POST、DELETE、PUT、および PATCH リクエストにかかった時間。
  • ProfileEvent_S3WriteRequestsCount (UInt64) — S3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストの数。
  • ProfileEvent_S3WriteRequestsErrors (UInt64) — S3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、スロットリング以外のエラー数。
  • ProfileEvent_S3WriteRequestsThrottling (UInt64) — S3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、429 および 503 エラーの数。
  • ProfileEvent_S3WriteRequestsRedirects (UInt64) — S3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、リダイレクトの数。
  • ProfileEvent_S3WriteRequestAttempts (UInt64) — POST、DELETE、PUT、および PATCH リクエストの試行回数。初回の試行とすべての再試行を含みますが、再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_S3WriteRequestRetryableErrors (UInt64) — POST、DELETE、PUT、および PATCH リクエストにおける再試行可能なエラー数。再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_DiskS3ReadMicroseconds (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストの所要時間。
  • ProfileEvent_DiskS3ReadRequestsCount (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストの数。
  • ProfileEvent_DiskS3ReadRequestsErrors (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストにおける、スロットリング以外のエラー数。
  • ProfileEvent_DiskS3ReadRequestsThrottling (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストにおける、429 および 503 エラーの数。
  • ProfileEvent_DiskS3ReadRequestsRedirects (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストにおける、リダイレクトの数。
  • ProfileEvent_DiskS3ReadRequestAttempts (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストの試行回数。初回の試行とすべての再試行を含みますが、S3 再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_DiskS3ReadRequestRetryableErrors (UInt64) — DiskS3 ストレージに対する GET および HEAD リクエストにおける再試行可能なエラー数。S3 再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_DiskS3WriteMicroseconds (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストの所要時間。
  • ProfileEvent_DiskS3WriteRequestsCount (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストの数。
  • ProfileEvent_DiskS3WriteRequestsErrors (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、スロットリング以外のエラー数。
  • ProfileEvent_DiskS3WriteRequestsThrottling (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、429 および 503 エラーの数。
  • ProfileEvent_DiskS3WriteRequestsRedirects (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける、リダイレクトの数。
  • ProfileEvent_DiskS3WriteRequestAttempts (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストの試行回数。初回の試行とすべての再試行を含みますが、再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_DiskS3WriteRequestRetryableErrors (UInt64) — DiskS3 ストレージに対する POST、DELETE、PUT、および PATCH リクエストにおける再試行可能なエラー数。再試行戦略によって内部的に実行される再試行は含みません
  • ProfileEvent_S3DeleteObjects (UInt64) — S3 API の DeleteObject(s) 呼び出し回数。
  • ProfileEvent_S3CopyObject (UInt64) — S3 API の CopyObject 呼び出し回数。
  • ProfileEvent_S3ListObjects (UInt64) — S3 API の ListObjects 呼び出し回数。
  • ProfileEvent_S3HeadObject (UInt64) — S3 API の HeadObject 呼び出し回数。
  • ProfileEvent_S3GetObjectTagging (UInt64) — S3 API の GetObjectTagging 呼び出し回数。
  • ProfileEvent_S3CreateMultipartUpload (UInt64) — S3 API の CreateMultipartUpload 呼び出し回数。
  • ProfileEvent_S3UploadPartCopy (UInt64) — S3 API の UploadPartCopy 呼び出し回数。
  • ProfileEvent_S3UploadPart (UInt64) — S3 API の UploadPart 呼び出し回数。
  • ProfileEvent_S3AbortMultipartUpload (UInt64) — S3 API の AbortMultipartUpload 呼び出し回数。
  • ProfileEvent_S3CompleteMultipartUpload (UInt64) — S3 API の CompleteMultipartUpload 呼び出し回数。
  • ProfileEvent_S3PutObject (UInt64) — S3 API の PutObject 呼び出し回数。
  • ProfileEvent_S3GetObject (UInt64) — S3 API の GetObject 呼び出し回数。
  • ProfileEvent_DiskS3DeleteObjects (UInt64) — DiskS3 API の DeleteObject(s) 呼び出し回数。
  • ProfileEvent_DiskS3CopyObject (UInt64) — DiskS3 API の CopyObject 呼び出し回数。
  • ProfileEvent_DiskS3ListObjects (UInt64) — DiskS3 API の ListObjects 呼び出し回数。
  • ProfileEvent_DiskS3HeadObject (UInt64) — DiskS3 API の HeadObject 呼び出し回数。
  • ProfileEvent_DiskS3GetObjectTagging (UInt64) — DiskS3 API の GetObjectTagging 呼び出し回数。
  • ProfileEvent_DiskS3CreateMultipartUpload (UInt64) — DiskS3 API の CreateMultipartUpload 呼び出し回数。
  • ProfileEvent_DiskS3UploadPartCopy (UInt64) — DiskS3 API の UploadPartCopy 呼び出し回数。
  • ProfileEvent_DiskS3UploadPart (UInt64) — DiskS3 API の UploadPart 呼び出し回数。
  • ProfileEvent_DiskS3AbortMultipartUpload (UInt64) — DiskS3 API の AbortMultipartUpload 呼び出し回数。
  • ProfileEvent_DiskS3CompleteMultipartUpload (UInt64) — DiskS3 API の CompleteMultipartUpload 呼び出し回数。
  • ProfileEvent_DiskS3PutObject (UInt64) — DiskS3 API の PutObject 呼び出し回数。
  • ProfileEvent_DiskS3GetObject (UInt64) — DiskS3 API の GetObject 呼び出し回数。
  • ProfileEvent_DiskPlainRewritableAzureDirectoryCreated (UInt64) — AzureObjectStorage 用の ‘plain_rewritable’ メタデータストレージで作成されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableAzureDirectoryRemoved (UInt64) — AzureObjectStorage 用の ‘plain_rewritable’ メタデータストレージで削除されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableLocalDirectoryCreated (UInt64) — LocalObjectStorage 用の ‘plain_rewritable’ メタデータストレージで作成されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableLocalDirectoryRemoved (UInt64) — LocalObjectStorage 用の ‘plain_rewritable’ メタデータストレージで削除されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableS3DirectoryCreated (UInt64) — S3ObjectStorage の ‘plain_rewritable’ メタデータストレージによって作成されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableS3DirectoryRemoved (UInt64) — S3ObjectStorage の ‘plain_rewritable’ メタデータストレージによって削除されたディレクトリ数。
  • ProfileEvent_DiskPlainRewritableLegacyLayoutDiskCount (UInt64) — レガシーレイアウトの ‘plain_rewritable’ ディスク数。
  • ProfileEvent_S3Clients (UInt64) — 作成された S3 クライアント数。
  • ProfileEvent_TinyS3Clients (UInt64) — 別のクライアントの既存の認証プロバイダーを再利用する S3 クライアントのコピー数。
  • ProfileEvent_EngineFileLikeReadFiles (UInt64) — ファイルを扱うテーブルエンジン (File/S3/URL/HDFS など) で読み取られたファイル数。
  • ProfileEvent_ReadBufferFromS3Microseconds (UInt64) — S3 からの読み取りに費やした時間。
  • ProfileEvent_ReadBufferFromS3InitMicroseconds (UInt64) — S3 への接続の初期化に費やした時間。
  • ProfileEvent_ReadBufferFromS3Bytes (UInt64) — S3 から読み取られたバイト数。
  • ProfileEvent_ReadBufferFromS3RequestsErrors (UInt64) — S3 からの読み取り中に発生した例外数。
  • ProfileEvent_WriteBufferFromS3Microseconds (UInt64) — S3 への書き込みに費やした時間。
  • ProfileEvent_WriteBufferFromS3Bytes (UInt64) — S3 に書き込まれたバイト数。
  • ProfileEvent_WriteBufferFromS3RequestsErrors (UInt64) — S3 への書き込み中に発生した例外数。
  • ProfileEvent_WriteBufferFromS3WaitInflightLimitMicroseconds (UInt64) — リクエスト数が s3_max_inflight_parts_for_one_file で定義された上限に達した際に、進行中のリクエストの一部が完了するまで待機していた時間。
  • ProfileEvent_QueryMemoryLimitExceeded (UInt64) — クエリがメモリ制限を超えた回数。
  • ProfileEvent_MemoryAllocatedWithoutCheck (UInt64) — メモリ制約を確認せずにメモリが割り当てられた回数。
  • ProfileEvent_MemoryAllocatedWithoutCheckBytes (UInt64) — メモリ制約を確認せずに割り当てられたバイト数。
  • ProfileEvent_AzureGetObject (UInt64) — Azure API GetObject 呼び出し回数。
  • ProfileEvent_AzureUpload (UInt64) — Azure Blob Storage API Upload 呼び出し回数
  • ProfileEvent_AzureStageBlock (UInt64) — Azure Blob Storage API StageBlock 呼び出し回数
  • ProfileEvent_AzureCommitBlockList (UInt64) — Azure Blob Storage API CommitBlockList 呼び出し回数
  • ProfileEvent_AzureCopyObject (UInt64) — Azure Blob Storage API CopyObject 呼び出し回数
  • ProfileEvent_AzureDeleteObjects (UInt64) — Azure Blob Storage API DeleteObject(s) 呼び出し回数。
  • ProfileEvent_AzureListObjects (UInt64) — Azure Blob Storage API ListObjects 呼び出し回数。
  • ProfileEvent_AzureGetProperties (UInt64) — Azure Blob Storage API GetProperties 呼び出し回数。
  • ProfileEvent_AzureCreateContainer (UInt64) — Azure blob storage API の CreateContainer 呼び出し回数。
  • ProfileEvent_DiskAzureGetObject (UInt64) — Disk Azure API の GetObject 呼び出し回数。
  • ProfileEvent_DiskAzureUpload (UInt64) — Disk Azure blob storage API の Upload 呼び出し回数
  • ProfileEvent_DiskAzureStageBlock (UInt64) — Disk Azure blob storage API の StageBlock 呼び出し回数
  • ProfileEvent_DiskAzureCommitBlockList (UInt64) — Disk Azure blob storage API の CommitBlockList 呼び出し回数
  • ProfileEvent_DiskAzureCopyObject (UInt64) — Disk Azure blob storage API の CopyObject 呼び出し回数
  • ProfileEvent_DiskAzureListObjects (UInt64) — Disk Azure blob storage API の ListObjects 呼び出し回数。
  • ProfileEvent_DiskAzureDeleteObjects (UInt64) — Azure blob storage API の DeleteObject(s) 呼び出し回数。
  • ProfileEvent_DiskAzureGetProperties (UInt64) — Disk Azure blob storage API の GetProperties 呼び出し回数。
  • ProfileEvent_DiskAzureCreateContainer (UInt64) — Disk Azure blob storage API の CreateContainer 呼び出し回数。
  • ProfileEvent_ReadBufferFromAzureMicroseconds (UInt64) — Azure からの読み取りに費やした時間。
  • ProfileEvent_ReadBufferFromAzureInitMicroseconds (UInt64) — Azure への接続の初期化に費やした時間。
  • ProfileEvent_ReadBufferFromAzureBytes (UInt64) — Azure から読み取ったバイト数。
  • ProfileEvent_ReadBufferFromAzureRequestsErrors (UInt64) — Azure からの読み取り中に発生した例外の回数
  • ProfileEvent_CachedReadBufferReadFromCacheHits (UInt64) — ファイルシステムキャッシュからの読み取りがキャッシュヒットした回数。
  • ProfileEvent_CachedReadBufferReadFromCacheMisses (UInt64) — ファイルシステムキャッシュからの読み取りがキャッシュミスした回数。
  • ProfileEvent_CachedReadBufferReadFromSourceMicroseconds (UInt64) — filesystem cache source (リモートファイルシステム など) からの読み取りにかかった時間
  • ProfileEvent_CachedReadBufferWaitReadBufferMicroseconds (UInt64) — 内部読み取りバッファの待機に費やした時間 (キャッシュの待機を含む)
  • ProfileEvent_CachedReadBufferPredownloadedFromSourceMicroseconds (UInt64) — 事前ダウンロードのために filesystem cache source (リモートファイルシステム など) から読み取った時間
  • ProfileEvent_CachedReadBufferReadFromCacheMicroseconds (UInt64) — ファイルシステムキャッシュからの読み取りにかかった時間
  • ProfileEvent_CachedReadBufferReadFromSourceBytes (UInt64) — filesystem cache source (remote fs など) から読み取ったバイト数
  • ProfileEvent_CachedReadBufferPredownloadedFromSourceBytes (UInt64) — 事前ダウンロードのために filesystem cache source (remote fs など) から読み取ったバイト数
  • ProfileEvent_CachedReadBufferReadFromCacheBytes (UInt64) — ファイルシステムキャッシュから読み取ったバイト数
  • ProfileEvent_CachedReadBufferPredownloadedBytes (UInt64) — filesystem cache source から読み取ったバイト数。cache segments は全体として左から右へ読み取られるため、必要なデータに到達するだけのために、現在の task には無関係な segment の一部を事前ダウンロードする必要がある場合があります
  • ProfileEvent_CachedReadBufferCacheWriteBytes (UInt64) — ソース (remote fs など) からファイルシステムキャッシュに書き込まれたバイト数
  • ProfileEvent_CachedReadBufferCacheWriteMicroseconds (UInt64) — ファイルシステムキャッシュへのデータ書き込みに費やした時間
  • ProfileEvent_CachedReadBufferCreateBufferMicroseconds (UInt64) — バッファ準備時間
  • ProfileEvent_CachedWriteBufferCacheWriteBytes (UInt64) — ソース (remote fs など) からファイルシステムキャッシュへ書き込まれたバイト数
  • ProfileEvent_CachedWriteBufferCacheWriteMicroseconds (UInt64) — ファイルシステムキャッシュへのデータ書き込みに費やした時間
  • ProfileEvent_FilesystemCacheLoadMetadataMicroseconds (UInt64) — ファイルシステムキャッシュのメタデータ読み込みに費やした時間
  • ProfileEvent_FilesystemCacheEvictedBytes (UInt64) — ファイルシステムキャッシュから追い出されたバイト数
  • ProfileEvent_FilesystemCacheCreatedKeyDirectories (UInt64) — 作成されたキーディレクトリ数
  • ProfileEvent_FilesystemCacheEvictedFileSegments (UInt64) — ファイルシステムキャッシュから追い出されたファイルセグメント数
  • ProfileEvent_FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease (UInt64) — ファイルセグメントの優先度を上げる際にファイルシステムキャッシュから追い出されたファイルセグメント数 (SLRU キャッシュポリシーに適用)
  • ProfileEvent_FilesystemCacheBackgroundDownloadQueuePush (UInt64) — ファイルシステムキャッシュでバックグラウンドダウンロード用に送られたファイルセグメント数
  • ProfileEvent_FilesystemCacheEvictionSkippedFileSegments (UInt64) — 解放不能状態のためエビクションをスキップしたファイルセグメント数
  • ProfileEvent_FilesystemCacheEvictionSkippedEvictingFileSegments (UInt64) — エビクション中のためエビクションをスキップしたファイルセグメント数
  • ProfileEvent_FilesystemCacheEvictionSkippedMovingFileSegments (UInt64) — 移動中のためエビクションをスキップしたファイルセグメント数
  • ProfileEvent_FilesystemCacheEvictionTries (UInt64) — ファイルシステムキャッシュのエビクション試行回数
  • ProfileEvent_FilesystemCacheEvictionReusedIterator (UInt64) — ファイルシステムキャッシュでイテレータを再利用した回数
  • ProfileEvent_FilesystemCacheLockKeyMicroseconds (UInt64) — キャッシュキーのロック時間
  • ProfileEvent_FilesystemCacheLockMetadataMicroseconds (UInt64) — ファイルシステムキャッシュのメタデータのロック時間
  • ProfileEvent_FilesystemCachePriorityWriteLockMicroseconds (UInt64) — 優先度キューへの書き込み時のファイルシステムキャッシュのロック時間
  • ProfileEvent_FilesystemCachePriorityReadLockMicroseconds (UInt64) — 優先度キューでの読み取り時のファイルシステムキャッシュのロック時間
  • ProfileEvent_FilesystemCacheStateLockMicroseconds (UInt64) — state ロック時のファイルシステムキャッシュのロック時間
  • ProfileEvent_FilesystemCacheReserveMicroseconds (UInt64) — ファイルシステムキャッシュ領域の予約時間
  • ProfileEvent_FilesystemCacheReserveAttempts (UInt64) — ファイルシステムキャッシュ領域の予約試行回数
  • ProfileEvent_FilesystemCacheEvictMicroseconds (UInt64) — ファイルシステムキャッシュのエビクション時間
  • ProfileEvent_FilesystemCacheGetOrSetMicroseconds (UInt64) — ファイルシステムキャッシュの getOrSet() 時間
  • ProfileEvent_FilesystemCacheGetMicroseconds (UInt64) — ファイルシステムキャッシュの get() 時間
  • ProfileEvent_FilesystemCacheBackgroundEvictedFileSegments (UInt64) — バックグラウンドスレッドによって追い出されたファイルセグメント数
  • ProfileEvent_FilesystemCacheBackgroundEvictedBytes (UInt64) — バックグラウンドスレッドによって追い出されたバイト数
  • ProfileEvent_FilesystemCacheCheckCorrectness (UInt64) — FileCache::assertCacheCorrectness が呼び出された回数
  • ProfileEvent_FilesystemCacheCheckCorrectnessMicroseconds (UInt64) — FileCache::assertCacheCorrectness に要した時間
  • ProfileEvent_FileSegmentWaitMicroseconds (UInt64) — DOWNLOADING 状態での待機時間
  • ProfileEvent_FileSegmentCompleteMicroseconds (UInt64) — ファイルシステムキャッシュにおける FileSegment::complete() の所要時間
  • ProfileEvent_FileSegmentLockMicroseconds (UInt64) — ファイルセグメントのロックに要した時間
  • ProfileEvent_FileSegmentWriteMicroseconds (UInt64) — ファイルセグメントの write() に要した時間
  • ProfileEvent_FileSegmentIncreasePriorityMicroseconds (UInt64) — ファイルセグメントの優先度引き上げに要した時間
  • ProfileEvent_FileSegmentRemoveMicroseconds (UInt64) — ファイルセグメントの remove() に要した時間
  • ProfileEvent_FileSegmentHolderCompleteMicroseconds (UInt64) — ファイルセグメントホルダーの complete() に要した時間
  • ProfileEvent_FileSegmentFailToIncreasePriority (UInt64) — cache ロックの競合が激しかったため、優先度を引き上げられなかった回数
  • ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfLockContention (UInt64) — cache ロックの競合が激しかったため、領域予約がスキップされた回数
  • ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfCacheResize (UInt64) — cache のリサイズ中だったため、領域予約がスキップされた回数
  • ProfileEvent_FilesystemCacheHoldFileSegments (UInt64) — 保持されているファイルシステムキャッシュ内のファイルセグメント数
  • ProfileEvent_FilesystemCacheUnusedHoldFileSegments (UInt64) — 保持されたものの使用されなかったファイルシステムキャッシュ内のファイルセグメント数 (シークや LIMIT n などが原因)
  • ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadRun (UInt64) — バックグラウンドスレッドが空き領域維持ジョブを実行した回数
  • ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds (UInt64) — バックグラウンドスレッドが空き領域維持ジョブの実行に費やした時間
  • ProfileEvent_FilesystemCacheFailedEvictionCandidates (UInt64) — 動的ファイルシステムキャッシュのエビクション中に、予期せず追い出しに失敗したファイルセグメント数
  • ProfileEvent_RemoteFSSeeks (UInt64) — 非同期バッファに対するシークの総数
  • ProfileEvent_RemoteFSPrefetches (UInt64) — リモートファイルシステムからの非同期読み取りで実行されたプレフェッチ回数
  • ProfileEvent_RemoteFSCancelledPrefetches (UInt64) — キャンセルされたプレフェッチの回数 (シークが原因)
  • ProfileEvent_RemoteFSUnusedPrefetches (UInt64) — バッファ破棄時点で保留中だったプレフェッチの回数
  • ProfileEvent_RemoteFSPrefetchedReads (UInt64) — プレフェッチ済みバッファからの読み取り回数
  • ProfileEvent_RemoteFSPrefetchedBytes (UInt64) — プレフェッチ済みバッファからのバイト数
  • ProfileEvent_RemoteFSUnprefetchedReads (UInt64) — prefetch されていないバッファからの読み取り回数
  • ProfileEvent_RemoteFSUnprefetchedBytes (UInt64) — prefetch されていないバッファから読み取られたバイト数
  • ProfileEvent_RemoteFSLazySeeks (UInt64) — 遅延 seek の回数
  • ProfileEvent_RemoteFSSeeksWithReset (UInt64) — 新しい connection につながる seek の回数
  • ProfileEvent_RemoteFSBuffers (UInt64) — リモートファイルシステムからの非同期読み取り用に作成された buffer の数
  • ProfileEvent_MergeTreePrefetchedReadPoolInit (UInt64) — MergeTreePrefetchedReadPool で task の準備に費やした時間
  • ProfileEvent_WaitPrefetchTaskMicroseconds (UInt64) — prefetch 済み reader の待機に費やした時間
  • ProfileEvent_ThreadpoolReaderTaskMicroseconds (UInt64) — 非同期読み取りでデータを取得するのに費やした時間
  • ProfileEvent_ThreadpoolReaderPrepareMicroseconds (UInt64) — 準備に費やした時間 (例: reader の seek() method の呼び出し)
  • ProfileEvent_ThreadpoolReaderReadBytes (UInt64) — 非同期読み取りにおいて threadpool task から読み取られたバイト数
  • ProfileEvent_ThreadpoolReaderSubmit (UInt64) — 非同期読み取りにおいて threadpool task を送信した回数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronously (UInt64) — thread pool に task をスケジュールせず、代わりに同期的に読み取った回数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyBytes (UInt64) — 同期的に読み取られたバイト数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyMicroseconds (UInt64) — 同期的な読み取りに費やした時間
  • ProfileEvent_ThreadpoolReaderSubmitLookupInCacheMicroseconds (UInt64) — 内容が cache されているかどうかの確認に費やした時間
  • ProfileEvent_AsynchronousReaderIgnoredBytes (UInt64) — 非同期読み取り中に無視されたバイト数
  • ProfileEvent_ReadBufferSeekCancelConnection (UInt64) — 新しい connection につながる seek の回数 (s3、http)
  • ProfileEvent_SleepFunctionCalls (UInt64) — sleep function (sleepsleepEachRow) が呼び出された回数。
  • ProfileEvent_SleepFunctionMicroseconds (UInt64) — sleep function (sleepsleepEachRow) で設定された sleep 時間。
  • ProfileEvent_SleepFunctionElapsedMicroseconds (UInt64) — sleep function (sleepsleepEachRow) で実際に sleep していた時間。
  • ProfileEvent_ThreadPoolReaderPageCacheHit (UInt64) — ThreadPoolReader 内の読み取りが page cache から行われた回数。
  • ProfileEvent_ThreadPoolReaderPageCacheHitBytes (UInt64) — ThreadPoolReader 内で page cache から読み取りが行われた際のバイト数。
  • ProfileEvent_ThreadPoolReaderPageCacheHitElapsedMicroseconds (UInt64) — ThreadPoolReader で page cache からデータを読み取るのに費やした時間。
  • ProfileEvent_ThreadPoolReaderPageCacheMiss (UInt64) — ThreadPoolReader 内の読み取りが page cache から行われず、thread pool に引き渡された回数。
  • ProfileEvent_ThreadPoolReaderPageCacheMissBytes (UInt64) — ThreadPoolReader 内で page cache から読み取りが行われず、thread pool に引き渡された際の読み取りバイト数。
  • ProfileEvent_ThreadPoolReaderPageCacheMissElapsedMicroseconds (UInt64) — ThreadPoolReader の非同期ジョブ内で、ページキャッシュを介さずにデータを読み取るのに費やした時間。
  • ProfileEvent_AsynchronousReadWaitMicroseconds (UInt64) — 非同期ローカル読み取りで、非同期読み取りの待機に費やした時間。
  • ProfileEvent_SynchronousReadWaitMicroseconds (UInt64) — 非同期ローカル読み取りで、同期読み取りの待機に費やした時間。
  • ProfileEvent_AsynchronousRemoteReadWaitMicroseconds (UInt64) — 非同期リモート読み取りの待機に費やした時間。
  • ProfileEvent_SynchronousRemoteReadWaitMicroseconds (UInt64) — 同期リモート読み取りの待機に費やした時間。
  • ProfileEvent_ExternalDataSourceLocalCacheReadBytes (UInt64) — RemoteReadBufferCache のローカル cache バッファから読み取られたバイト数。
  • ProfileEvent_MainConfigLoads (UInt64) — メイン設定が再読み込みされた回数。
  • ProfileEvent_AggregationPreallocatedElementsInHashTables (UInt64) — aggregation 用のハッシュテーブルで事前割り当てされた要素数。
  • ProfileEvent_AggregationHashTablesInitializedAsTwoLevel (UInt64) — aggregation 用に 2 レベルとして初期化されたハッシュテーブルの数。
  • ProfileEvent_AggregationOptimizedEqualRangesOfKeys (UInt64) — キーの等しい範囲の最適化が適用されたブロック数。
  • ProfileEvent_HashJoinPreallocatedElementsInHashTables (UInt64) — ハッシュ結合用のハッシュテーブルで事前割り当てされた要素数。
  • ProfileEvent_MetadataFromKeeperCacheHit (UInt64) — Keeper にリクエストせず、オブジェクトストレージのメタデータリクエストが cache から応答された回数。
  • ProfileEvent_MetadataFromKeeperCacheMiss (UInt64) — オブジェクトストレージのメタデータリクエストへの応答を Keeper から取得する必要があった回数。
  • ProfileEvent_MetadataFromKeeperCacheTooManyInvalidated (UInt64) — ファイルシステムキャッシュが無効化されたエントリを過剰に返した回数。
  • ProfileEvent_MetadataFromKeeperCacheUpdateMicroseconds (UInt64) — Keeper からの応答待ちを含め、cache の更新に費やした合計時間。
  • ProfileEvent_MetadataFromKeeperUpdateCacheOneLevel (UInt64) — ディレクトリツリーの 1 レベルに対する cache 更新が実行された回数。
  • ProfileEvent_MetadataFromKeeperTransactionCommit (UInt64) — メタデータ取引のコミットが試行された回数。
  • ProfileEvent_MetadataFromKeeperTransactionCommitRetry (UInt64) — メタデータ取引のコミットが再試行された回数。
  • ProfileEvent_MetadataFromKeeperCleanupTransactionCommit (UInt64) — 削除済みオブジェクトのクリーンアップに対するメタデータ取引のコミットが試行された回数。
  • ProfileEvent_MetadataFromKeeperCleanupTransactionCommitRetry (UInt64) — 削除済みオブジェクトのクリーンアップに対するメタデータ取引のコミットが再試行された回数。
  • ProfileEvent_MetadataFromKeeperOperations (UInt64) — Keeper へのリクエストが行われた回数。
  • ProfileEvent_MetadataFromKeeperIndividualOperations (UInt64) — Keeper への単一または複数リクエストで読み書きされたパス数。
  • ProfileEvent_MetadataFromKeeperIndividualOperationsMicroseconds (UInt64) — Keeper への単一または複数リクエスト中に費やした時間。
  • ProfileEvent_MetadataFromKeeperReconnects (UInt64) — Keeper への再接続が行われた回数。
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupObjects (UInt64) — 古い削除済みオブジェクトのクリーンアップがバックグラウンドタスクによって実行された回数。
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupTransactions (UInt64) — 古いトランザクションの冪等性トークンがバックグラウンドタスクによってクリーンアップされた回数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupBlobs (UInt64) — 空のブロブレイアウトパートがバックグラウンドタスクによってクリーンアップされた回数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupErrors (UInt64) — バックグラウンドクリーンアップタスクでエラーが発生した回数
  • ProfileEvent_BlobKillerThreadRuns (UInt64) — BlobKillerスレッドの実行回数
  • ProfileEvent_BlobKillerThreadLockedBlobs (UInt64) — メタデータストレージから返されたブロブの数
  • ProfileEvent_BlobKillerThreadRemoveTasks (UInt64) — BlobKillerによって作成された削除タスクの数
  • ProfileEvent_BlobKillerThreadRemovedBlobs (UInt64) — BlobKillerによって削除されたブロブの数
  • ProfileEvent_BlobKillerThreadRecordedBlobs (UInt64) — BlobKillerによる削除がメタデータストレージに記録されたブロブの数
  • ProfileEvent_BlobKillerThreadLockBlobsErrors (UInt64) — BlobKillerの実行中に発生したブロブのロックエラー数
  • ProfileEvent_BlobKillerThreadRemoveBlobsErrors (UInt64) — BlobKillerの実行中に発生したブロブの削除エラー数
  • ProfileEvent_BlobKillerThreadRecordBlobsErrors (UInt64) — BlobKillerの実行中に発生したブロブの記録エラー数
  • ProfileEvent_BlobCopierThreadRuns (UInt64) — BlobCopierスレッドの実行回数
  • ProfileEvent_BlobCopierThreadLockedBlobs (UInt64) — メタデータストレージから返されたブロブの数
  • ProfileEvent_BlobCopierThreadReplicatedBlobs (UInt64) — BlobCopierによってレプリケートされたブロブの数
  • ProfileEvent_BlobCopierThreadRecordedBlobs (UInt64) — BlobCopierによるレプリケーションがメタデータストレージに記録されたブロブの数
  • ProfileEvent_BlobCopierThreadLockBlobsErrors (UInt64) — BlobCopierの実行中に発生したブロブのロックエラー数
  • ProfileEvent_BlobCopierThreadReplicateBlobsErrors (UInt64) — BlobCopierの実行中に発生したブロブのレプリケーションエラー数
  • ProfileEvent_BlobCopierThreadRecordBlobsErrors (UInt64) — BlobCopierの実行中に発生したブロブの記録エラー数
  • ProfileEvent_SharedMergeTreeMetadataCacheHintLoadedFromCache (UInt64) — Keeperにアクセスすることなくメタデータキャッシュヒントが見つかった回数
  • ProfileEvent_KafkaRebalanceRevocations (UInt64) — パーティション割り当て取り消しの回数 (コンシューマグループ rebalance の最初の段階)
  • ProfileEvent_KafkaRebalanceAssignments (UInt64) — パーティション割り当ての回数 (コンシューマグループ rebalance の最終段階)
  • ProfileEvent_KafkaRebalanceErrors (UInt64) — 失敗したコンシューマグループ rebalance の回数
  • ProfileEvent_KafkaMessagesPolled (UInt64) — librdkafka から ClickHouse にポーリングされた Kafka メッセージの数
  • ProfileEvent_KafkaMessagesRead (UInt64) — ClickHouse によってすでに処理された Kafka メッセージの数
  • ProfileEvent_KafkaMessagesFailed (UInt64) — ClickHouse がパースに失敗した Kafka メッセージの数
  • ProfileEvent_KafkaRowsRead (UInt64) — Kafka メッセージから解析された行数
  • ProfileEvent_KafkaRowsRejected (UInt64) — 解析された行のうち、後で拒否された行数 (リバランスやエラーなどが原因) 。これらの行は、リバランス後に再度消費されます。
  • ProfileEvent_KafkaDirectReads (UInt64) — サーバーの起動以降に Kafka テーブルに対して実行された直接 select の回数
  • ProfileEvent_KafkaBackgroundReads (UInt64) — サーバーの起動以降に、Kafka から materialized view を取り込むために実行されたバックグラウンド読み取りの回数
  • ProfileEvent_KafkaCommits (UInt64) — 消費済みオフセットの Kafka へのコミット成功回数 (通常は KafkaBackgroundReads と同じになるはずです)
  • ProfileEvent_KafkaCommitFailures (UInt64) — 消費済みオフセットの Kafka へのコミット失敗回数 (通常はデータ重複の兆候です)
  • ProfileEvent_KafkaConsumerErrors (UInt64) — ポーリング中に librdkafka によって報告されたエラー数
  • ProfileEvent_KafkaMVNotReady (UInt64) — 準備ができていない materialized view へのデータのストリーミングに失敗した試行回数
  • ProfileEvent_KafkaWrites (UInt64) — Kafka テーブルへの書き込み (insert) 回数
  • ProfileEvent_KafkaRowsWritten (UInt64) — Kafka テーブルに挿入された行数
  • ProfileEvent_KafkaProducerFlushes (UInt64) — Kafka producer に対する明示的な flush の回数
  • ProfileEvent_KafkaMessagesProduced (UInt64) — Kafka に生成されたメッセージ数
  • ProfileEvent_KafkaProducerErrors (UInt64) — Kafka へのメッセージ生成中に発生したエラー数
  • ProfileEvent_ScalarSubqueriesGlobalCacheHit (UInt64) — スカラーサブクエリからの読み取りでグローバル cache が使用された回数
  • ProfileEvent_ScalarSubqueriesLocalCacheHit (UInt64) — スカラーサブクエリからの読み取りでローカル cache が使用された回数
  • ProfileEvent_ScalarSubqueriesCacheMiss (UInt64) — スカラーサブクエリからの読み取りが cache されておらず、完全に計算する必要があった回数
  • ProfileEvent_SchemaInferenceCacheHits (UInt64) — 要求されたソースがスキーマ cache で見つかった回数
  • ProfileEvent_SchemaInferenceCacheSchemaHits (UInt64) — スキーマ推論中にスキーマがスキーマ cache で見つかった回数
  • ProfileEvent_SchemaInferenceCacheNumRowsHits (UInt64) — ファイルからのカウント中に行数がスキーマ cache で見つかった回数
  • ProfileEvent_SchemaInferenceCacheMisses (UInt64) — 要求されたソースがスキーマ cache に存在しなかった回数
  • ProfileEvent_SchemaInferenceCacheSchemaMisses (UInt64) — 要求されたソースは cache 内にあるものの、スキーマ推論中にスキーマが cache 内になかった回数
  • ProfileEvent_SchemaInferenceCacheNumRowsMisses (UInt64) — 要求されたソースは cache 内にあるものの、ファイルからのカウント中に行数が cache 内になかった回数
  • ProfileEvent_SchemaInferenceCacheEvictions (UInt64) — overflow により cache からスキーマが追い出された回数
  • ProfileEvent_SchemaInferenceCacheInvalidations (UInt64) — データの変更により cache 内のスキーマが無効になった回数
  • ProfileEvent_KeeperPacketsSent (UInt64) — Keeper サーバーによって送信されたパケット数
  • ProfileEvent_KeeperPacketsReceived (UInt64) — Keeper サーバーが受信したパケット数
  • ProfileEvent_KeeperRequestTotal (UInt64) — Keeper サーバー上のリクエスト総数
  • ProfileEvent_KeeperRequestTotalWithSubrequests (UInt64) — 複数リクエスト内の各 subrequest を含めてカウントした Keeper サーバー上のリクエスト総数
  • ProfileEvent_KeeperLatency (UInt64) — Keeper のレイテンシ
  • ProfileEvent_KeeperTotalElapsedMicroseconds (UInt64) — 単一リクエストにおける Keeper の合計レイテンシ
  • ProfileEvent_KeeperProcessElapsedMicroseconds (UInt64) — 単一リクエストにおける Keeper のコミットレイテンシ
  • ProfileEvent_KeeperPreprocessElapsedMicroseconds (UInt64) — 単一リクエストにおける Keeper の前処理レイテンシ
  • ProfileEvent_KeeperStorageLockWaitMicroseconds (UInt64) — Keeper ストレージロックの取得待機時間
  • ProfileEvent_KeeperStorageSharedLockWaitMicroseconds (UInt64) — Keeper ストレージ共有ロックの取得待機時間
  • ProfileEvent_KeeperChangelogLockWaitMicroseconds (UInt64) — Keeper changelog ロックの取得待機時間
  • ProfileEvent_KeeperServerWriteLockWaitMicroseconds (UInt64) — Keeper サーバー書き込みロックの取得待機時間
  • ProfileEvent_KeeperSessionCallbackLockWaitMicroseconds (UInt64) — Keeper セッションコールバックロックの取得待機時間
  • ProfileEvent_KeeperReadRequestQueueLockWaitMicroseconds (UInt64) — Keeper read request queue ロックの取得待機時間
  • ProfileEvent_KeeperProcessAndResponsesLockWaitMicroseconds (UInt64) — Keeper の process and responses ロックの取得待機時間
  • ProfileEvent_KeeperCommitWaitElapsedMicroseconds (UInt64) — 特定のログがコミットされるまでの待機時間
  • ProfileEvent_KeeperBatchMaxCount (UInt64) — Batch のサイズが件数によって制限された回数
  • ProfileEvent_KeeperBatchMaxTotalSize (UInt64) — Batch のサイズが合計バイト数によって制限された回数
  • ProfileEvent_KeeperReadBatchCount (UInt64) — Keeper が処理した read request batches の数
  • ProfileEvent_KeeperReadBatchTotalRequests (UInt64) — Keeper が batches で処理した read request の総数
  • ProfileEvent_KeeperCommits (UInt64) — 成功したコミット数
  • ProfileEvent_KeeperCommitsFailed (UInt64) — 失敗したコミット数
  • ProfileEvent_KeeperSnapshotCreations (UInt64) — snapshot の作成数
  • ProfileEvent_KeeperSnapshotCreationsFailed (UInt64) — 失敗した snapshot の作成数
  • ProfileEvent_KeeperSnapshotApplys (UInt64) — snapshot の適用数
  • ProfileEvent_KeeperSnapshotApplysFailed (UInt64) — 失敗した snapshot の適用数
  • ProfileEvent_KeeperReadSnapshot (UInt64) — 完了したスナップショット読み取りの数
  • ProfileEvent_KeeperReadSnapshotObject (UInt64) — follower に送信されたスナップショットオブジェクトの数
  • ProfileEvent_KeeperReadSnapshotFailed (UInt64) — 失敗したスナップショット読み取りの数
  • ProfileEvent_KeeperSnapshotRemoteLoaderErrors (UInt64) — follower にスナップショットを提供する際に、RemoteSnapshotLoader で発生したリモート読み取りエラーの数
  • ProfileEvent_KeeperSaveSnapshotObject (UInt64) — leader から受信したスナップショットオブジェクトの数
  • ProfileEvent_KeeperSaveSnapshotFailed (UInt64) — 失敗したスナップショット保存の数
  • ProfileEvent_KeeperSaveSnapshot (UInt64) — スナップショット保存の数
  • ProfileEvent_KeeperCreateRequest (UInt64) — create リクエスト数
  • ProfileEvent_KeeperRemoveRequest (UInt64) — remove リクエスト数
  • ProfileEvent_KeeperSetRequest (UInt64) — set リクエスト数
  • ProfileEvent_KeeperReconfigRequest (UInt64) — reconfig リクエスト数
  • ProfileEvent_KeeperCheckRequest (UInt64) — check リクエスト数
  • ProfileEvent_KeeperMultiRequest (UInt64) — multi リクエスト数
  • ProfileEvent_KeeperMultiReadRequest (UInt64) — multi read リクエスト数
  • ProfileEvent_KeeperGetRequest (UInt64) — get リクエスト数
  • ProfileEvent_KeeperListRequest (UInt64) — list リクエスト数
  • ProfileEvent_KeeperListRecursiveRequest (UInt64) — 子ノードを再帰的に取得するリクエスト数
  • ProfileEvent_KeeperExistsRequest (UInt64) — exists リクエスト数
  • ProfileEvent_KeeperSetWatchesRequest (UInt64) — ウォッチ設定リクエスト数
  • ProfileEvent_KeeperAddWatchRequest (UInt64) — ウォッチ追加リクエスト数
  • ProfileEvent_KeeperRemoveWatchRequest (UInt64) — remove watches リクエスト数
  • ProfileEvent_KeeperCheckWatchRequest (UInt64) — remove watches リクエスト数
  • ProfileEvent_KeeperRequestRejectedDueToSoftMemoryLimitCount (UInt64) — ソフトメモリ制限の超過により拒否されたリクエスト数
  • ProfileEvent_KeeperStaleRequestsSkipped (UInt64) — セッションがすでに有効でないためスキップされた Keeper リクエスト数
  • ProfileEvent_KeeperLiveSessionsLockWaitMicroseconds (UInt64) — Keeper の live sessions lock の取得待機時間
  • ProfileEvent_OverflowBreak (UInt64) — 設定 ’*_overflow_mode’ = ‘break’ によりクエリ複雑度の制限が適用され、データ処理がキャンセルされて結果が不完全になった回数。
  • ProfileEvent_OverflowThrow (UInt64) — 設定 ’*_overflow_mode’ = ‘throw’ によりクエリ複雑度の制限が適用され、データ処理がキャンセルされて例外がスローされた回数。
  • ProfileEvent_OverflowAny (UInt64) — 近似 GROUP BY が有効になった回数。つまり、集約は最初の ‘max_rows_to_group_by’ 個の一意なキーに対してのみ実行され、‘group_by_overflow_mode’ = ‘any’ によりそれ以外のキーは無視されました。
  • ProfileEvent_S3QueueSetFileProcessingMicroseconds (UInt64) — ファイルを processing 状態に設定するのに要した時間
  • ProfileEvent_S3QueueSetFileProcessedMicroseconds (UInt64) — ファイルを processed 状態に設定するのに要した時間
  • ProfileEvent_S3QueueSetFileFailedMicroseconds (UInt64) — ファイルを failed 状態に設定するのに要した時間
  • ProfileEvent_ObjectStorageQueueFailedFiles (UInt64) — 処理に失敗したファイル数
  • ProfileEvent_ObjectStorageQueueProcessedFiles (UInt64) — 処理済みファイル数
  • ProfileEvent_ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds (UInt64) — ファイルを failed 状態に設定するのに要した時間
  • ProfileEvent_ObjectStorageQueuePullMicroseconds (UInt64) — ファイルデータの読み取りに要した時間
  • ProfileEvent_ObjectStorageQueueFailedToBatchSetProcessing (UInt64) — batched set processing request が失敗した回数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingRequests (UInt64) — set processing request の実行を試みた回数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingSucceeded (UInt64) — ファイルを processing 状態に正常に設定できた回数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingFailed (UInt64) — ファイルを processing 状態に設定できなかった回数
  • ProfileEvent_ObjectStorageQueueListedFiles (UInt64) — StorageS3(Azure)Queue で一覧取得されたファイル数
  • ProfileEvent_ObjectStorageQueueFilteredFiles (UInt64) — StorageS3(Azure)Queue でフィルタされたファイル数
  • ProfileEvent_ObjectStorageQueueReadFiles (UInt64) — 読み取られたファイル数 (実際に挿入されたファイル数とは一致しません)
  • ProfileEvent_ObjectStorageQueueReadRows (UInt64) — 読み取られた行数 (実際に挿入された行数とは一致しません)
  • ProfileEvent_ObjectStorageQueueReadBytes (UInt64) — 読み取られたバイト数 (実際に挿入されたバイト数とは一致しません)
  • ProfileEvent_ObjectStorageQueueExceptionsDuringRead (UInt64) — S3(Azure)Queue での読み取り中に発生した例外数
  • ProfileEvent_ObjectStorageQueueExceptionsDuringInsert (UInt64) — S3(Azure)Queue での insert 中に発生した例外数
  • ProfileEvent_ObjectStorageQueueMovedObjects (UInt64) — after_processing = move の一環として移動されたオブジェクト数
  • ProfileEvent_ObjectStorageQueueRemovedObjects (UInt64) — after_processing = delete の一環として削除されたオブジェクト数
  • ProfileEvent_ObjectStorageQueueTaggedObjects (UInt64) — after_processing = tag の一環としてタグ付けされたオブジェクト数
  • ProfileEvent_ObjectStorageQueueInsertIterations (UInt64) — insert の反復回数
  • ProfileEvent_ObjectStorageQueueCommitRequests (UInt64) — ファイルを失敗または処理済みとしてコミットするためのKeeperリクエスト数
  • ProfileEvent_ObjectStorageQueueSuccessfulCommits (UInt64) — 成功したKeeperコミット数
  • ProfileEvent_ObjectStorageQueueUnsuccessfulCommits (UInt64) — 失敗したKeeperコミット数
  • ProfileEvent_ObjectStorageQueueCancelledFiles (UInt64) — StorageS3(Azure)Queue でキャンセルされたファイル数
  • ProfileEvent_ObjectStorageQueueProcessedRows (UInt64) — StorageS3(Azure)Queue で処理された行数
  • ProfileEvent_ObjectStorageListedObjects (UInt64) — フィルタリング前にオブジェクトストレージの一覧 API から返されたオブジェクトの総数。
  • ProfileEvent_ObjectStorageGlobFilteredObjects (UInt64) — glob または Regex パターンに一致せず、一覧取得時にスキップされたオブジェクト。
  • ProfileEvent_ObjectStoragePredicateFilteredObjects (UInt64) — _path/_file に対する仮想カラムの述語フィルタリングによって除外されたオブジェクト。
  • ProfileEvent_ObjectStorageReadObjects (UInt64) — オブジェクトストレージソースによって実際に読み取り用に開かれたオブジェクト。
  • ProfileEvent_ServerStartupMilliseconds (UInt64) — サーバーの起動開始からソケットでの待ち受け開始までの経過時間 (ミリ秒)
  • ProfileEvent_IOUringSQEsSubmitted (UInt64) — 送信された io_uring SQE の総数
  • ProfileEvent_IOUringSQEsResubmitsAsync (UInt64) — 実行された非同期 io_uring SQE 再投入の総数
  • ProfileEvent_IOUringSQEsResubmitsSync (UInt64) — 実行された同期 io_uring SQE 再投入の総数
  • ProfileEvent_IOUringCQEsCompleted (UInt64) — 正常に完了した io_uring CQE の総数
  • ProfileEvent_IOUringCQEsFailed (UInt64) — 失敗して完了した io_uring CQE の総数
  • ProfileEvent_BackupsOpenedForRead (UInt64) — 読み取り用に開かれたバックアップ数
  • ProfileEvent_BackupsOpenedForWrite (UInt64) — 書き込み用に開かれたバックアップ数
  • ProfileEvent_BackupsOpenedForUnlock (UInt64) — ロック解除のために開かれたバックアップ数
  • ProfileEvent_BackupReadMetadataMicroseconds (UInt64) — .backup ファイルからバックアップのメタデータを読み取るのに要した時間
  • ProfileEvent_BackupWriteMetadataMicroseconds (UInt64) — .backup ファイルにバックアップのメタデータを書き込むのに要した時間
  • ProfileEvent_BackupEntriesCollectorMicroseconds (UInt64) — バックアップエントリの作成に要した時間
  • ProfileEvent_BackupEntriesCollectorForTablesDataMicroseconds (UInt64) — テーブルデータのバックアップエントリ作成に要した時間
  • ProfileEvent_BackupEntriesCollectorRunPostTasksMicroseconds (UInt64) — バックアップエントリ作成後の後処理タスクの実行に要した時間
  • ProfileEvent_BackupPreparingFileInfosMicroseconds (UInt64) — バックアップエントリ用のファイル情報を準備するのに要した時間
  • ProfileEvent_BackupReadLocalFilesToCalculateChecksums (UInt64) — バックアップエントリのチェックサムを計算するためにローカルで読み取られたファイル数
  • ProfileEvent_BackupReadLocalBytesToCalculateChecksums (UInt64) — バックアップエントリのチェックサム計算のためにローカルで読み取られたファイルの合計サイズ
  • ProfileEvent_BackupReadRemoteFilesToCalculateChecksums (UInt64) — バックアップエントリのチェックサム計算のためにリモートディスクから読み取られたファイル数
  • ProfileEvent_BackupReadRemoteBytesToCalculateChecksums (UInt64) — バックアップエントリのチェックサム計算のためにリモートディスクから読み取られたファイルの合計サイズ
  • ProfileEvent_BackupLockFileReads (UInt64) — バックアップ作成中に .lock ファイルが読み取られた回数
  • ProfileEvent_RestorePartsSkippedFiles (UInt64) — パーツの復元中にスキップされたファイル数
  • ProfileEvent_RestorePartsSkippedBytes (UInt64) — パーツの復元中にスキップされたファイルの合計サイズ
  • ProfileEvent_ReadTaskRequestsReceived (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバック要求の回数 (s3Cluster テーブル関数など) 。イニシエーターサーバー側で測定。
  • ProfileEvent_MergeTreeReadTaskRequestsReceived (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバック要求の回数 (MergeTree テーブル) 。イニシエーターサーバー側で測定。
  • ProfileEvent_ReadTaskRequestsSent (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバック要求の回数 (s3Cluster テーブル関数など) 。リモートサーバー側で測定。
  • ProfileEvent_MergeTreeReadTaskRequestsSent (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバック要求の回数 (MergeTree テーブル) 。リモートサーバー側で測定。
  • ProfileEvent_MergeTreeAllRangesAnnouncementsSent (UInt64) — データパーツの集合について、リモートサーバーからイニシエーターサーバーに送信された通知の回数 (MergeTree テーブル) 。リモートサーバー側で測定。
  • ProfileEvent_ReadTaskRequestsSentElapsedMicroseconds (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバックに費やされた時間 (s3Cluster テーブル関数など) 。リモートサーバー側で測定。
  • ProfileEvent_MergeTreeReadTaskRequestsSentElapsedMicroseconds (UInt64) — 読み取りタスクを選択するために、リモートサーバーからイニシエーターサーバーに返されるコールバックに費やされた時間 (MergeTree テーブル) 。リモートサーバー側で測定。
  • ProfileEvent_MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds (UInt64) — データパーツの集合に関する通知をリモートサーバーからイニシエーターサーバーに送信するのに費やされた時間 (MergeTree テーブル) 。リモートサーバー側で測定。
  • ProfileEvent_MergerMutatorsGetPartsForMergeElapsedMicroseconds (UInt64) — そこから範囲を構築するために、データパーツのスナップショット取得に費やされた時間。
  • ProfileEvent_MergerMutatorPrepareRangesForMergeElapsedMicroseconds (UInt64) — マージ述語に従ってマージ可能なパーツの範囲を準備するのに費やされた時間。
  • ProfileEvent_MergerMutatorSelectPartsForMergeElapsedMicroseconds (UInt64) — マージ可能な範囲からパーツを選択するのに費やされた時間。
  • ProfileEvent_MergerMutatorRangesForMergeCount (UInt64) — マージ候補となる範囲の数
  • ProfileEvent_MergerMutatorPartsInRangesForMergeCount (UInt64) — マージ候補となるパーツ数
  • ProfileEvent_MergerMutatorSelectRangePartsCount (UInt64) — マージ対象として選択された範囲内のパーツ数
  • ProfileEvent_ConnectionPoolIsFullMicroseconds (UInt64) — 接続プールのスロット待機に費やされた合計時間。
  • ProfileEvent_AsyncLoaderWaitMicroseconds (UInt64) — クエリが非同期ローダーのジョブを待機していた合計時間。
  • ProfileEvent_DistrCacheServerSwitches (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。read/write-through cache において、分散キャッシュサーバー間で切り替えが発生した回数
  • ProfileEvent_DistrCacheReadMicroseconds (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。分散キャッシュからの読み取りに費やした時間
  • ProfileEvent_DistrCacheFallbackReadMicroseconds (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。分散キャッシュではなくフォールバックバッファからの読み取りに費やした時間
  • ProfileEvent_DistrCachePrecomputeRangesMicroseconds (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。読み取り範囲の事前計算に費やした時間
  • ProfileEvent_DistrCacheNextImplMicroseconds (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。ReadBufferFromDistributedCache::nextImpl に費やした時間
  • ProfileEvent_DistrCacheStartRangeMicroseconds (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。分散キャッシュで新しい読み取り範囲を開始するのに費やした時間
  • ProfileEvent_DistrCacheRangeChange (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。seek/last_position の変更により読み取り範囲を変更した回数
  • ProfileEvent_DistrCacheRangeResetBackward (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。seek/last_position の変更により読み取り範囲をリセットした回数
  • ProfileEvent_DistrCacheRangeResetForward (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。seek/last_position の変更により読み取り範囲をリセットした回数
  • ProfileEvent_DistrCacheReconnectsAfterTimeout (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。タイムアウト後に再接続した回数
  • ProfileEvent_DistrCacheServerUpdates (UInt64) — 分散キャッシュに関するイベント。ハッシュで選択されたサーバーが変更されたこと (たとえばサーバーの登録解除など) により、読み取り中または書き込み中にサーバー切り替えが発生した回数
  • ProfileEvent_DistrCacheReadErrors (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。読み取り中に発生した分散キャッシュのエラー数
  • ProfileEvent_DistrCacheWriteErrors (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。書き込み中に発生した分散キャッシュのエラー数
  • ProfileEvent_DistrCacheWriteReconnectsAfterTimeout (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。タイムアウト後に再接続した回数
  • ProfileEvent_DistrCacheWriteMicroseconds (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。WriteBufferFromDistributedCache::writeToFileSegment に費やした時間
  • ProfileEvent_DistrCacheWriteBytes (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。分散キャッシュに書き込まれたバイト数
  • ProfileEvent_DistrCacheObjectStorageWriteMicroseconds (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。オブジェクトストレージへの書き込みに費やした時間
  • ProfileEvent_DistrCacheObjectStorageWriteBytes (UInt64) — 分散キャッシュの書き込みバッファに関するイベント。オブジェクトストレージに書き込まれたバイト数
  • ProfileEvent_DistrCacheGetResponseMicroseconds (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュからのレスポンス待機に費やした時間
  • ProfileEvent_DistrCacheMakeRequestErrors (UInt64) — 分散キャッシュのクライアントイベント。リクエスト作成時に発生した分散キャッシュのエラー数
  • ProfileEvent_DistrCacheReceiveResponseErrors (UInt64) — 分散キャッシュのクライアントイベント。リクエストに対するレスポンスの受信時に発生した分散キャッシュのエラー数
  • ProfileEvent_DistrCacheReceivedDataPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した Data パケットの総数
  • ProfileEvent_DistrCacheReceivedDataPacketsBytes (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した Data パケットのバイト数
  • ProfileEvent_DistrCacheReceivedOkPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した OK パケットの総数
  • ProfileEvent_DistrCacheReceivedErrorPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した Error パケットの総数
  • ProfileEvent_DistrCacheReceivedCredentialsRefreshPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した RefreshCredentials パケットの総数
  • ProfileEvent_DistrCacheReceivedStopPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した Stop パケットの総数
  • ProfileEvent_DistrCacheSentDataPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュに送信した Data パケットの総数
  • ProfileEvent_DistrCacheSentDataPacketsBytes (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュに送信した Data パケットのバイト数
  • ProfileEvent_DistrCacheUnusedPackets (UInt64) — 分散キャッシュのクライアントイベント。分散キャッシュから受信した未使用パケットのうちスキップされた数
  • ProfileEvent_DistrCacheUnusedDataPacketsBytes (UInt64) — 分散キャッシュのクライアントイベント。無視された Data パケットのバイト数
  • ProfileEvent_DistrCacheUnusedPacketsBufferAllocations (UInt64) — 分散キャッシュのクライアントイベント。既存のバッファを再利用できなかった場合に発生した追加のバッファ割り当て数
  • ProfileEvent_DistrCacheLockRegistryMicroseconds (UInt64) — 分散キャッシュのレジストリイベント。DistributedCacheRegistry ロックの取得に費やした時間
  • ProfileEvent_DistrCacheRegistryUpdateMicroseconds (UInt64) — 分散キャッシュのレジストリイベント。分散キャッシュレジストリの更新に費やした時間
  • ProfileEvent_DistrCacheRegistryUpdates (UInt64) — 分散キャッシュのレジストリイベント。分散キャッシュレジストリの更新回数
  • ProfileEvent_DistrCacheHashRingRebuilds (UInt64) — 分散キャッシュのレジストリイベント。分散キャッシュのハッシュリングの再構築回数
  • ProfileEvent_DistrCacheSuccessfulRegistryUpdates (UInt64) — 分散キャッシュのレジストリイベント。サーバーレジストリの更新成功回数
  • ProfileEvent_DistrCacheUnsuccessfulRegistryUpdates (UInt64) — 分散キャッシュのレジストリイベント。サーバーレジストリの更新失敗回数
  • ProfileEvent_DistrCacheReadBytesFromFallbackBuffer (UInt64) — 分散キャッシュの読み取りバッファに関するイベント。フォールバックバッファから読み取ったバイト数
  • ProfileEvent_DistrCacheOpenedConnections (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへのオープン接続数
  • ProfileEvent_DistrCacheReusedConnections (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへの再利用された接続数
  • ProfileEvent_DistrCacheStaleReconnections (UInt64) — 分散キャッシュの接続イベント。古い (ピアによって切断された) プール接続が原因で発生した再接続回数
  • ProfileEvent_DistrCacheRemoveOutdatedMicroseconds (UInt64) — 分散キャッシュの接続イベント。接続プールから古い接続を削除するのに費やした時間
  • ProfileEvent_DistrCacheOpenedConnectionsBypassingPool (UInt64) — 分散キャッシュの接続イベント。プールをバイパスして分散キャッシュに確立した接続数
  • ProfileEvent_DistrCacheConnectMicroseconds (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへの接続に費やした時間
  • ProfileEvent_DistrCacheConnectAttempts (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへの接続試行回数
  • ProfileEvent_DistrCacheSuccessfulConnectAttempts (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへの接続成功回数
  • ProfileEvent_DistrCacheUnsuccessfulConnectAttempts (UInt64) — 分散キャッシュの接続イベント。分散キャッシュへの接続失敗回数
  • ProfileEvent_DistrCacheGetClientMicroseconds (UInt64) — 分散キャッシュの接続イベント。分散キャッシュ用Clientの取得に費やした時間
  • ProfileEvent_DistrCacheTemporaryFilesCreated (UInt64) — 分散キャッシュ接続イベント。分散キャッシュ内で作成された一時ファイルの数
  • ProfileEvent_DistrCacheTemporaryFilesBytesWritten (UInt64) — 分散キャッシュ接続イベント。分散キャッシュ内で作成された一時ファイルに書き込まれたバイト数
  • ProfileEvent_DistrCacheServerProcessRequestMicroseconds (UInt64) — 分散キャッシュサーバーのイベント。DistributedCache サーバー側でリクエストの処理に費やされた時間
  • ProfileEvent_DistrCacheServerStartRequestPackets (UInt64) — 分散キャッシュサーバーのイベント。DistributedCacheServer 内の StartRequest パケット数
  • ProfileEvent_DistrCacheServerContinueRequestPackets (UInt64) — 分散キャッシュサーバーのイベント。DistributedCacheServer 内の ContinueRequest パケット数
  • ProfileEvent_DistrCacheServerEndRequestPackets (UInt64) — 分散キャッシュサーバーのイベント。DistributedCacheServer 内の EndRequest パケット数
  • ProfileEvent_DistrCacheServerReceivedCredentialsRefreshPackets (UInt64) — 分散キャッシュサーバーのイベント。DistributedCacheServer 内の RefreshCredentials クライアントパケット数
  • ProfileEvent_DistrCacheServerAckRequestPackets (UInt64) — 分散キャッシュサーバーのイベント。DistributedCacheServer 内の AckRequest パケット数
  • ProfileEvent_DistrCacheServerNewS3CachedClients (UInt64) — 分散キャッシュサーバーのイベント。新たに cache された S3 クライアントの数
  • ProfileEvent_DistrCacheServerReusedS3CachedClients (UInt64) — 分散キャッシュサーバーのイベント。再利用された cache 済み S3 クライアントの数
  • ProfileEvent_DistrCacheServerCredentialsRefresh (UInt64) — 分散キャッシュサーバーのイベント。期限切れの認証情報が更新された回数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheHits (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュで cache ヒットした回数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheMisses (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュで cache ミスした回数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheWrittenBytes (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュで cache に書き込まれたバイト数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheReadBytes (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュで cache から読み取られたバイト数
  • ProfileEvent_DistrCacheServerCachedReadBufferObjectStorageReadBytes (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュでオブジェクトストレージから読み取られたバイト数
  • ProfileEvent_DistrCacheServerCachedReadBufferCachePredownloadBytes (UInt64) — 分散キャッシュサーバーのイベント。ファイルシステムキャッシュからの読み取り中に、分散キャッシュで事前ダウンロードのためにオブジェクトストレージから読み取られたバイト数
  • ProfileEvent_DistrCacheServerSkipped (UInt64) — 分散キャッシュサーバーのイベント。以前の接続試行の失敗により、分散キャッシュサーバーがスキップされた回数
  • ProfileEvent_LogTest (UInt64) — Test レベルのログメッセージ数
  • ProfileEvent_LogTrace (UInt64) — Trace レベルのログメッセージ数
  • ProfileEvent_LogDebug (UInt64) — Debug レベルのログメッセージ数
  • ProfileEvent_LogInfo (UInt64) — Info レベルのログメッセージ数
  • ProfileEvent_LogWarning (UInt64) — Warning レベルのログメッセージ数
  • ProfileEvent_LogError (UInt64) — Error レベルのログメッセージ数
  • ProfileEvent_LogFatal (UInt64) — Fatal レベルのログメッセージ数
  • ProfileEvent_LoggerElapsedNanoseconds (UInt64) — ロギングに費やされた累積時間
  • ProfileEvent_InterfaceHTTPSendBytes (UInt64) — HTTP インターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfaceHTTPReceiveBytes (UInt64) — HTTP インターフェイスを介して受信したバイト数
  • ProfileEvent_InterfaceNativeSendBytes (UInt64) — ネイティブインターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfaceNativeReceiveBytes (UInt64) — ネイティブインターフェイスを介して受信したバイト数
  • ProfileEvent_InterfacePrometheusSendBytes (UInt64) — Prometheus インターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfacePrometheusReceiveBytes (UInt64) — Prometheus インターフェイスを介して受信したバイト数
  • ProfileEvent_InterfaceInterserverSendBytes (UInt64) — サーバー間インターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfaceInterserverReceiveBytes (UInt64) — サーバー間インターフェイスを介して受信したバイト数
  • ProfileEvent_InterfaceMySQLSendBytes (UInt64) — MySQL インターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfaceMySQLReceiveBytes (UInt64) — MySQL インターフェイスを介して受信したバイト数
  • ProfileEvent_InterfacePostgreSQLSendBytes (UInt64) — PostgreSQL インターフェイスを介して送信されたバイト数
  • ProfileEvent_InterfacePostgreSQLReceiveBytes (UInt64) — PostgreSQL インターフェイスを介して受信したバイト数
  • ProfileEvent_ParallelReplicasUsedCount (UInt64) — タスクベースの並列レプリカでクエリを実行するために使用されたレプリカ数
  • ProfileEvent_ParallelReplicasAvailableCount (UInt64) — タスクベースの並列レプリカでクエリを実行するために利用可能なレプリカ数
  • ProfileEvent_ParallelReplicasUnavailableCount (UInt64) — 選択されたものの、タスクベースの並列レプリカによるクエリ実行中に利用不可であることが判明したレプリカ数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdates (UInt64) — 仮想パーツ更新回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesByLeader (UInt64) — リーダーによる仮想パーツ更新回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdateMicroseconds (UInt64) — 仮想パーツ更新にかかったマイクロ秒数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeper (UInt64) — ZooKeeper からの仮想パーツ更新回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds (UInt64) — ZooKeeper からの仮想パーツ更新にかかったマイクロ秒数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesPeerNotFound (UInt64) — ピアが見つからなかったため、ピアからの仮想更新に失敗した回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeer (UInt64) — ピアからの仮想パーツ更新回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds (UInt64) — ピアからの仮想パーツ更新にかかったマイクロ秒数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus (UInt64) — デフォルト以外のバックグラウンドジョブによる仮想パーツ更新回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection (UInt64) — 仮想パーツ更新のリーダー選出に失敗した回数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection (UInt64) — 仮想パーツ更新のリーダー選出に成功した回数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentAttempt (UInt64) — merge または mutation の割り当てを試みた回数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo (UInt64) — merge または mutation の割り当てを試みたものの、マージ対象がなく失敗した回数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithConflict (UInt64) — merge または mutation の割り当てを試みたものの、Keeper での競合により失敗した回数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentSuccessful (UInt64) — merge または mutation の割り当てに成功した回数
  • ProfileEvent_SharedMergeTreeMergePartsMovedToOudated (UInt64) — outdated ディレクトリに移動されたパーツ数
  • ProfileEvent_SharedMergeTreeMergePartsMovedToCondemned (UInt64) — 廃棄対象ディレクトリに移動されたパーツ数
  • ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationRequest (UInt64) — outdated パーツの確認に使用された ZooKeeper リクエスト数
  • ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationInvocations (UInt64) — outdated パーツの確認処理が呼び出された回数
  • ProfileEvent_SharedMergeTreeOutdatedPartsHTTPRequest (UInt64) — outdated パーツの確認のために送信された HTTP リクエスト数
  • ProfileEvent_SharedMergeTreeOutdatedPartsHTTPResponse (UInt64) — outdated パーツの確認のために送信された HTTP レスポンス数
  • ProfileEvent_SharedMergeTreeCondemnedPartsKillRequest (UInt64) — 廃棄対象パーツの削除に使用された ZooKeeper リクエスト数
  • ProfileEvent_SharedMergeTreeCondemnedPartsLockConflict (UInt64) — 競合によりロック取得に失敗した回数
  • ProfileEvent_SharedMergeTreeCondemnedPartsRemoved (UInt64) — 削除された廃棄対象パーツ数
  • ProfileEvent_SharedMergeTreePartsKillerRuns (UInt64) — パーツキラーが実行された回数
  • ProfileEvent_SharedMergeTreePartsKillerMicroseconds (UInt64) — パーツキラーのメインスレッドにかかった時間
  • ProfileEvent_SharedMergeTreePartsKillerParts (UInt64) — キラーによってスケジュールされたパーツ数
  • ProfileEvent_SharedMergeTreePartsKillerPartsMicroseconds (UInt64) — パーツの削除にかかった時間 (複数スレッドで実行)
  • ProfileEvent_SharedMergeTreeMergeSelectingTaskMicroseconds (UInt64) — SMT における merge 選択タスクのマイクロ秒数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdateTaskRuns (UInt64) — updateReplicaSetTask の実行回数
  • ProfileEvent_SharedMergeTreeOptimizeAsync (UInt64) — 非同期 OPTIMIZE クエリの実行回数
  • ProfileEvent_SharedMergeTreeOptimizeSync (UInt64) — 同期 OPTIMIZE クエリの実行回数
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJob (UInt64) — scheduleDataProcessingJob が呼び出された回数
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJobNothingToScheduled (UInt64) — scheduleDataProcessingJob が呼び出されたものの、処理対象がなかった回数
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJobMicroseconds (UInt64) — scheduleDataProcessingJob の実行時間
  • ProfileEvent_SharedMergeTreeHandleBlockingParts (UInt64) — scheduleDataProcessingJob で処理するブロッキングパーツ数
  • ProfileEvent_SharedMergeTreeHandleBlockingPartsMicroseconds (UInt64) — scheduleDataProcessingJob でブロッキングパーツを処理する時間
  • ProfileEvent_SharedMergeTreeHandleFetchPartsMicroseconds (UInt64) — scheduleDataProcessingJob で取得したパーツを処理する時間
  • ProfileEvent_SharedMergeTreeHandleOutdatedParts (UInt64) — scheduleDataProcessingJob で処理する古いパーツ数
  • ProfileEvent_SharedMergeTreeHandleOutdatedPartsMicroseconds (UInt64) — scheduleDataProcessingJob で古いパーツを処理する時間
  • ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchMicroseconds (UInt64) — selectPartsForRendezvousFetch にかかる時間
  • ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchParts (UInt64) — selectPartsForRendezvousFetch で選択されたパーツ数
  • ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchMicroseconds (UInt64) — selectPartsForCoordinatedFetch にかかる時間
  • ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchParts (UInt64) — selectPartsForCoordinatedFetch で選択されたパーツ数
  • ProfileEvent_SharedMergeTreeSelectPartsForFullFetchMicroseconds (UInt64) — selectPartsForFullFetch にかかる時間
  • ProfileEvent_SharedMergeTreeSelectPartsForFullFetchParts (UInt64) — selectPartsForFullFetch で選択されたパーツ数
  • ProfileEvent_SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds (UInt64) — scheduleDataProcessingJob における tryUpdateDiskMetadataCacheForPart の実行時間
  • ProfileEvent_SharedMergeTreeLoadChecksumAndIndexesMicroseconds (UInt64) — SharedMergeTree でのみ実行される loadColumnsChecksumsIndexes の時間
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanRequest (UInt64) — SnapshotCleanerThread がパーツのクリーンアップを決定した回数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerParts (UInt64) — SnapshotCleanerThread がパーツのクリーンアップを試みた時間
  • ProfileEvent_SharedMergeTreeSnapshotPartsRemoved (UInt64) — SnapshotCleanerThread がパーツのクリーンアップに成功した回数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerRuns (UInt64) — SnapshotCleanerThread の実行回数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerMicroseconds (UInt64) — SnapshotCleanerThread の実行時間
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerPartsMicroseconds (UInt64) — SnapshotCleanerThread がパーツのクリーンアップに要した時間
  • ProfileEvent_SharedMergeTreeDataPartsFetchAttempt (UInt64) — データパーツの取得を試行した回数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromPeer (UInt64) — ピアからデータパーツを取得した回数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromPeerMicroseconds (UInt64) — ピアからのデータパーツ取得にかかったマイクロ秒数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromS3 (UInt64) — S3 からデータパーツを取得した回数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeper (UInt64) — ZooKeeper からレプリカセットを更新した回数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperRequests (UInt64) — レプリカセットの更新のために実行した ZooKeeper リクエストの総数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperMicroseconds (UInt64) — レプリカセットの更新に費やした時間
  • ProfileEvent_KeeperLogsEntryReadFromLatestCache (UInt64) — 最新のログキャッシュから読み取られた Keeper 内のログエントリ数
  • ProfileEvent_KeeperLogsEntryReadFromCommitCache (UInt64) — コミットログキャッシュから読み取られた Keeper 内のログエントリ数
  • ProfileEvent_KeeperLogsEntryReadFromFile (UInt64) — changelog file から直接読み取られた Keeper 内のログエントリ数
  • ProfileEvent_KeeperLogsPrefetchedEntries (UInt64) — changelog file から prefetch された Keeper 内のログエントリ数
  • ProfileEvent_KeeperChangelogWrittenBytes (UInt64) — Keeper の changelog に書き込まれたバイト数
  • ProfileEvent_KeeperChangelogFileSyncMicroseconds (UInt64) — Keeper の changelog に対する fsync に費やした時間 (非圧縮ログのみ)
  • ProfileEvent_KeeperSnapshotWrittenBytes (UInt64) — Keeper の snapshot file に書き込まれたバイト数
  • ProfileEvent_KeeperSnapshotFileSyncMicroseconds (UInt64) — Keeper の snapshot file に対する fsync に費やした時間
  • ProfileEvent_StorageConnectionsCreated (UInt64) — storage 向けに作成された接続数
  • ProfileEvent_StorageConnectionsReused (UInt64) — storage 向けに再利用された接続数
  • ProfileEvent_StorageConnectionsReset (UInt64) — storage 向けにリセットされた接続数
  • ProfileEvent_StorageConnectionsPreserved (UInt64) — storage 向けに維持された接続数
  • ProfileEvent_StorageConnectionsExpired (UInt64) — storage 向けに期限切れとなった接続数
  • ProfileEvent_StorageConnectionsErrors (UInt64) — storage 向け接続の作成に失敗した回数
  • ProfileEvent_StorageConnectionsElapsedMicroseconds (UInt64) — storage 向け接続の作成に費やした合計時間
  • ProfileEvent_DiskConnectionsCreated (UInt64) — ディスク向けに作成された接続数
  • ProfileEvent_DiskConnectionsReused (UInt64) — ディスク向けに再利用された接続数
  • ProfileEvent_DiskConnectionsReset (UInt64) — ディスク向けにリセットされた接続数
  • ProfileEvent_DiskConnectionsPreserved (UInt64) — ディスク向けに維持された接続数
  • ProfileEvent_DiskConnectionsExpired (UInt64) — ディスク向けに期限切れとなった接続数
  • ProfileEvent_DiskConnectionsErrors (UInt64) — ディスク向け接続の作成に失敗した回数
  • ProfileEvent_DiskConnectionsElapsedMicroseconds (UInt64) — ディスク向け接続の作成に費やした合計時間
  • ProfileEvent_HTTPConnectionsCreated (UInt64) — 作成されたクライアント HTTP 接続数
  • ProfileEvent_HTTPConnectionsReused (UInt64) — 再利用されたクライアントHTTP接続の数
  • ProfileEvent_HTTPConnectionsReset (UInt64) — リセットされたクライアントHTTP接続の数
  • ProfileEvent_HTTPConnectionsPreserved (UInt64) — 維持されたクライアントHTTP接続の数
  • ProfileEvent_HTTPConnectionsExpired (UInt64) — 期限切れになったクライアントHTTP接続の数
  • ProfileEvent_HTTPConnectionsErrors (UInt64) — クライアントHTTP接続の作成に失敗した回数
  • ProfileEvent_HTTPConnectionsElapsedMicroseconds (UInt64) — クライアントHTTP接続の作成に費やした合計時間
  • ProfileEvent_HTTPServerConnectionsCreated (UInt64) — 作成されたサーバーHTTP接続の数
  • ProfileEvent_HTTPServerConnectionsReused (UInt64) — 再利用されたサーバーHTTP接続の数
  • ProfileEvent_HTTPServerConnectionsPreserved (UInt64) — 維持されたサーバーHTTP接続の数。接続の Keep alive が正常に維持された回数
  • ProfileEvent_HTTPServerConnectionsExpired (UInt64) — 期限切れになったサーバーHTTP接続の数。
  • ProfileEvent_HTTPServerConnectionsClosed (UInt64) — クローズされたサーバーHTTP接続の数。Keep alive がネゴシエートされなかった回数
  • ProfileEvent_HTTPServerConnectionsReset (UInt64) — リセットされたサーバーHTTP接続の数。サーバーが接続を閉じた回数
  • ProfileEvent_AddressesDiscovered (UInt64) — HTTP接続の DNS resolve results における新しいアドレスの合計数
  • ProfileEvent_AddressesExpired (UInt64) — HTTP接続の DNS resolve results に含まれなくなったアドレスの合計数
  • ProfileEvent_AddressesMarkedAsFailed (UInt64) — HTTP接続で接続エラーにより障害ありとしてマークされたアドレスの合計数
  • ProfileEvent_ReadWriteBufferFromHTTPRequestsSent (UInt64) — ReadWriteBufferFromHTTP によって送信された HTTPリクエストの数
  • ProfileEvent_ReadWriteBufferFromHTTPBytes (UInt64) — ReadWriteBufferFromHTTP によって送受信された payload の総バイト数。HTTP headers は含まれません。
  • ProfileEvent_WriteBufferFromHTTPRequestsSent (UInt64) — WriteBufferFromHTTP によって送信された HTTPリクエストの数
  • ProfileEvent_WriteBufferFromHTTPBytes (UInt64) — WriteBufferFromHTTP によって送受信された payload の総バイト数。HTTP headers は含まれません。
  • ProfileEvent_ConcurrencyControlSlotsGranted (UInt64) — 1クエリあたり1スレッドの保証に基づいて、また設定 ‘use_concurrency_control’ = 0 のクエリに対して付与された CPUスロットの数
  • ProfileEvent_ConcurrencyControlSlotsDelayed (UInt64) — 最初は付与されず、空き CPUスロットを待つ必要があった CPUスロットの数
  • ProfileEvent_ConcurrencyControlSlotsAcquired (UInt64) — 取得された CPUスロットの合計数
  • ProfileEvent_ConcurrencyControlSlotsAcquiredNonCompeting (UInt64) — 競合なしで取得された CPUスロットの合計数
  • ProfileEvent_ConcurrencyControlQueriesDelayed (UInt64) — スロット数を増やすために待機が必要だった CPUスロットの割り当て (クエリ) の合計数
  • ProfileEvent_ConcurrencyControlWaitMicroseconds (UInt64) — クエリが CPUスロットに対するリソース要求で待機していた合計時間。
  • ProfileEvent_ConcurrencyControlPreemptedMicroseconds (UInt64) — CPUスロットのプリエンプションによりクエリが待機した合計時間
  • ProfileEvent_ConcurrencyControlPreemptions (UInt64) — CPUプリエンプションの総回数
  • ProfileEvent_ConcurrencyControlUpscales (UInt64) — CPUのスケールアップイベントの総数
  • ProfileEvent_ConcurrencyControlDownscales (UInt64) — CPUのスケールダウンイベントの総数
  • ProfileEvent_ConcurrentQuerySlotsAcquired (UInt64) — 取得されたクエリスロットの総数
  • ProfileEvent_ConcurrentQueryWaitMicroseconds (UInt64) — クエリがクエリスロットの取得を待機した合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateCount (UInt64) — マージコーディネーターの更新総数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateMicroseconds (UInt64) — マージコーディネーター状態の更新に費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds (UInt64) — マージコーディネーター内で最新のメタデータを取得するのに費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorFilterMicroseconds (UInt64) — マージコーディネーター内で準備済みのマージをフィルタリングするのに費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds (UInt64) — マージコーディネーター内でマージセレクターを使ってマージを選択するのに費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareCount (UInt64) — マージコーディネーター状態ロックの共有取得総数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount (UInt64) — マージコーディネーター状態ロックの排他取得総数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds (UInt64) — マージコーディネーター状態のミューテックスを共有ロックするのに費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds (UInt64) — マージコーディネーター状態のミューテックスを排他的にロックするのに費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeWorkerUpdateCount (UInt64) — マージワーカーの更新総数
  • ProfileEvent_CoordinatedMergesMergeWorkerUpdateMicroseconds (UInt64) — ワーカー上で割り当てられたマージのローカル状態の更新に費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeAssignmentRequest (UInt64) — マージ割り当てリクエストの総数
  • ProfileEvent_CoordinatedMergesMergeAssignmentResponse (UInt64) — マージ割り当てレスポンスの総数
  • ProfileEvent_CoordinatedMergesMergeAssignmentRequestMicroseconds (UInt64) — マージ割り当てClientで費やした合計時間
  • ProfileEvent_CoordinatedMergesMergeAssignmentResponseMicroseconds (UInt64) — マージ割り当てハンドラーで費やした合計時間
  • ProfileEvent_SharedDatabaseCatalogFailedToApplyState (UInt64) — SharedDatabaseCatalog で新しい状態の適用に失敗した回数
  • ProfileEvent_SharedDatabaseCatalogStateApplicationMicroseconds (UInt64) — SharedDatabaseCatalog で新しい状態の適用に費やした合計時間
  • ProfileEvent_MemoryWorkerRun (UInt64) — MemoryWorker がバックグラウンドで実行した回数
  • ProfileEvent_MemoryWorkerRunElapsedMicroseconds (UInt64) — MemoryWorker がバックグラウンド処理に費やした合計時間
  • ProfileEvent_ParquetFetchWaitTimeMicroseconds (UInt64) — デコードスレッド (プリフェッチスレッドではない) による Parquet ファイルの読み取りの待機時間
  • ProfileEvent_WasmSerializationMicroseconds (UInt64) — WebAssembly コードの実行に費やされた時間
  • ProfileEvent_WasmDeserializationMicroseconds (UInt64) — WebAssembly コードの実行に費やされた時間
  • ProfileEvent_WasmGuestExecuteMicroseconds (UInt64) — WebAssembly コードの実行に費やされた時間
  • ProfileEvent_WasmTotalExecuteMicroseconds (UInt64) — WebAssembly コードの実行に費やされた時間
  • ProfileEvent_WasmModuleInstatiate (UInt64) — 作成された WebAssembly コンパートメントの数
  • ProfileEvent_WasmMemoryAllocated (UInt64) — WebAssembly コンパートメントに割り当てられたメモリの総量
  • ProfileEvent_ParquetReadRowGroups (UInt64) — Parquet データから読み取られた行グループの総数
  • ProfileEvent_ParquetPrunedRowGroups (UInt64) — Parquet データから枝刈りされた行グループの総数
  • ProfileEvent_ParquetDecodingTasks (UInt64) — Parquet リーダーによって発行されたタスク数
  • ProfileEvent_ParquetDecodingTaskBatches (UInt64) — Parquet リーダーによってスレッドプールに送信されたタスクグループの数
  • ProfileEvent_ParquetPrefetcherReadRandomRead (UInt64) — DB::Parquet::Prefetcher による ReadMode::RandomRead での読み取り総数
  • ProfileEvent_ParquetPrefetcherReadSeekAndRead (UInt64) — DB::Parquet::Prefetcher による ReadMode::SeekAndRead での読み取り総数
  • ProfileEvent_ParquetPrefetcherReadEntireFile (UInt64) — DB::Parquet::Prefetcher による ReadMode::EntireFileIsInMemory での読み取り総数
  • ProfileEvent_ParquetRowsFilterExpression (UInt64) — filter を通過した行の総数
  • ProfileEvent_ParquetColumnsFilterExpression (UInt64) — filter を通過したカラムの総数
  • ProfileEvent_FilterTransformPassedRows (UInt64) — クエリ内で filter を通過した行数
  • ProfileEvent_FilterTransformPassedBytes (UInt64) — クエリ内で filter を通過したバイト数
  • ProfileEvent_QueryPreempted (UInt64) — ‘priority’ 設定によりタスクが一時停止され、待機状態になった回数
  • ProfileEvent_IndexBinarySearchAlgorithm (UInt64) — 索引マークに対して二分探索アルゴリズムが使用された回数
  • ProfileEvent_IndexGenericExclusionSearchAlgorithm (UInt64) — 索引マークに対して汎用排除検索アルゴリズムが使用された回数
  • ProfileEvent_ParallelReplicasQueryCount (UInt64) — クエリ実行中に並列レプリカを使用して実行された (サブ) クエリ数
  • ProfileEvent_DistributedConnectionReconnectCount (UInt64) — 分散クエリ実行中に他のサーバーへの再接続が行われた回数。これは、接続プールから古い接続が取得された場合に発生することがあります
  • ProfileEvent_DistributedConnectionConnectCount (UInt64) — 分散クエリ実行中に他のサーバーへの接続が行われた回数。これは、プール内の既存の接続を使用せず、新しい接続が確立された場合に発生します。
  • ProfileEvent_RefreshableViewRefreshSuccess (UInt64) — リフレッシュ可能なマテリアライズドビューがリフレッシュされた回数
  • ProfileEvent_RefreshableViewRefreshFailed (UInt64) — リフレッシュ可能なマテリアライズドビューの refresh が失敗した回数
  • ProfileEvent_RefreshableViewSyncReplicaSuccess (UInt64) — refreshable materialized view からの SELECT で暗黙的な SYNC REPLICA が実行された回数
  • ProfileEvent_RefreshableViewSyncReplicaRetry (UInt64) — refreshable materialized view からの SELECT が失敗し、暗黙的な SYNC REPLICA の再試行が行われた回数
  • ProfileEvent_RefreshableViewLockTableRetry (UInt64) — 古い table が drop されたため、refreshable materialized view からの SELECT で新しい table への切り替えが必要になった回数
  • ProfileEvent_AsyncLoggingConsoleTotalMessages (UInt64) — コンソールログ用の非同期 queue に送信されたメッセージ数 (受理・破棄の両方を含む)
  • ProfileEvent_AsyncLoggingFileLogTotalMessages (UInt64) — ファイルログ用の非同期 queue に送信されたメッセージ数 (受理・破棄の両方を含む)
  • ProfileEvent_AsyncLoggingErrorFileLogTotalMessages (UInt64) — エラーファイルログ用の非同期 queue に送信されたメッセージ数 (受理・破棄の両方を含む)
  • ProfileEvent_AsyncLoggingSyslogTotalMessages (UInt64) — syslog 用の非同期 queue に送信されたメッセージ数 (受理・破棄の両方を含む)
  • ProfileEvent_AsyncLoggingTextLogTotalMessages (UInt64) — text_log 用の非同期 queue に送信されたメッセージ数 (受理・破棄の両方を含む)
  • ProfileEvent_AsyncLoggingConsoleDroppedMessages (UInt64) — 非同期ログ queue がいっぱいだったため、コンソールログから破棄されたメッセージ数
  • ProfileEvent_AsyncLoggingFileLogDroppedMessages (UInt64) — 非同期ログ queue がいっぱいだったため、ファイルログから破棄されたメッセージ数
  • ProfileEvent_AsyncLoggingErrorFileLogDroppedMessages (UInt64) — 非同期ログ queue がいっぱいだったため、エラーファイルログから破棄されたメッセージ数
  • ProfileEvent_AsyncLoggingSyslogDroppedMessages (UInt64) — 非同期ログ queue がいっぱいだったため、syslog から破棄されたメッセージ数
  • ProfileEvent_AsyncLoggingTextLogDroppedMessages (UInt64) — 非同期ログ queue がいっぱいだったため、text_log から破棄されたメッセージ数
  • ProfileEvent_JemallocFailedAllocationSampleTracking (UInt64) — jemalloc の割り当てサンプルの追跡に失敗した総回数
  • ProfileEvent_JemallocFailedDeallocationSampleTracking (UInt64) — jemalloc のメモリ解放サンプルの追跡に失敗した総回数
  • ProfileEvent_LoadedStatisticsMicroseconds (UInt64) — パーツから統計情報を loading するのにかかった経過時間
  • ProfileEvent_RuntimeDataflowStatisticsInputBytes (UInt64) — クエリが並列レプリカで実行された場合に、レプリカが読み取るバイト数について収集された統計
  • ProfileEvent_RuntimeDataflowStatisticsOutputBytes (UInt64) — クエリが並列レプリカで実行された場合に、レプリカがイニシエーターへ送信するバイト数について収集された統計
  • ProfileEvent_S3CachedCredentialsProvidersReused (UInt64) — cache から再利用された credentials provider の総数
  • ProfileEvent_S3CachedCredentialsProvidersAdded (UInt64) — cache に新たに追加された credentials provider の総数
  • ProfileEvent_RuntimeFiltersCreated (UInt64) — クエリ内で作成された個別の JOIN Runtime Filters の数
  • ProfileEvent_RuntimeFilterBlocksProcessed (UInt64) — JOIN Runtime Filters によって処理されたブロック数
  • ProfileEvent_RuntimeFilterBlocksSkipped (UInt64) — フィルタリング率が低いため filter が動的に無効化され、処理されずに JOIN Runtime Filters によってスキップされたブロック数
  • ProfileEvent_RuntimeFilterRowsChecked (UInt64) — JOIN Runtime Filters によってチェックされた行数
  • ProfileEvent_RuntimeFilterRowsPassed (UInt64) — JOIN Runtime Filters を通過した (フィルタで除外されなかった) 行数
  • ProfileEvent_RuntimeFilterRowsSkipped (UInt64) — JOIN Runtime Filters によってスキップされたブロック内の行数
  • ProfileEvent_JoinBuildPostProcessingMicroseconds (UInt64) — JOIN の右側を構築した後の後処理ステップの経過時間。
  • ProfileEvent_AIInputTokens (UInt64) — クエリ内のすべての AI 関数呼び出しで消費されたプロンプトトークンの合計。
  • ProfileEvent_AIOutputTokens (UInt64) — クエリ内のすべての AI 関数呼び出しで消費された補完トークンの合計。
  • ProfileEvent_AIAPICalls (UInt64) — AI プロバイダーに送出された HTTP リクエスト数。
  • ProfileEvent_AIRowsProcessed (UInt64) — AI の結果を受け取った行数。
  • ProfileEvent_AIRowsSkipped (UInt64) — クォータまたはエラーによりデフォルト値を受け取った行数。

SELECT * FROM system.query_metric_log LIMIT 1 FORMAT Vertical;
Row 1:
──────
query_id:                                                        97c8ba04-b6d4-4bd7-b13e-6201c5c6e49d
hostname:                                                        clickhouse.eu-central1.internal
event_date:                                                      2020-09-05
event_time:                                                      2020-09-05 16:22:33
event_time_microseconds:                                         2020-09-05 16:22:33.196807
memory_usage:                                                    313434219
peak_memory_usage:                                               598951986
ProfileEvent_Query:                                              0
ProfileEvent_SelectQuery:                                        0
ProfileEvent_InsertQuery:                                        0
ProfileEvent_FailedQuery:                                        0
ProfileEvent_FailedSelectQuery:                                  0
...

関連項目

最終更新日 2026年6月11日