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 a70e4daf7ec [Enhancement](audit log) Set print audit log sesssion 
variable default value to false (#38865)
a70e4daf7ec is described below

commit a70e4daf7ecf51e39d21da07e41fecb73d40ff1e
Author: abmdocrt <[email protected]>
AuthorDate: Mon Aug 5 18:49:29 2024 +0800

    [Enhancement](audit log) Set print audit log sesssion variable default 
value to false (#38865)
    
    ## Proposed changes
    
    In #38419, we introduced a new variable `enable_prepared_stmt_audit_log`
    to make group commit faster. Here we set this session variable default
    value to false.
    
    <!--Describe your changes.-->
---
 fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java 
b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
index 94b33b3fbb9..3cb44d5b5ee 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
@@ -1685,7 +1685,7 @@ public class SessionVariable implements Serializable, 
Writable {
     public String groupCommit = "off_mode";
 
     @VariableMgr.VarAttr(name = ENABLE_PREPARED_STMT_AUDIT_LOG, needForward = 
true)
-    public boolean enablePreparedStmtAuditLog = true;
+    public boolean enablePreparedStmtAuditLog = false;
 
     @VariableMgr.VarAttr(name = INVERTED_INDEX_CONJUNCTION_OPT_THRESHOLD,
             description = 
{"在match_all中求取多个倒排索引的交集时,如果最大的倒排索引中的总数是最小倒排索引中的总数的整数倍,"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to