From c0487a9dd2a8e7b2628f58a333ec28cb72652dc6 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Fri, 15 Mar 2024 19:14:19 +0800 Subject: [PATCH] [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 ede3ef9ab4a..78810c11b53 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