This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 524bce3c073 [doc](auditlog) update description of field sql_digest
(#28340)
524bce3c073 is described below
commit 524bce3c0732d3b950cf0e72517ba6d76229c84f
Author: zhiqiang <[email protected]>
AuthorDate: Wed Dec 13 19:27:48 2023 +0800
[doc](auditlog) update description of field sql_digest (#28340)
---
docs/en/docs/ecosystem/audit-plugin.md | 4 ++--
docs/zh-CN/docs/ecosystem/audit-plugin.md | 4 ++--
pytest/deploy/start.py | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/en/docs/ecosystem/audit-plugin.md
b/docs/en/docs/ecosystem/audit-plugin.md
index a355a75e594..5c045b71781 100644
--- a/docs/en/docs/ecosystem/audit-plugin.md
+++ b/docs/en/docs/ecosystem/audit-plugin.md
@@ -100,7 +100,7 @@ create table doris_audit_db__.doris_audit_log_tbl__
frontend_ip varchar(32) comment "Frontend ip of executing this statement",
cpu_time_ms bigint comment "Total scan cpu time in millisecond of this
query",
sql_hash varchar(48) comment "Hash value for this query",
- sql_digest varchar(48) comment "Sql digest for this query",
+ sql_digest varchar(48) comment "Sql digest of this query, will be empty if
not a slow query",
peak_memory_bytes bigint comment "Peak memory bytes used on all backends
of this query",
stmt string comment "The original statement, trimed if longer than 2G"
) engine=OLAP
@@ -136,7 +136,7 @@ create table doris_audit_db__.doris_slow_log_tbl__
frontend_ip varchar(32) comment "Frontend ip of executing this statement",
cpu_time_ms bigint comment "Total scan cpu time in millisecond of this
query",
sql_hash varchar(48) comment "Hash value for this query",
- sql_digest varchar(48) comment "Sql digest for this query",
+ sql_digest varchar(48) comment "Sql digest of a slow query",
peak_memory_bytes bigint comment "Peak memory bytes used on all backends
of this query",
stmt string comment "The original statement, trimed if longer than 2G "
) engine=OLAP
diff --git a/docs/zh-CN/docs/ecosystem/audit-plugin.md
b/docs/zh-CN/docs/ecosystem/audit-plugin.md
index 7fe4549926f..f1b4d3fd9be 100644
--- a/docs/zh-CN/docs/ecosystem/audit-plugin.md
+++ b/docs/zh-CN/docs/ecosystem/audit-plugin.md
@@ -106,7 +106,7 @@ create table doris_audit_db__.doris_audit_log_tbl__
frontend_ip varchar(32) comment "Frontend ip of executing this statement",
cpu_time_ms bigint comment "Total scan cpu time in millisecond of this
query",
sql_hash varchar(48) comment "Hash value for this query",
- sql_digest varchar(48) comment "Sql digest for this query",
+ sql_digest varchar(48) comment "Sql digest of this query, will be empty if
not a slow query",
peak_memory_bytes bigint comment "Peak memory bytes used on all backends
of this query",
stmt string comment "The original statement, trimed if longer than 2G"
) engine=OLAP
@@ -142,7 +142,7 @@ create table doris_audit_db__.doris_slow_log_tbl__
frontend_ip varchar(32) comment "Frontend ip of executing this statement",
cpu_time_ms bigint comment "Total scan cpu time in millisecond of this
query",
sql_hash varchar(48) comment "Hash value for this query",
- sql_digest varchar(48) comment "Sql digest for this query",
+ sql_digest varchar(48) comment "Sql digest of a slow query",
peak_memory_bytes bigint comment "Peak memory bytes used on all backends
of this query",
stmt string comment "The original statement, trimed if longer than 2G "
) engine=OLAP
diff --git a/pytest/deploy/start.py b/pytest/deploy/start.py
index 608d477fe9d..7c979d9d334 100644
--- a/pytest/deploy/start.py
+++ b/pytest/deploy/start.py
@@ -192,7 +192,7 @@ def add_auditload_plugin():
frontend_ip varchar(32) comment 'Frontend ip of executing this
statement', \
cpu_time_ms bigint comment 'Total scan cpu time in millisecond
of this query', \
sql_hash varchar(48) comment 'Hash value for this query', \
- sql_digest varchar(48) comment 'Sql digest for this query', \
+ sql_digest varchar(48) comment 'Sql digest of this query, will
be empty if not a slow query', \
peak_memory_bytes bigint comment 'Peak memory bytes used on all
backends of this query', \
stmt string comment 'The original statement, trimed if longer
than 2G ' \
) engine=OLAP \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]