We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f22471 commit 934523bCopy full SHA for 934523b
docs/en/guides/54-query/04-external-function.md
@@ -166,12 +166,18 @@ upstream udf_string_functions {
166
server 10.0.2.2:8080 backup;
167
}
168
169
+upstream udf_database_functions {
170
+ server 10.0.3.1:8080;
171
+ server 10.0.3.2:8080 backup;
172
+}
173
+
174
# Map function names to backend servers
175
map $http_x_databend_function $udf_backend {
176
default "udf_default";
177
gcd "udf_math_functions";
178
lcm "udf_math_functions";
179
string_* "udf_string_functions";
180
+ *_db "udf_database_functions";
181
182
183
# Server configuration
0 commit comments