This is an automated email from the ASF dual-hosted git repository. gavinchou 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 e3a0e41cb63 [chore](config) Disable outfile to local disk by default (#43282) e3a0e41cb63 is described below commit e3a0e41cb6343bf0fb28ed34bf7770a6482a3809 Author: Siyang Tang <82279870+tangsiyang2...@users.noreply.github.com> AuthorDate: Tue Nov 12 10:17:29 2024 +0800 [chore](config) Disable outfile to local disk by default (#43282) --- fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java index 93b2dfce26c..ccc93ed799a 100644 --- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java +++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java @@ -1513,9 +1513,10 @@ public class Config extends ConfigBase { /** * Whether to allow the outfile function to export the results to the local disk. + * If set to true, there's risk to run out of FE disk capacity. */ @ConfField - public static boolean enable_outfile_to_local = true; + public static boolean enable_outfile_to_local = false; /** * Used to set the initial flow window size of the GRPC client channel, and also used to max message size. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org