This is an automated email from the ASF dual-hosted git repository.
fanjia pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new c0487a9dd2 [Docs] update sql udf document (#6518)
c0487a9dd2 is described below
commit c0487a9dd2a8e7b2628f58a333ec28cb72652dc6
Author: Jarvis <[email protected]>
AuthorDate: Fri Mar 15 19:14:19 2024 +0800
[Docs] update sql udf document (#6518)
---
docs/en/transform-v2/sql-udf.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/en/transform-v2/sql-udf.md b/docs/en/transform-v2/sql-udf.md
index ede3ef9ab4..78810c11b5 100644
--- a/docs/en/transform-v2/sql-udf.md
+++ b/docs/en/transform-v2/sql-udf.md
@@ -91,7 +91,8 @@ public class ExampleUDF implements ZetaUDF {
}
```
-Package the UDF project and copy the jar to the path: ${SEATUNNEL_HOME}/lib
+Package the UDF project and copy the jar to the path: ${SEATUNNEL_HOME}/lib.
And if your UDF use third party library, you also need put it to
${SEATUNNEL_HOME}/lib.
+If you use cluster mode, you need put the lib to all your node's
${SEATUNNEL_HOME}/lib folder and re-start the cluster.
## Example