This is an automated email from the ASF dual-hosted git repository.
luzhijing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 9ffa48cf390 [doc](udf) fix doc indent (#667)
9ffa48cf390 is described below
commit 9ffa48cf390d3e0aae332294bb55c451c8c592ab
Author: Mingyu Chen <[email protected]>
AuthorDate: Mon May 20 16:33:48 2024 +0800
[doc](udf) fix doc indent (#667)
---
docs/query/udf/java-user-defined-function.md | 2 +-
.../current/query/udf/java-user-defined-function.md | 2 +-
.../version-2.0/query/udf/java-user-defined-function.md | 2 +-
.../version-2.1/query/udf/java-user-defined-function.md | 2 +-
versioned_docs/version-2.0/query/udf/java-user-defined-function.md | 2 +-
versioned_docs/version-2.1/query/udf/java-user-defined-function.md | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/query/udf/java-user-defined-function.md
b/docs/query/udf/java-user-defined-function.md
index 6ffb3844638..f1faffcd948 100644
--- a/docs/query/udf/java-user-defined-function.md
+++ b/docs/query/udf/java-user-defined-function.md
@@ -369,7 +369,7 @@ public class UDTFStringTest {
## Best Practices
-## Loading static variables
+### Loading static variables
Currently, in Doris, executing a UDF function, e.g., `select udf(col) from
table`, will load the udf.jar package for each concurrent instance, and unload
the udf.jar package when the instance ends. If the udf.jar file needs to load a
file of several hundred MBs, the memory usage will increase sharply due to
concurrency, potentially leading to OOM (Out of Memory).
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query/udf/java-user-defined-function.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query/udf/java-user-defined-function.md
index 7bcc682c1e1..63bc8f1756e 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query/udf/java-user-defined-function.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query/udf/java-user-defined-function.md
@@ -370,7 +370,7 @@ public class UDTFStringTest {
## 最佳实践
-## static 变量加载
+### static 变量加载
当前在 Doris 中,执行一个 UDF 函数,eg: `select udf(col) from table`,
每一个并发instance会加载一次udf.jar包,在该instance结束时卸载掉udf.jar包。
所以当 udf.jar 文件中需要加载一个几百 MB的文件时,会因为并发的原因,使得占据的内存急剧增大,容易OOM。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/query/udf/java-user-defined-function.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/query/udf/java-user-defined-function.md
index 7bcc682c1e1..63bc8f1756e 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/query/udf/java-user-defined-function.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/query/udf/java-user-defined-function.md
@@ -370,7 +370,7 @@ public class UDTFStringTest {
## 最佳实践
-## static 变量加载
+### static 变量加载
当前在 Doris 中,执行一个 UDF 函数,eg: `select udf(col) from table`,
每一个并发instance会加载一次udf.jar包,在该instance结束时卸载掉udf.jar包。
所以当 udf.jar 文件中需要加载一个几百 MB的文件时,会因为并发的原因,使得占据的内存急剧增大,容易OOM。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query/udf/java-user-defined-function.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query/udf/java-user-defined-function.md
index 7bcc682c1e1..63bc8f1756e 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query/udf/java-user-defined-function.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query/udf/java-user-defined-function.md
@@ -370,7 +370,7 @@ public class UDTFStringTest {
## 最佳实践
-## static 变量加载
+### static 变量加载
当前在 Doris 中,执行一个 UDF 函数,eg: `select udf(col) from table`,
每一个并发instance会加载一次udf.jar包,在该instance结束时卸载掉udf.jar包。
所以当 udf.jar 文件中需要加载一个几百 MB的文件时,会因为并发的原因,使得占据的内存急剧增大,容易OOM。
diff --git a/versioned_docs/version-2.0/query/udf/java-user-defined-function.md
b/versioned_docs/version-2.0/query/udf/java-user-defined-function.md
index 91aabc7887f..2a4cd159678 100644
--- a/versioned_docs/version-2.0/query/udf/java-user-defined-function.md
+++ b/versioned_docs/version-2.0/query/udf/java-user-defined-function.md
@@ -369,7 +369,7 @@ public class UDTFStringTest {
## Best Practices
-## Loading static variables
+### Loading static variables
Currently, in Doris, executing a UDF function, e.g., `select udf(col) from
table`, will load the udf.jar package for each concurrent instance, and unload
the udf.jar package when the instance ends. If the udf.jar file needs to load a
file of several hundred MBs, the memory usage will increase sharply due to
concurrency, potentially leading to OOM (Out of Memory).
diff --git a/versioned_docs/version-2.1/query/udf/java-user-defined-function.md
b/versioned_docs/version-2.1/query/udf/java-user-defined-function.md
index 8c6104121c1..608477e3ed3 100644
--- a/versioned_docs/version-2.1/query/udf/java-user-defined-function.md
+++ b/versioned_docs/version-2.1/query/udf/java-user-defined-function.md
@@ -369,7 +369,7 @@ public class UDTFStringTest {
## Best Practices
-## Loading static variables
+### Loading static variables
Currently, in Doris, executing a UDF function, e.g., `select udf(col) from
table`, will load the udf.jar package for each concurrent instance, and unload
the udf.jar package when the instance ends. If the udf.jar file needs to load a
file of several hundred MBs, the memory usage will increase sharply due to
concurrency, potentially leading to OOM (Out of Memory).
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]