system.query_log

Contains information about executed queries, for example, start time, duration of processing, error messages.

Note

This table does not contain the ingested data for INSERT queries.

You can change settings of queries logging in the query_log section of the server configuration.

You can disable queries logging by setting log_queries = 0. We do not recommend to turn off logging because information in this table is important for solving issues.

The flushing period of data is set in flush_interval_milliseconds parameter of the query_log server settings section. To force flushing, use the SYSTEM FLUSH LOGS query.

ClickHouse does not delete data from the table automatically. See Introduction for more details.

The system.query_log table registers two kinds of queries:

  1. Initial queries that were run directly by the client.
  2. Child queries that were initiated by other queries (for distributed query execution). For these types of queries, information about the parent queries is shown in the initial_* columns.

Each query creates one or two rows in the query_log table, depending on the status (see the type column) of the query:

  1. If the query execution was successful, two rows with the QueryStart and QueryFinish types are created.
  2. If an error occurred during query processing, two events with the QueryStart and ExceptionWhileProcessing types are created.
  3. If an error occurred before launching the query, a single event with the ExceptionBeforeStart type is created.

You can use the log_queries_probability setting to reduce the number of queries, registered in the query_log table.

Columns:

  • type (Enum8) — Type of an event that occurred when executing the query. Values:
    • 'QueryStart' = 1 — Successful start of query execution.
    • 'QueryFinish' = 2 — Successful end of query execution.
    • 'ExceptionBeforeStart' = 3 — Exception before the start of query execution.
    • 'ExceptionWhileProcessing' = 4 — Exception during the query execution.
  • event_date (Date) — Query starting date.
  • event_time (DateTime) — Query starting time.
  • event_time_microseconds (DateTime) — Query starting time with microseconds precision.
  • query_start_time (DateTime) — Start time of query execution.
  • query_start_time_microseconds (DateTime64) — Start time of query execution with microsecond precision.
  • query_duration_ms (UInt64) — Duration of query execution in milliseconds.
  • read_rows (UInt64) — Total number of rows read from all tables and table functions participated in query. It includes usual subqueries, subqueries for IN and JOIN. For distributed queries read_rows includes the total number of rows read at all replicas. Each replica sends it’s read_rows value, and the server-initiator of the query summarizes all received and local values. The cache volumes do not affect this value.
  • read_bytes (UInt64) — Total number of bytes read from all tables and table functions participated in query. It includes usual subqueries, subqueries for IN and JOIN. For distributed queries read_bytes includes the total number of rows read at all replicas. Each replica sends it’s read_bytes value, and the server-initiator of the query summarizes all received and local values. The cache volumes do not affect this value.
  • written_rows (UInt64) — For INSERT queries, the number of written rows. For other queries, the column value is 0.
  • written_bytes (UInt64) — For INSERT queries, the number of written bytes. For other queries, the column value is 0.
  • result_rows (UInt64) — Number of rows in a result of the SELECT query, or a number of rows in the INSERT query.
  • result_bytes (UInt64) — RAM volume in bytes used to store a query result.
  • memory_usage (UInt64) — Memory consumption by the query.
  • current_database (String) — Name of the current database.
  • query (String) — Query string.
  • normalized_query_hash (UInt64) — Identical hash value without the values of literals for similar queries.
  • query_kind (LowCardinality(String)) — Type of the query.
  • databases (Array(LowCardinality(String))) — Names of the databases present in the query.
  • tables (Array(LowCardinality(String))) — Names of the tables present in the query.
  • views (Array(LowCardinality(String))) — Names of the (materialized or live) views present in the query.
  • columns (Array(LowCardinality(String))) — Names of the columns present in the query.
  • projections (String) — Names of the projections used during the query execution.
  • exception_code (Int32) — Code of an exception.
  • exception (String) — Exception message.
  • stack_trace (String) — Stack trace. An empty string, if the query was completed successfully.
  • is_initial_query (UInt8) — Query type. Possible values:
    • 1 — Query was initiated by the client.
    • 0 — Query was initiated by another query as part of distributed query execution.
  • user (String) — Name of the user who initiated the current query.
  • query_id (String) — ID of the query.
  • address (IPv6) — IP address that was used to make the query.
  • port (UInt16) — The client port that was used to make the query.
  • initial_user (String) — Name of the user who ran the initial query (for distributed query execution).
  • initial_query_id (String) — ID of the initial query (for distributed query execution).
  • initial_address (IPv6) — IP address that the parent query was launched from.
  • initial_port (UInt16) — The client port that was used to make the parent query.
  • initial_query_start_time (DateTime) — Initial query starting time (for distributed query execution).
  • initial_query_start_time_microseconds (DateTime64) — Initial query starting time with microseconds precision (for distributed query execution).
  • interface (UInt8) — Interface that the query was initiated from. Possible values:
    • 1 — TCP.
    • 2 — HTTP.
  • os_user (String) — Operating system username who runs clickhouse-client.
  • client_hostname (String) — Hostname of the client machine where the clickhouse-client or another TCP client is run.
  • client_name (String) — The clickhouse-client or another TCP client name.
  • client_revision (UInt32) — Revision of the clickhouse-client or another TCP client.
  • client_version_major (UInt32) — Major version of the clickhouse-client or another TCP client.
  • client_version_minor (UInt32) — Minor version of the clickhouse-client or another TCP client.
  • client_version_patch (UInt32) — Patch component of the clickhouse-client or another TCP client version.
  • http_method (UInt8) — HTTP method that initiated the query. Possible values:
    • 0 — The query was launched from the TCP interface.
    • 1 — GET method was used.
    • 2 — POST method was used.
  • http_user_agent (String) — HTTP header UserAgent passed in the HTTP query.
  • http_referer (String) — HTTP header Referer passed in the HTTP query (contains an absolute or partial address of the page making the query).
  • forwarded_for (String) — HTTP header X-Forwarded-For passed in the HTTP query.
  • quota_key (String) — The quota key specified in the quotas setting (see keyed).
  • revision (UInt32) — ClickHouse revision.
  • ProfileEvents (Map(String, UInt64)) — ProfileEvents that measure different metrics. The description of them could be found in the table system.events
  • Settings (Map(String, String)) — Settings that were changed when the client ran the query. To enable logging changes to settings, set the log_query_settings parameter to 1.
  • log_comment (String) — Log comment. It can be set to arbitrary string no longer than max_query_size. An empty string if it is not defined.
  • thread_ids (Array(UInt64)) — Thread ids that are participating in query execution.
  • used_aggregate_functions (Array(String)) — Canonical names of aggregate functions, which were used during query execution.
  • used_aggregate_function_combinators (Array(String)) — Canonical names of aggregate functions combinators, which were used during query execution.
  • used_database_engines (Array(String)) — Canonical names of database engines, which were used during query execution.
  • used_data_type_families (Array(String)) — Canonical names of data type families, which were used during query execution.
  • used_dictionaries (Array(String)) — Canonical names of dictionaries, which were used during query execution.
  • used_formats (Array(String)) — Canonical names of formats, which were used during query execution.
  • used_functions (Array(String)) — Canonical names of functions, which were used during query execution.
  • used_storages (Array(String)) — Canonical names of storages, which were used during query execution.
  • used_table_functions (Array(String)) — Canonical names of table functions, which were used during query execution.

Example

  1. SELECT * FROM system.query_log WHERE type = 'QueryFinish' ORDER BY query_start_time DESC LIMIT 1 FORMAT Vertical;
  1. Row 1:
  2. ──────
  3. type: QueryFinish
  4. event_date: 2021-07-28
  5. event_time: 2021-07-28 13:46:56
  6. event_time_microseconds: 2021-07-28 13:46:56.719791
  7. query_start_time: 2021-07-28 13:46:56
  8. query_start_time_microseconds: 2021-07-28 13:46:56.704542
  9. query_duration_ms: 14
  10. read_rows: 8393
  11. read_bytes: 374325
  12. written_rows: 0
  13. written_bytes: 0
  14. result_rows: 4201
  15. result_bytes: 153024
  16. memory_usage: 4714038
  17. current_database: default
  18. query: SELECT DISTINCT arrayJoin(extractAll(name, '[\\w_]{2,}')) AS res FROM (SELECT name FROM system.functions UNION ALL SELECT name FROM system.table_engines UNION ALL SELECT name FROM system.formats UNION ALL SELECT name FROM system.table_functions UNION ALL SELECT name FROM system.data_type_families UNION ALL SELECT name FROM system.merge_tree_settings UNION ALL SELECT name FROM system.settings UNION ALL SELECT cluster FROM system.clusters UNION ALL SELECT macro FROM system.macros UNION ALL SELECT policy_name FROM system.storage_policies UNION ALL SELECT concat(func.name, comb.name) FROM system.functions AS func CROSS JOIN system.aggregate_function_combinators AS comb WHERE is_aggregate UNION ALL SELECT name FROM system.databases LIMIT 10000 UNION ALL SELECT DISTINCT name FROM system.tables LIMIT 10000 UNION ALL SELECT DISTINCT name FROM system.dictionaries LIMIT 10000 UNION ALL SELECT DISTINCT name FROM system.columns LIMIT 10000) WHERE notEmpty(res)
  19. normalized_query_hash: 6666026786019643712
  20. query_kind: Select
  21. databases: ['system']
  22. tables: ['system.aggregate_function_combinators','system.clusters','system.columns','system.data_type_families','system.databases','system.dictionaries','system.formats','system.functions','system.macros','system.merge_tree_settings','system.settings','system.storage_policies','system.table_engines','system.table_functions','system.tables']
  23. columns: ['system.aggregate_function_combinators.name','system.clusters.cluster','system.columns.name','system.data_type_families.name','system.databases.name','system.dictionaries.name','system.formats.name','system.functions.is_aggregate','system.functions.name','system.macros.macro','system.merge_tree_settings.name','system.settings.name','system.storage_policies.policy_name','system.table_engines.name','system.table_functions.name','system.tables.name']
  24. projections: []
  25. exception_code: 0
  26. exception:
  27. stack_trace:
  28. is_initial_query: 1
  29. user: default
  30. query_id: a3361f6e-a1fd-4d54-9f6f-f93a08bab0bf
  31. address: ::ffff:127.0.0.1
  32. port: 51006
  33. initial_user: default
  34. initial_query_id: a3361f6e-a1fd-4d54-9f6f-f93a08bab0bf
  35. initial_address: ::ffff:127.0.0.1
  36. initial_port: 51006
  37. initial_query_start_time: 2021-07-28 13:46:56
  38. initial_query_start_time_microseconds: 2021-07-28 13:46:56.704542
  39. interface: 1
  40. os_user:
  41. client_hostname:
  42. client_name: ClickHouse client
  43. client_revision: 54449
  44. client_version_major: 21
  45. client_version_minor: 8
  46. client_version_patch: 0
  47. http_method: 0
  48. http_user_agent:
  49. http_referer:
  50. forwarded_for:
  51. quota_key:
  52. revision: 54453
  53. log_comment:
  54. thread_ids: [5058,22097,22110,22094]
  55. ProfileEvents.Names: ['Query','SelectQuery','ArenaAllocChunks','ArenaAllocBytes','FunctionExecute','NetworkSendElapsedMicroseconds','SelectedRows','SelectedBytes','ContextLock','RWLockAcquiredReadLocks','RealTimeMicroseconds','UserTimeMicroseconds','SystemTimeMicroseconds','SoftPageFaults','OSCPUWaitMicroseconds','OSCPUVirtualTimeMicroseconds','OSWriteBytes','OSWriteChars']
  56. ProfileEvents.Values: [1,1,39,352256,64,360,8393,374325,412,440,34480,13108,4723,671,19,17828,8192,10240]
  57. Settings.Names: ['load_balancing','max_memory_usage']
  58. Settings.Values: ['random','10000000000']
  59. used_aggregate_functions: []
  60. used_aggregate_function_combinators: []
  61. used_database_engines: []
  62. used_data_type_families: ['UInt64','UInt8','Nullable','String','date']
  63. used_dictionaries: []
  64. used_formats: []
  65. used_functions: ['concat','notEmpty','extractAll']
  66. used_storages: []
  67. used_table_functions: []

See Also